/* -----------------------
   Global Styles
------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

/* -----------------------
   Header / Navbar
------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}

.logo span {
  color: #ff4d6d;
}

.navbar a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #ff4d6d;
}

#menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* -----------------------
   Hero Section
------------------------ */
.home {
  min-height: 100vh;
  padding: 100px 10% 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #fff, #fce3e9);
  flex-wrap: wrap;
}

.home-content {
  flex: 1 1 500px;
}

.home-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.home-content h1 span {
  color: #ff4d6d;
}

.home-content h3 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: #444;
}

.home-content p {
  margin-bottom: 20px;
  max-width: 500px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.5rem;
  color: #444;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff4d6d;
}

.btn-group {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff4d6d;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s;
  margin-right: 10px;
}

.btn:hover {
  background: #e63950;
}

.btn.secondary {
  background: transparent;
  color: #ff4d6d;
  border: 2px solid #ff4d6d;
}

.btn.secondary:hover {
  background: #ff4d6d;
  color: #fff;
}

.home-img {
  flex: 1 1 400px;
  text-align: center;
}

.home-img img {
  width: 100%;
  max-width: 350px;
  border-radius: 50%;
  border: 5px solid #ff4d6d;
}

/* -----------------------
   About Section
------------------------ */
.about {
  padding: 80px 10%;
  background: #fff;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.about p {
  max-width: 800px;
  margin: 10px auto;
  font-size: 1rem;
  color: #444;
}

/* -----------------------
   Services Section
------------------------ */
.services {
  padding: 80px 10%;
  background: #fce3e9;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

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

.services-box:hover {
  transform: translateY(-10px);
}

.services-box h4 {
  margin-bottom: 10px;
  color: #ff4d6d;
}

.services-box p {
  font-size: 0.95rem;
  color: #444;
}

/* -----------------------
   Testimonials
------------------------ */
.testimonial {
  padding: 80px 10%;
  background: #fff;
  text-align: center;
}

.testimonial h2 {
  margin-bottom: 30px;
}

.wrapperr {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-item {
  background: #fce3e9;
  padding: 20px;
  border-radius: 12px;
}

.testimonial-item img {
  width: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* -----------------------
   Contact
------------------------ */
.contact {
  padding: 80px 10%;
  background: #fce3e9;
}

.contact h2 {
  text-align: center;
  margin-bottom: 20px;
}

form .input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.input-box input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

textarea {
  resize: none;
}

form .btn {
  margin-top: 15px;
  display: inline-block;
}
/* Scroll Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%; /* Start empty */
  height: 5px;
  background: linear-gradient(90deg, #6c63ff, #00c6ff);
  z-index: 10000;
  transition: width 0.25s ease-out;
}

/* -----------------------
   Footer
------------------------ */
.footer {
  background: #222;
  color: #fff;
  padding: 30px 10%;
  text-align: center;
}

.footer .social a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #fff;
  transition: 0.3s;
}

.footer .social a:hover {
  color: #ff4d6d;
}

.footer ul {
  list-style: none;
  margin: 20px 0;
}

.footer ul li {
  display: inline-block;
  margin: 0 10px;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
}

.footer ul li a:hover {
  color: #ff4d6d;
}

.footer p {
  margin-top: 10px;
  font-size: 0.9rem;
}
