/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADER */
header {
    width: 100%;
    position: fixed;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 999;
    background:linear-gradient(135deg, #cbb4d4 0%, #43015b 100%);
}

/* NAVBAR */
.navbar {
  width: 100%;
  margin: 0;
  height: 100px;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  background: linear-gradient(135deg, #cbb4d4 0%, #43015b 100%);
}

.logo {
   background-image: url("../images/logoo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
   height: 140px;
  width: 140px;
  flex-shrink: 0;
}

.nav-links {
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: white;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  list-style: none;
  background: #622079;
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 160px;
  left: 0;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu li a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 18px 40px;
  transition: all 0.3s ease;
}

.mobile-menu li a:hover {
  background: rgba(255,255,255,0.1);
  color: #e3b9ff;
}

.mobile-menu.show {
  display: flex;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

    /* HERO */
    .hero {
        height: auto;
        min-height: 60vh;
       
    
    }

    .hero-overlay {
        padding: 2rem 1rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        height: auto;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    /* FEATURES */
    .features-section {
        padding: 40px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-box {
        padding: 20px;
    }

    /* HOW IT WORKS */
    .how-it-works {
        padding: 40px 20px;
    }

    .steps-container {
        gap: 15px;
    }

    .step-box {
        width: 100%;
    }

    /* CONTACT */
    .contact-section {
        padding: 40px 20px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* FOOTER */
    .footer {
        padding: 40px 20px;
    }

    .footer-container {
        gap: 20px;
    }




/* HERO SECTION front part*/
.hero {
  background:#d2b9dd;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/bg.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
  margin-top: 0;
  padding: 40px 20px;
}

/* OVERLAY FOR BETTER READABILITY */
.hero-overlay {
  background: rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

/* HERO CONTENT BOX */
.hero-content {
  max-width: 600px;
  width: 90%;
  background: linear-gradient(135deg, rgba(186, 144, 202, 0.95) 0%, rgba(67, 1, 91, 0.95) 100%);
  color: #ffffff;
  padding: 45px 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease-out;
  position: relative;
  z-index: 2;
}

/* HEADLINE */
.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* SUBTEXT */
.hero-content p {
  font-size: 0.95rem;
  max-width: 100%;
  margin: 0 auto 25px;
  line-height: 1.6;
  color: #f0e6ff;
  font-weight: 500;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 15px 45px;
  font-size: 16px;
  font-weight: 700;
  background: white;
  color: #43015b;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: #f9f6ff;
}

/* RESPONSIVE — Tablets */
@media (max-width: 992px) {
    .hero-box {
        width: 85%;
        padding: 50px 30px;
    }
    .hero-box h1 {
        font-size: 40px;
    }
}

/* RESPONSIVE — Mobile */
@media (max-width: 600px) {
    .hero-box {
        width: 95%;
        padding: 40px 20px;
        border-radius: 25px;
    }
    .hero-box h1 {
        font-size: 30px;
    }
    .hero-btn {
        padding: 10px 28px;
        font-size: 18px;
    }
}

/*  features section */

.features-section {
  padding: 80px 10%;
  background: #ffffff;
}

.features-header {
  text-align: center;
  margin-bottom: 40px;
}

.features-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #333;
}

.features-header p {
  font-size: 18px;
  color: #666;
  margin-top: 8px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 3fr));
  gap: 35px;
}

.feature-box {
  background: #d2b9dd;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

.icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #43015b;
  font-weight: 700;
}

.feature-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-box ul li {
  margin: 6px 0;
  color: #444;
  font-size: 15px;
}

/* Fade-in Animation */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* HOW IT WORKS SECTION */

.how-it-works {
  background: #ffffff;
  padding: 70px 20px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #43015b;
}
.how-it-works p{
    margin-bottom: 50px;
    font-size: 1.3rem;
}

.how-it-works .subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 20px;
}

.step-box {
  background: #f7eaff;
  border-radius: 18px;
  width: 250px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.step-number {
  width: 45px;
  height: 45px;
  background: #43015b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: bold;
}

.step-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2c0053;
}

.step-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .step-box {
    width: 90%;
  }
}

/* Contact Section */
.contact-section {
  background: #f7eaff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 0;
}

.contact-content h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: #43015b;
}

.contact-content .subtext {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 0px;
}

.btn {
  padding: 15px 45px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
  border: none;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.primary-btn {
  background: #43015b;
  color: #fff;
  box-shadow: 0 4px 15px rgba(67, 1, 91, 0.3);
}

.primary-btn:hover {
  background: #5e0d80;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(67, 1, 91, 0.4);
}

.secondary-btn {
  background: transparent;
  border: 2.5px solid #43015b;
  color: #43015b;
}

.secondary-btn:hover {
  background: #43015b;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(67, 1, 91, 0.3);
}

.contact-number {
  font-size: 1.1rem;
  color: #333;
  margin-top: 10px;
}

.contact-number strong {
  color: #43015b;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
        gap: 20px;
        height: 80px;
    }

    .logo {
        height: 100px;
        width: 100px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
    }

    .mobile-menu.show {
        display: flex;
    }

    /* HERO */
    .hero {
        height: 60vh;
        min-height: 60vh;
        padding: 30px 15px;
      
        
    }

    .hero-content {
        max-width: 95%;
        padding: 35px 25px;
        border-radius: 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .btn {
        padding: 13px 35px;
        font-size: 14px;
    }

    /* FEATURES */
    .features-section {
        padding: 40px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-box {
        padding: 20px;
    }

    /* HOW IT WORKS */
    .how-it-works {
        padding: 40px 20px;
    }

    .steps-container {
        gap: 15px;
    }

    .step-box {
        width: 100%;
    }

    /* CONTACT */
    .contact-section {
        padding: 40px 20px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
    }

    /* FOOTER */
    .footer {
        padding: 40px 20px;
    }

    .footer-container {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 15px;
        gap: 15px;
        height: 100px;
    }


    .hero {
        min-height: 50vh;
        margin-top: 80px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 13px;
    }

}

/* Footer Section */
.footer {
  background: #43015b;
  color: #fff;
  padding: 60px 20px 30px;

  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Brand */
.footer-col.brand h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.footer-col.brand p {
  color: #e8d6f3;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Column Headings */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  position: relative;
}

/* Footer Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #e8d6f3;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Contact Info */
.footer-col.contact p {
  margin-bottom: 8px;
  color: #e8d6f3;
}

.footer-col.contact a {
  color: #e8d6f3;
  text-decoration: none;
}

.footer-col.contact a:hover {
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  color: #e0c8ef;
}


/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer-col ul li {
    margin-bottom: 12px;
  }
}

