/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0b0c3a;
  color: white;
  line-height: 1.6;
}

.container {
  width: 80%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #0b0c3a;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: fixed;
  width: 100%;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff5f93;
}

.quote-btn {
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
  margin-top: 10px;
}

.quote-btn:hover {
  background: white;
  color: #0b0c3a;
}

/* Hero Section */
.hero {
  padding: 200px 0;
  height: 750px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: white;
  font-weight: bold;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ddd;
}

.btn-primary {
  padding: 12px 24px;
  background: #ff5f93;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #e24f80;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  width: 1500%;

}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    justify-content: center;
    margin-top: 15px;
  }

  .quote-btn {
    margin: 15px auto 0;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
  color: #0b0c3a;
  height: 710px;
}

.section-subtitle {
  color: #ff5f93;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: #0b0c3a;
}

.service-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 250px;
  max-width: 300px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 60px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #0b0c3a;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 90%;
  }
}

.grow{
    padding: 80px 0;
    background: #fff;
}

.grow-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.grow-image {
  position: relative;
  flex: 1 1 45%;
  max-width: 500px;
}

.grow-image .main-img {
  width: 80%;
  border-radius: 15px;
  height: 80%;
  background-position: fixed;
}

.notification-card {
  position: absolute;
  bottom: 100px;
  right: 20px;
  background: rgb(239, 235, 235);
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  max-width: 300px;
}

.notification-card img {
  width: 30px;
  height: 30px;
}

.notification-card .text h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #000;
}

.notification-card .text p {
  font-size: 0.9rem;
  color: #666;
}

/* Right Content */
.grow-text {
  flex: 1 1 45%;
  padding: 20px;
}

.grow-text h2 {
  font-size: 2rem;
  color: #0b0c3a;
  margin-bottom: 30px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.feature-box img {
  width: 60px;
  height: 60px;
}

.feature-box h4 {
  font-size: 1rem;
  color: #0b0c3a;
  margin-bottom: 5px;
}

.feature-box p {
  font-size: 0.9rem;
  color: #555;
}

.btn-learn {
  display: inline-block;
  background: #ff5f93;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .grow-grid {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .grow-text {
    padding: 0;
  }

  .feature-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .notification-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
  }
}

    .container {
        max-width: 1000px;
        padding: 20px;
        text-align: center;
    }
    .subtitle {
        color: #ff4081;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 1px;
    }
    h1 {
        font-size: 32px;
        font-weight: 700;
        margin: 10px 0 20px;
        line-height: 1.3;
    }
    .description {
        max-width: 600px;
        margin: 0 auto 30px;
        font-size: 16px;
        color: #ccc;
    }
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }
    .card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 30px 20px;
        transition: background 0.3s, transform 0.3s;
    }
    .card:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
    }
    .card-icon {
        font-size: 36px;
        color: #ff4081;
        margin-bottom: 15px;
    }
    .card-title {
        font-size: 16px;
        font-weight: 600;
    }
    .cta {
        font-size: 14px;
        color: #ccc;
    }
    .cta a {
        color: #fff;
        text-decoration: underline;
    }

    .container5 {
    max-width: 2000px;
    color: #000;
    padding: 10px 0;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
  }
  h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
  }
  p.description {
    font-size: 1em;
    margin-bottom: 1.5em;
    line-height: 1.5;
    color: #555;
  }
  .button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff66b2;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 40px;
    text-decoration: none;
  }
  .button:hover {
    background-color: #ff3385;
  }
  .stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
  }
  .stat {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 150px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .stat h2 {
    font-size: 2em;
    margin: 0;
    color: #000;
  }
  .stat p {
    margin-top: 0.5em;
    font-size: 0.9em;
    color: #555;
  }

  h2{
    background-color: #fff;
  }

.great-stuffs {
    padding: 40px 20px;
    color: #000;
    text-align: center;
    background-color: #fff;
}

.great-stuffs h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.card1 {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e08ba8;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 1.5rem;
    margin: 0;
}

.overlay p {
    font-size: 0.9rem;
    margin: 5px 0 0;
}

.description {
    font-size: 1rem;
    padding: 15px;
}

.footer {
    background: #f8f8f8;
    padding: 40px 20px 20px 20px;
    color: #333;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 6px;
    font-size: 14px;
    cursor: pointer;
    color: #333;
}

.footer-section ul li:hover {
    text-decoration: underline;
}

.logo {
    width: 40px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.phone {
    font-weight: bold;
}

.footer-section a {
    color: #333;
    font-size: 14px;
    text-decoration: underline;
}

.footer-section a:hover {
    color: #ff007f;
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 20px 0 0 20px;
    outline: none;
}

.newsletter-form button {
    background: #333;
    color: #fff;
    border: none;
    padding: 0 15px;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    font-size: 18px;
}

.newsletter-form button:hover {
    background: #ff007f;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons :hover{
    color: #e24f80;
}

.social-icons img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    filter: grayscale(100%);
    transition: filter 0.3s;
}


.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #777;
}

.footer-bottom a {
    text-decoration: none;
    color: #777;
}

.footer-bottom a:hover {
    text-decoration: none;
}
