/* ===== General Reset and Fonts ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: #f2f6fc;
  color: #222;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* ===== Header ===== */
header {
  background: linear-gradient(90deg, #3a7bd5, #00d2ff);
  color: white;
  padding: 40px 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(58, 123, 213, 0.6);
}

header h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 900;
  text-shadow: 0 0 10px #00d2ff;
}

header p.subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 12px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

header p.subtitle .highlight {
  background-color: #3a7bd5;
  color: white;
  padding: 6px 18px;
  border-radius: 25px;
  font-weight: 900;
  font-size: 1.6rem;
  box-shadow: 0 0 10px #3a7bd5;
  white-space: nowrap;
  transition: box-shadow 0.3s ease;
}

header p.subtitle .highlight:hover {
  box-shadow: 0 0 15px 5px #3a7bd5;
  cursor: default;
}

/* ===== Section Titles ===== */
.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 24px;
  color: #3a7bd5;
  text-shadow: 0 0 15px #3a7bd5;
}

/* ===== Boxed Sections with Gradient Backgrounds ===== */
section.container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
  transition: box-shadow 0.3s ease;
}

section.container:hover {
  box-shadow: 0 12px 35px rgba(255, 193, 7, 0.6);
}

.about.container {
  background: linear-gradient(135deg, #e1f5fe 0%, #81d4fa 100%);
}

.projects.container {
  background: linear-gradient(135deg, #e8f5e9 0%, #a5d6a7 100%);
}

.contact.container {
  background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%);
}

/* ===== About Section Layout ===== */
.about-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.profile-img {
  width: 360px;
  border-radius: 15px;
  border: 6px solid #3a7bd5;
  box-shadow: 0 6px 20px rgba(58, 123, 213, 0.3);
  transition: transform 0.3s ease, box-shadow 0.4s ease;
  flex-shrink: 0;
}

.profile-img:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 15px 6px #ffeb3b,
    0 0 30px 10px #fdd835;
  cursor: default;
}

.about-content .text {
  flex: 1;
  font-size: 1.1rem;
  color: #333;
  min-width: 280px;
}

.about-content ul {
  margin-top: 8px;
  margin-bottom: 12px;
  padding-left: 20px;
  list-style-type: disc;
  color: #555;
}

/* ===== Projects Section ===== */
.projects ul {
  margin-top: 12px;
  padding-left: 20px;
  list-style-type: none;
  color: #444;
}

.projects ul li::before {
  content: "✅ ";
  margin-right: 6px;
}

.projects a {
  color: #3a7bd5;
  font-weight: 700;
  text-decoration: none;
  transition: text-shadow 0.3s ease;
}

.projects a:hover {
  text-shadow:
    0 0 10px #3a7bd5,
    0 0 15px #3a7bd5;
}

/* ===== Contact Section ===== */
.contact p {
  font-size: 1.3rem;
  margin: 14px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
}

.contact-link {
  color: #3a7bd5;
  font-weight: 600;
  text-decoration: none;
  transition: text-shadow 0.3s ease;
}
.contact-link:hover {
  text-shadow: 0 0 10px #3a7bd5;
}

/* ===== Social Icons ===== */
.social-links {
  margin-top: 18px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #3a7bd5;
  color: white;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(58, 123, 213, 0.7);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.social-btn.fb {
  background: #4267b2;
}
.social-btn.insta {
  background: #c13584;
}

.social-btn:hover {
  filter: brightness(1.15);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 16px;
  background: #e9f2fb;
  color: #555;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 40px;
  border-top: 1px solid #d0e3fb;
}

/* ===== Glowing Text on Hover ===== */
p, li, a, h1, h2 {
  transition: text-shadow 0.3s ease;
}

p:hover, li:hover, a:hover, h1:hover, h2:hover {
  text-shadow:
    0 0 8px #3a7bd5,
    0 0 12px #3a7bd5,
    0 0 20px #3a7bd5;
  cursor: default;
}
