* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Responsive Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  .hero-section1{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000; /* Keeps it above other elements */
  }
  .navbar {
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  width: 140px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff4f5a;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.btn-outline, .btn-fill {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 2px solid #ff4f5a;
  color: #ff4f5a;
}

.btn-outline:hover {
  background-color: #ff4f5a;
  color: white;
}

.btn-fill {
  background-color: #ff4f5a;
  color: white;
  border: none;
}

.btn-fill:hover {
  background-color: #e63946;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .nav-links, .nav-buttons {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background-color: #fff;
    padding: 10px 0;
  }

  .nav-links.active, .nav-buttons.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

  .hero-section {
  /* background: linear-gradient(135deg, #ffe4e1, #fbe9e7); */
  background-image: url(../images/slider-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 280px;
  margin-right: 20px;
}

.text-content h1 {
  font-size: 2.5rem;
  line-height: 48px;
  color: #313337;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 12px 24px;
  background-color: #ff4f5a;
  color: white;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #e63946;
}

.image-content img {
  max-width: 100%;
 
  height: auto;
  border-radius: 10px;
}

/* .logo {
  width: 160px;
  margin-bottom: 20px;
} */

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    margin-right: 0;
    margin-bottom: 30px;
    margin-top: 20px;
}
  }

  .text-content h1 {
    font-size: 2rem;
  }

  .cta-btn {
    font-size: 1rem;
  }



.about-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
  }
  
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .about-image img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .about-content {
    flex: 1 1 400px;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
    line-height: 45px;
    margin-bottom: 20px;
    color: #343a40;
  }
  
  .about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-content h2 {
      font-size: 2rem;
    }
  
    .about-content p {
      font-size: 1rem;
    }
  }


  .features-section {
    text-align: center;
    padding: 60px 20px;
  }
  
  .features-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  
  .features-section .description {
    font-size: 1em;
    color: #777;
    margin-bottom: 50px;
  }
  
  .features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .feature-card {
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    border-radius: 12px;
    width: 260px;
    padding: 30px 20px;
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: #fff;
  }
  
  /* Icon background colors */
  .pink { background-color: #fdd2f5; color: #e91e63; }
  .yellow { background-color: #fff1c1; color: #ff9800; }
  .green { background-color: #ccffe0; color: #4caf50; }
  .red { background-color: #ffcfcf; color: #f44336; }
  .peach { background-color: #ffccd7; color: #ffbd5b; }
  
  .feature-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #222;
  }
  
  .feature-text {
    font-size: 0.9em;
    color: #666;
    line-height: 1.5em;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .features-container {
      flex-direction: column;
      align-items: center;
    }
  }

  .portfolio {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
  }
  

  .portfolio-container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: #333;
  }
  
  .portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .portfolio-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(45% - 20px);
    transition: transform 0.3s ease;
    max-width: 450px;
  }
  
  .portfolio-item img {
    width: 100%;
    display: block;
  }
  
  .portfolio-info {
    padding: 15px;
  }
  
  .portfolio-info h3 {
    color: #0077cc;
    margin-bottom: 10px;
  }
  
  .portfolio-info p {
    color: #666;
    font-size: 0.95rem;
  }
  
  .portfolio-item:hover {
    transform: translateY(-5px);
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .portfolio-item {
      flex: 1 1 100%;
    }
  }
  
  

.contact-section{
    padding: 40px;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 2rem;
}

  .contact-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    max-width: 1000px;
    margin: auto;
    border-radius: 6px;
    overflow: hidden;
    background-color: #7777770a;
    border: solid 1px #80808080;

  }
  
  .contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    padding: 30px;
  }
  
  .contact-info i {
    color: #1e90ff;
    margin-right: 10px;
  }
  
  .contact-info p {
    margin: 15px 0;
    line-height: 1.6;
    font-size: 14px;
  }
  
  .contact-info iframe {
    width: 100%;
    height: 160px;
    border: none;
    margin-top: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
  }
  
  .contact-form button {
    padding: 10px 20px;
    background: #ff4f5a;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background: #e63946;
  }
  
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  }


  .footer {
   
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    gap: 40px;
  }
  
  .footer-column {
    flex: 1 1 220px;
  }
  
  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .footer-column ul li:hover {
    color: #4a6cf7;
  }
  
  .footer-column p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  } */
  
  /* .logo img {
    width: 40px;
    height: 40px;
  } */
  
  .logo h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #222;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }
  }