* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
      body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

/*header start*/
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 40px;
      background: rgba(255, 255, 255, 0.2);
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .logo img {
      height: 80px;
    }

    .nav {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .nav-item {
      position: relative;
      cursor: pointer;
    }

    .nav-item > a {
      text-decoration: none;
      color: #000;
      font-size: 18px;
      font-weight: bold;
      padding: 10px;
      display: inline-block;
    }

    .nav-item:hover > a {
      color: #320059;
    }

    .dropdown {
      font-size: 18px;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #eedefa;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      display: none;
      min-width: 200px;
      transition: all 0.3s ease;
      overflow: hidden;
      z-index: 999;
    }

    .dropdown a {
      display: block;
      padding: 10px 20px;
      color: #000;
      text-decoration: none;
    }

    .dropdown a:hover {
      background-color: #f5f5f5;
    }

    .nav-item.active .dropdown {
      display: block;
    }

    .caret {
      font-size: 10px;
      margin-left: 4px;
    }

   
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      margin-left: auto;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background-color: #000;
      transition: 0.3s;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      header {
        flex-wrap: wrap;
      }

      .hamburger {
        display: flex;
        margin-left: auto;
      }

      .nav {
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
        width: 100%;
        display: none;
      }

      .nav.show {
        display: flex;
      }

      .nav-item {
        width: 100%;
      }

      .dropdown {
        position: relative;
        top: auto;
        left: auto;
        box-shadow: none;
        background-color: #f3eafa;
      }
    }

  
    /*header end*/

     /* Hero Section */
    .hero-section {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
    }

    .hero-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      transition: opacity 0.5s ease-in-out;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.6); 
      z-index: 1;
    }

    .content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      z-index: 2;
      color: #fff;
      padding: 0 20px;
    }

    h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    h1 .highlight {
      color: #641b9d;
    }

    .subtext {
      font-size: 1.5rem;
      color: #ccc;
      margin-bottom: 2rem;
    }

    .btn {
      background-color: #320059;
      color: #fff;
      padding: 18px 50px;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: bold;
      font-size: 18px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .btn:hover {
      background-color: #641b9d;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 2.2rem;
      }

      .subtext {
        font-size: 1.1rem;
      }

      .btn {
        font-size: 0.95rem;
        padding: 10px 20px;
      }
    }
    /*hero section end */


     /*services*/
       .services-section {
      width: 90%;
      max-width: 1200px;
      margin: 60px auto;
    }

    .section-heading {
      text-align: center;
      font-size: 36px;
      margin-bottom: 50px;
      font-weight: bold;
      color: #320059;
       font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .service-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 60px;
      gap: 40px;
      flex-wrap: wrap;
    }

    .service-box.reverse {
      flex-direction: row-reverse;
    }

    .text-content {
      flex: 1;
      min-width: 280px;
    }

    .text-content h3 {
      font-size: 28px;
      margin-bottom: 15px;
      color: #320059;
    }

    .text-content p {
      font-size: 16px;
      color: #555;
      line-height: 1.6;
    }

    .image-content {
      flex: 1;
      min-width: 280px;
      text-align: center;
    }

    .image-content img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    .btn {
  background-color: #320059;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.btn:hover {
  background-color: #641b9d;
}


    @media (max-width: 768px) {
      .service-box,
      .service-box.reverse {
        flex-direction: column;
        text-align: center;
      }

      .text-content, .image-content {
        width: 100%;
      }
    }
/*service end*/



    /*  Business Company */
    .business-section {
      background-image: url('img/businessy.jpg');
      background-size: cover;
      background-position: center;
      padding: 100px 20px;
      color: #333;
      text-align: center;
      position: relative;
    }

    .business-section::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(255, 255, 255, 0.8); 
      z-index: 0;
    }

    .business-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: auto;
    }

    .business-content h1 {
      font-size: 32px;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .business-content p {
      font-size: 16px;
      margin-bottom: 10px;
    }

    .cta-button {
      background-color: #320059;
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      margin-top: 20px;
      transition: background 0.3s ease;
    }

    .cta-button:hover {
      background-color: #641b9d;
    }

    /*  Newsletter */
    .newsletter-section {
      background-color: #fff;
      text-align: center;
      padding: 80px 20px;
    }

    .newsletter-container {
      max-width: 700px;
      margin: auto;
    }

    .newsletter-container h2 {
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .newsletter-container p {
      color: #555;
      font-size: 16px;
      margin-bottom: 40px;
    }

    .newsletter-form {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .newsletter-form input {
      padding: 12px 20px;
      width: 60%;
      max-width: 400px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
    }

    .newsletter-form button {
      padding: 12px 25px;
      background-color: #320059;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      font-size: 16px;
      cursor: pointer;
    }

    .newsletter-form button:hover {
      background-color: #641b9d;
    }

    @media (max-width: 600px) {
      .newsletter-form input {
        width: 100%;
      }
    }



/*testimonial section*/
  .testimonial-section {
      padding: 60px 20px;
      text-align: center;
    }

    .testimonial-section h5 {
      color: #320059;
      letter-spacing: 2px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .testimonial-section h2 {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 40px;
      color: #320059;
    }

    .testimonial-slider-wrapper {
      overflow: hidden;
      position: relative;
    }

    .testimonial-slider {
      display: flex;
      gap: 20px;
      animation: scrollLoop 40s linear infinite;
    }

    .testimonial-card {
      flex: 0 0 400px;
      height: 300px;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .testimonial-card .quote {
      font-size: 30px;
      color: #320059;
      margin-bottom: 15px;
    }

    .testimonial-card p {
      font-size: 16px;
      line-height: 1.6;
      color: #444;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-author img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }

    .testimonial-author .info {
      display: flex;
      flex-direction: column;
    }

    .testimonial-author .info strong {
      font-weight: 600;
      color: #000;
    }

    .testimonial-author .info span {
      font-size: 14px;
      color: #888;
    }

    @keyframes scrollLoop {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .testimonial-card {
        flex: 0 0 90vw;
        height: auto;
      }

      .testimonial-slider {
        animation-duration: 60s;
      }
    }

/*footer section*/
    .footer {
      background-color: #320059;
      color: #ccc;
      padding: 60px 30px 30px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto;
      gap: 40px;
    }

    .footer-column {
      flex: 1 1 200px;
      min-width: 200px;
    }

    .footer-column h4 {
      color: #fff;
      margin-bottom: 20px;
      font-size: 18px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
      font-size: 15px;
    }

    .footer-column ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #fff;
    }

    .footer-column p,
    .footer-column p a {
      font-size: 15px;
      color: #ccc;
      text-decoration: none;
    }

    .footer-column p a:hover {
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid #44006e;
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      color: #999;
      font-size: 14px;
    }

    .social-icons {
      margin-top: 10px;
    }

    .social-icons a {
      color: #ccc;
      margin: 0 10px;
      font-size: 18px;
      transition: color 0.3s ease;
      text-decoration: none;
    }

    .social-icons a:hover {
      color: #fff;
    }

    /* Responsive Footer */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
      }

      .footer-column {
        width: 100%;
      }

      .footer-bottom {
        text-align: left;
        font-size: 13px;
      }

      .social-icons {
        text-align: left;
      }
    }








/*social media marketing page */
  .smm-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 60px 10%;
      gap: 40px;
      background-color: #fff;
    }

    .smm-text {
      flex: 1;
      min-width: 300px;
    }

    .smm-text h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .smm-text h2 .blue {
      color: #320059;
    }

    .smm-text p {
      font-size: 16px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 20px;
    }

    .smm-button {
      display: inline-block;
      background-color: #320059;
      color: #fff;
      padding: 18px 50px;
       font-weight: bold;
      border: none;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: background 0.3s ease;

     
    }

    .smm-button:hover {
      background-color: #641b9d;
    }

    .smm-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .smm-image img {
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 900px) {
      .smm-section {
        flex-direction: column;
        text-align: center;
      }

      .smm-text, .smm-image {
        width: 100%;
      }

      .smm-text h2 {
        font-size: 28px;
      }
    }

    /*Leadgerneration page*/
    /* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #ffffff; 
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.zip-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.zip-form input {
  padding: 15px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  min-width: 200px;
}

.zip-form button {
  background: #320059;
  color: #fff;
  padding: 15px 25px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.zip-form button:hover {
  background: #641b9d;
}

/*  Responsive  */

@media (max-width: 1024px) {
  .hero {
    height: auto; 
    padding: 80px 20px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 15px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  .hero-content p {
    font-size: 14px;
  }
  .zip-form {
    flex-direction: column;
    gap: 15px;
  }
  .zip-form input,
  .zip-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }
  .hero-content p {
    font-size: 13px;
  }
  .zip-form input {
    font-size: 14px;
    padding: 12px;
  }
  .zip-form button {
    font-size: 14px;
    padding: 12px;
  }
}

   
/*  Lead Section 1  */

.lead-section1 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #320059;
}

.overlay {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  display: flex;
  justify-content: center;  
  align-items: center;      
  color: white;
  min-height: 100vh;
  text-align: center;
}

.text-container {
  max-width: 800px;
}

.text-container h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #fff;
}

.blue-text {
  color: #ffffff;
}

.text-container p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/*  Responsive */


@media (max-width: 1024px) {
  .overlay {
    padding: 40px 15px;
    min-height: auto;
  }
  .text-container h2 {
    font-size: 36px;
  }
  .text-container p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .overlay {
    flex-direction: column;
    padding: 30px 15px;
  }
  .text-container {
    max-width: 100%;
  }
  .text-container h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  .text-container p {
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .overlay {
    padding: 20px 10px;
  }
  .text-container h2 {
    font-size: 24px;
  }
  .text-container p {
    font-size: 14px;
  }
}


/*  Lead Section 2  */



.lead-section2 h2 {
  margin-top: 30px;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}

.lead-section2 h2 .highlight {
  color: #320059;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 15px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  color: #222;
  text-align: center;
  text-decoration: none;   
  padding: 20px;
  border-radius: 8px;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

.icon-item img {
  width: 50px;
  margin-bottom: 10px;
}

.icon-item:hover {
  background: #f1e6f7;
  transform: translateY(-5px);
  color: #320059;
}

/*  Responsive  */


@media (max-width: 1024px) {
  .lead-section2 h2 {
    font-size: 30px;
  }
  .icon-item {
    padding: 15px;
  }
  .icon-item img {
    width: 45px;
  }
}
@media (max-width: 768px) {
  .lead-section2 h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .icon-grid {
    gap: 20px;
  }
  .icon-item {
    font-size: 14px;
    padding: 12px;
  }
  .icon-item img {
    width: 40px;
  }
}
@media (max-width: 480px) {
  .lead-section2 h2 {
    font-size: 22px;
  }
  .icon-item {
    font-size: 13px;
    padding: 10px;
  }
  .icon-item img {
    width: 35px;
  }
}







/*contactform page*/

    .contact-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      padding: 60px;
      gap: 40px;
      background: #fff;
    }

    .map-container {
      flex: 1;
      min-width: 300px;
      height: 100%;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      min-height: 400px;
      border: none;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(100, 27, 157, 0.2);
    }

    .contact-form {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      border: 1px solid #eee;
      box-shadow: 0 0 10px rgba(100, 27, 157, 0.2);
    }

    .contact-form h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #320059;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 14px;
      margin-bottom: 15px;
      border: 1px solid #641b9d;
      border-radius: 6px;
      font-size: 16px;
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 120px;
    }

    .contact-form button {
      width: 100%;
      padding: 14px;
      background-color: #320059;
      color: #fff;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-form button:hover {
      background-color: #641b9d;
    }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
        padding: 30px 20px;
      }

      .map-container,
      .contact-form {
        max-width: 100%;
      }
    }


    /*privacy policy page*/
   
.privacy-container {
 
  margin: 60px auto;
  padding: 60px 60px;
  background-color: #fff;
}


.privacy-container h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.privacy-container .updated-date {
  font-style: italic;
  color: #666;
  margin-bottom: 30px;
}


.privacy-container p {
  line-height: 1.7;
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.privacy-container ul {
  padding-left: 20px;
  margin-top: 10px;
}

.privacy-container ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}


.privacy-container h2,
.privacy-container h3 {
  font-size: 20px;
  color: #320059;
  margin-top: 30px;
  margin-bottom: 10px;
}


strong {
  color: #320059;
}

/* Responsivenes */
@media (max-width: 768px) {
  .privacy-container {
    padding: 40px 30px;
    margin: 40px 20px;
  }

  .privacy-container h1 {
    font-size: 24px;
  }

  .privacy-container h2,
  .privacy-container h3 {
    font-size: 18px;
  }

  .privacy-container p,
  .privacy-container ul li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .privacy-container {
    padding: 30px 20px;
    margin: 30px 10px;
  }

  .privacy-container h1 {
    font-size: 22px;
  }

  .privacy-container h2,
  .privacy-container h3 {
    font-size: 17px;
  }

  .privacy-container p,
  .privacy-container ul li {
    font-size: 14px;
  }
}



   /*term page*/
   
.term-container {
 
  margin: 60px auto;
  padding: 60px 60px;
  background-color: #fff;
}


.term-container h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.term-container .updated-date {
  font-style: italic;
  color: #666;
  margin-bottom: 30px;
}


.term-container p {
  line-height: 1.7;
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.term-container ul {
  padding-left: 20px;
  margin-top: 10px;
}

.term-container ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}


.term-container h2,
.term-container h3 {
  font-size: 20px;
  color: #320059;
  margin-top: 30px;
  margin-bottom: 10px;
}


strong {
  color: #320059;
}

/* Responsivenes */
@media (max-width: 768px) {
  .term-container {
    padding: 40px 30px;
    margin: 40px 20px;
  }

  .term-container h1 {
    font-size: 24px;
  }

  .term-container h2,
  .term-container h3 {
    font-size: 18px;
  }

  .term-container p,
  .term-container ul li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .term-container {
    padding: 30px 20px;
    margin: 30px 10px;
  }

  .term-container h1 {
    font-size: 22px;
  }

  .term-container h2,
  .term-container h3 {
    font-size: 17px;
  }

  .term-container p,
  .term-container ul li {
    font-size: 14px;
  }
}

/*about page*/

    /* SECTION 1 - About Mission */
    .about-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px 10%;
      border-bottom: 1px solid #eee;
      gap: 40px;
    }

    .about-section-content {
      flex: 1;
    }

    .about-section-image {
      flex: 1;
    }

    .about-section-image img {
      width: 100%;
      border-radius: 20px;
      transition: transform 0.3s ease;
    }

    .about-section-image img:hover {
      transform: scale(1.02);
    }

    h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: #111;
    }

    .highlight {
      color: #320059;
    }

/* section2 */

.about-vision-section {
  position: relative;
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid #eee;
  background-image: url('img/vision.jpg'); 
  background-size: cover;
  background-position: center;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}

.about-vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}

.about-vision-section h2,
.about-vision-section .about-principles,
.about-vision-section p {
  color: #fff;
}

.about-stats-box {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
    }

    .about-stat-item {
      background: #f7f7f7;
      padding: 20px 30px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: bold;
      color: #333;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }


    /* SECTION 3 - Team */
    .about-team-section {
      display: flex;
      justify-content: space-between;
      padding: 80px 10%;
      gap: 50px;
    }

    .about-team-section .about-content {
      flex: 1;
    }

    .about-team-section .about-content h2 {
      font-size: 34px;
      color: #111;
    }

    .about-team-section .about-content p {
      margin-top: 18px;
      font-size: 17px;
      line-height: 1.7;
    }

    .about-team-section .about-image {
      flex: 1;
    }

    .about-team-section .about-image img {
      width: 100%;
      border-radius: 60px 0 60px 0;
      transition: transform 0.3s ease;
    }

    .about-team-section .about-image img:hover {
      transform: scale(1.015);
    }

    /* Responsive */

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
    gap: 30px;
  }

  .about-section-content {
    width: 100%;
  }

  .about-section-image {
    width: 100%;
  }

  .about-section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
  }

  .about-section h2 {
    font-size: 28px;
  }

  .about-section-content p {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .about-team-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 5%;
    gap: 30px;
  }

  .about-team-section .about-content h2 {
    font-size: 26px;
  }

  .about-team-section .about-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 12px;
  }

  .about-team-section .about-image {
    width: 100%;
  }

  .about-team-section .about-image img {
    width: 100%;
    height: auto;
    border-radius: 40px 0 40px 0;
  }
}
@media (max-width: 768px) {
  .about-vision-section {
    padding: 50px 5%;
    background-position: center top;
  }

  .about-vision-section h2 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .about-principles {
    font-size: 18px;
    margin: 8px 0;
  }

  .about-vision-section p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .about-stats-box {
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
  }

  .about-stat-item {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}


