/* ========== GLOBAL ========== */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  scroll-behavior: smooth;
  background: #f5f6fa;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgb(227, 209, 248);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 0px;
  display:flex;
  justify-content:space-around;
  align-items:start;
  z-index: 10;
}

.navbar .logo {
  font-size: 22px;
  font-weight:bold;
  font-style: italic;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: #5700e3;
}

.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #2a2727;
  font-weight: 500;
}

.navbar nav a:hover {
  color: #6200ee;
}

/* ========== HERO SECTION ========== */
.hero {
  height: 100vh;
  background: linear-gradient(to bottom right, #6200ee, #8e2de2);
  color: white;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content h1 span {
  color: #ffe066;
}

.hero-content p {
  width: 60%;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cta-btn {
  background: #ffe066;
  padding: 12px 25px;
  border-radius: 8px;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.cta-btn:hover {
  background: #ffdd33;
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: 100px 10%;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
}

/* ========== RESUME BUILDER SECTION ========== */
.resume-section {
  text-align: center;
  padding: 80px 10%;
  background: linear-gradient(to bottom right, #6200ee, #8e2de2);
}

.resume-section h2 {
  font-size: 32px;
}

.resume-section p {
  font-size: 18px;
  margin-bottom: 40px;
}

.resume-btn {
  background: #f7ea5f;
  color: rgb(0, 0, 0);
}

.resume-btn:hover {
  background: #cbba00;
}






/* ========== ATS CHECKER SECTION ========== */
.ats-section {
  text-align: center;
  padding: 80px 10%;
  background: linear-gradient(to bottom right, #8e2de2, #6200ee);
}

.ats-section h2 {
  font-size: 32px;
}

.ats-section p {
  font-size: 18px;
  margin-bottom: 40px;
}

.ats-btn {
  background: #f7ea5f;
  color: black;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s ease;
}

.ats-btn:hover {
  background: #cbba00;
}


/* ========== CONTACT SECTION ========== */
.contact {
  text-align: center;
  padding: 100px 10%;
}

.contact-box {
  background: rgb(255, 255, 255);
  padding: 25px;
  max-width: 500px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact p {
  font-size: 16px;
  font-style: italic;
  margin: 5px 10;
}

/* ========== FOOTER ========== */
.footer {
  text-align: center;
  padding: 20px;
  background: #eee;
  margin-top: 40px;
  font-size: 16px;
}
/* Initial hidden state */
/* Scroll Animation with 3D effect */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
    transform-origin: bottom;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}
