* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  font-family: "Times New Roman", Times, serif; 
  line-height: 1.6; 
  color: #333; 
  background: #f9f9f9; 
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, "Times New Roman", serif;
}

/* Waves background full screen */
#waves-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* stays behind all content */
}

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; background: #222; padding: 2rem; }
.logo { font-size: 1.5rem; color: #fff; font-size: 25px; font-weight: 530; }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 1.5rem; }
.nav-links a { color: #fff; text-decoration: none; }
.nav-links a.active { border-bottom: 2px solid #fff; }
.menu-toggle { display: none; font-size: 1.8rem; background: none; border: none; color: #fff; }
.navbar a {
  font-size: 22px;   /* increase as needed */
  font-weight: 500;  /* optional: makes text bolder */
  color: white;
  text-decoration: none;
  padding: 10px 15px;
}

/* Hero */
.hero { text-align: center; padding: 6rem 1rem; background: linear-gradient(135deg,#a30d32,#ed3179); color: #fff; }
.hero h1 { font-size: 2.8rem; }
.hero p { margin: 1rem 0; font-size: 1.2rem; }
.btn { display: inline-block; background: #fff; color: #0077b6; padding: 0.7rem 1.5rem; border-radius: 5px; text-decoration: none; font-weight: bold; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  text-align: center;
  color: white;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  text-align: center;
  color: white;
  background: linear-gradient(-45deg, #ffb6c1, #e3167c, #c40e44, #ff85a2);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}

/* Gradient background animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Common bubble styling */
.bubble {
  position: absolute;
  bottom: -100px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 0.6;
  animation: rise 12s linear infinite;
}

/* Different bubble sizes */
.bubble.small { width: 40px; height: 40px; }
.bubble.medium { width: 60px; height: 60px; }
.bubble.large { width: 100px; height: 100px; }

/* Left-side bubbles */
.bubble.left1 { left: 10%; animation-delay: 0s; }
.bubble.left2 { left: 20%; animation-delay: 4s; }
.bubble.left3 { left: 5%; animation-delay: 8s; }

/* Right-side bubbles */
.bubble.right1 { right: 10%; animation-delay: 2s; }
.bubble.right2 { right: 20%; animation-delay: 6s; }
.bubble.right3 { right: 5%; animation-delay: 10s; }

/* Bubble animation */
@keyframes rise {
  from {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  to {
    transform: translateY(-800px) scale(1.3);
    opacity: 0;
  }
}

/* Sections */
section { padding: 4rem 1rem; text-align: center; }
.about-preview, .services, .portfolio, .testimonials, .contact-cta { background: #fff; margin: 1rem auto; max-width: 1200px; border-radius: 10px; padding: 2rem; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
h2 { margin-bottom: 1.5rem; font-size: 2rem; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }

.card { background: #f0f0f0; padding: 1.5rem; border-radius: 8px; }
.portfolio-item { background: #ddd; padding: 3rem; border-radius: 8px; }

/* Testimonials */
/*blockquote { background: #f0f0f0; padding: 1.5rem; border-radius: 8px; font-style: italic; }
cite { display: block; margin-top: 1rem; font-weight: bold; }*/

/* About Page */
.content {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  text-align: center; /* centers headings & paragraphs */
}

.content h1, 
.content h2 {
  margin-bottom: 1rem;
  color: #0077b6;
}

.content p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
section {
  padding: 60px 20px;
  text-align: center;
}

h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: bold;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
}

.card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #333;
}

.card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.skills-grid div {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.skills-grid div:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.skills-grid h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  color: #8a0075;
}

.skills-grid p {
  font-size: 0.95rem;
  color: #444;
}

.achievements {
  background: #fff; /* White box */
  border-radius: 15px;
  padding: 60px 40px;
  margin: 60px auto;
  max-width: 900px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.achievements h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.achievements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievements ul li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

/* Custom bullet */
.achievements ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #19040e; /* soft pink bullet */
  font-size: 1.3rem;
  line-height: 1;
}

.projects {
  background: #fff; /* White box background */
  border-radius: 15px;
  padding: 60px 40px;
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.projects h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
}

.project-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.project-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.project-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111;
}

.project-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.project-card a {
  color: #007bff;
  font-weight: 500;
  text-decoration: none;
}

.project-card a:hover {
  text-decoration: underline;
}

.projects .btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.projects .btn:hover {
  background: linear-gradient(45deg, #0072ff, #00c6ff);
}

/* Beyond Work Section */
.content h2 {
  margin-top: 2.5rem;
}

.content strong {
  color: #00b61e; /* highlights keywords like skills & passions */
}


/* Contact Box */
.contact-box {
  background: #fff;
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.contact-box h1 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #0077b6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Times New Roman", Times, serif;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: #0077b6;
  color: #fff;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #005f8a;
}

.contact-info {
  font-size: 0.95rem;
  color: #555;
}

.btn {
  background: linear-gradient(135deg, #4facfe, #00f2fe); /* gradient blue */
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px; /* rounded pill style */
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}

.btn:hover {
  background: linear-gradient(135deg, #43e97b, #38f9d7); /* smooth hover */
  transform: translateY(-2px);
  box-shadow: 0px 6px 15px rgba(0,0,0,0.2);
}

.btn:active {
  transform: scale(0.95);
}

.btn-text {
  font-family: "Times New Roman", sans-serif; /* clean modern font */
  font-size: 1.5rem;
  font-weight: 700; /* bold for punch */
  letter-spacing: 1px; 
  text-transform: uppercase; /* stylish ALL CAPS */
}

/* Buttons - Unified Gradient Style */
/*.btn, .project-card a {
display: inline-block;
background: linear-gradient(135deg, #4facfe, #00f2fe);
color: white;
border: none;
padding: 12px 25px;
border-radius: 30px;
font-size: 1rem;
font-weight: bold;
letter-spacing: 1px;
cursor: pointer;
transition: all 0.3s ease-in-out;
box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
text-decoration: none;
}


.btn:hover, .project-card a:hover {
background: linear-gradient(135deg, #43e97b, #38f9d7);
transform: translateY(-2px);
box-shadow: 0px 6px 15px rgba(0,0,0,0.2);
}


.btn:active, .project-card a:active {
transform: scale(0.95);
}*/

/* Footer */
footer { background: #222; color: #fff; text-align: center; padding: 2.0rem; }
footer {
  font-size: 20px;   /* increase as needed */
  text-align: center;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; background: #222; position: absolute; top: 60px; right: 0; width: 200px; padding: 1rem; }
  .nav-links.show { display: flex; }
  .menu-toggle { display: block; }
}

/* ✅ Consistent spacing for all section boxes */
.about-preview,
.services,
.portfolio,
.testimonials,
.contact-cta,
.achievements,
.projects {
  margin: 60px auto; /* uniform spacing */
}
