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

body {
  font-family: Arial, sans-serif;
  background: white;
  color: #222;
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* Header Gradient */
.header {
  height: 100vh;
  background: linear-gradient(to bottom, black, gray, white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

/* Profile Pic */
.profile-pic {
  width: 140px;   
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 30px;
  left: 30px;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

 @media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding: 30px 15px;
  }
}


.hero-text {
  width: 100%;                   /* take full width inside hero */
  max-width: 1100px;             /* wider container */
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 25px;
  color: #ddd;
}
.hero-text .highlight {
  color: #ff1493; /* pink */
}

.hero-text .blue {
  color: navy;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #ddd;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff1493;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #e01183;
}

.cta-btn {
  padding: 12px 24px;
  background: hotpink;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}
.cta-btn:hover {
  background: deeppink;
}

/* Menu Button */
.menu-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 12px;
  cursor: pointer;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 220px;
  height: 100%;
  background: #111;
  color: white;
  padding: 20px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.side-menu a {
  color: white;
  text-decoration: none;
  padding: 8px;
  border-radius: 5px;
  transition: 0.3s;
}

.side-menu a:hover {
  background: #444;
  box-shadow: 0 0 10px pink;
}

.close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Sections */
section {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 45px 20px;
}

/* About */
#about {
  max-width: 800px;
  margin: auto;
}
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 45px 20px;
  background: #f9f9f9;
}

.about-container {
  max-width: 800px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.about-container h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.about-container h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #444;
}

.about-container p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}


/* Projects */
#projects {
  background: #f9f9f9;
}
.projects-section {
  padding: 60px 20px;
  background: #f9f9f9; /* light background so heading is visible */
  text-align: center;
}

.projects-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111; /* dark text */
}

.projects-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}
/* Swiper container */
.swiper {
  width: 80%;
  max-width: 700px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Each slide */
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.swiper-slide img:hover{
transform: scale(1.1);
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: hotpink;
  font-weight: bold;
}

/* Pagination dots */
.swiper-pagination-bullet {
  background: hotpink;
}


.project-info {
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.project-info h3 {
  margin-bottom: 10px;
  color: #4053ff;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 15px;
  background: #ff4081;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}

/* Contact Section */
#contact {
  background: #312f2f;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.contact-links img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.contact-links img:hover {
  transform: scale(1.2);
}

