 body {
      font-family: 'Poppins', sans-serif;
      background: #f8fbff;
    }

    /* NAVBAR GRADIENT */
    .custom-navbar {
      /*background: linear-gradient(90deg, #7b2ff7, #a044ff);*/
      background: #fff;
      padding: 12px 0;
    }

    /* LOGO TEXT */
    .navbar-brand {
      font-weight: 700;
      /*color: #fff !important;*/
      color: #7b2ff7 !important;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .navbar-brand span {
      font-size: 14px;
      line-height: 1.2;
    }

    /* NAV LINKS */
    .navbar-nav .nav-link {
      /*color: #fff !important;*/
      color: #153243 !important;
      font-weight: 500;
      margin-left: 20px;
      transition: 0.3s;
    }

    .navbar-nav .nav-link:hover {
      opacity: 0.8;
    }
/* ACTIVE LINK */
.navbar-nav .nav-link.active {
      font-weight: 600;
      border-bottom: 2px solid #153243;
    }

    /* MOBILE TOGGLER */
    .navbar-toggler {
      border: none;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    .navbar-toggler-icon {
      filter: invert(1);
    }
 /* HERO SLIDER */
    .hero-slider {
      position: relative;
    }

    #carousel-item-slider .carousel-item {
      height: 90vh;
      min-height: 500px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    /* OVERLAY */
    #carousel-item-slider .carousel-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(123,47,247,0.7), rgba(160,68,255,0.7));
      z-index: 1;
    }

    /* CONTENT */
    .carousel-caption {
      z-index: 2;
      bottom: 50%;
      transform: translateY(50%);
      text-align: left;
      max-width: 600px;
    }

    .carousel-caption h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .carousel-caption p {
      font-size: 1.1rem;
      margin: 15px 0;
    }

    /* BUTTONS */
    .btn-primary {
      background-color: #fff;
      color: #7b2ff7;
      border: none;
      border-radius: 30px;
      padding: 12px 28px;
      font-weight: 600;
    }

    .btn-primary:hover {
      background-color: #f1f1f1;
    }

    .btn-outline-light {
      border-radius: 30px;
      padding: 12px 28px;
      font-weight: 500;
    }

    /* INDICATORS */
    .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .carousel-caption {
        text-align: center;
        left: 50%;
        transform: translate(-50%, 50%);
      }

      .carousel-caption h1 {
        font-size: 2rem;
      }
    }
    /* themes Button */
    .th_button{
      background-image : linear-gradient(180deg, #8e00fe 0%, #143cf7e0 100%);
      color : #fff;
      padding : 7px 25px;
    }
    .th_button:hover{       
      background-image : linear-gradient(180deg, #F5C457 0%, #F58C07 100%);
      color : #fff;
    }

    .btn-outline-light {       
      padding: 12px 14px;      
    }
/* Grid section 1 */
.Grid_1, .section_{
  padding-top: 80px;
  padding-bottom: 80px;
}
/* services */
    /*.services {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-weight: 700;
      color: #1a2b49;
    }

    .section-title p {
      color: #6c7a92;
    }

    /* GLASS CARD * /
    .service-card {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(0,0,0,0.05);
      height: 100%;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(123,47,247,0.15);
    }

    .service-icon {
      font-size: 40px;
      color: #7b2ff7;
      margin-bottom: 15px;
    }

    .service-card h5 {
      font-weight: 600;
      color: #1a2b49;
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: 0.95rem;
      color: #6c7a92;
    }

    .service-link {
      display: inline-block;
      margin-top: 10px;
      font-weight: 500;
      color: #7b2ff7;
      text-decoration: none;
    }

    .service-link:hover {
      text-decoration: underline;
    }*/

    /* PROCESS SECTION  */

    .process {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-weight: 700;
      color: #1a2b49;
    }

    .section-title p {
      color: #6c7a92;
    }

    /* TIMELINE LINE */
    .timeline {
      position: relative;
    }

    .timeline::before {
      content: "";
      position: absolute;
      top: 50px;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #7b2ff7, #a044ff);
      z-index: 0;
    }

    /* STEP CARD */
    .step {
      position: relative;
      text-align: center;
      padding: 20px;
      z-index: 1;
    }

    .step-card {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.05);
      transition: 0.3s;
      height: 100%;
    }

    .step-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(123,47,247,0.15);
    }

    /* STEP NUMBER CIRCLE */
    .step-number {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #7b2ff7, #a044ff);
      color: #fff;
      font-weight: 600;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      font-size: 20px;
      box-shadow: 0 5px 15px rgba(123,47,247,0.3);
    }

    .step-icon {
      font-size: 30px;
      color: #7b2ff7;
      margin-bottom: 10px;
    }

    .step-card h5 {
      font-weight: 600;
      color: #1a2b49;
      margin-bottom: 10px;
    }

    .step-card p {
      font-size: 0.95rem;
      color: #6c7a92;
    }

    /* MOBILE FIX */
    @media (max-width: 768px) {
      .timeline::before {
        display: none;
      }
    }

    /* INDUSTRIES SECTION */
    .industries {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-weight: 700;
      color: #1a2b49;
    }

    .section-title p {
      color: #6c7a92;
    }

    /* CARD */
    .industry-card {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      height: 250px;
      cursor: pointer;
    }

    .industry-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    /* OVERLAY */
    .industry-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(123,47,247,0.8));
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
      transition: 0.4s;
    }

    .industry-content {
      color: #fff;
    }

    .industry-icon {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .industry-content h5 {
      font-weight: 600;
      margin-bottom: 5px;
    }

    /* HOVER EFFECT */
    .industry-card:hover img {
      transform: scale(1.1);
    }

    .industry-card:hover .industry-overlay {
      background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(160,68,255,0.9));
    }

    /* OPTIONAL GLASS LABEL */
    .glass-label {
      position: absolute;
      bottom: 15px;
      left: 15px;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(8px);
      padding: 6px 12px;
      border-radius: 10px;
      color: #fff;
      font-size: 0.85rem;
    }

    /* USP SECTION  */

     .usp {
      padding: 80px 0;
      background: linear-gradient(135deg, #eef6ff, #ffffff);
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-weight: 700;
      color: #1a2b49;
    }

    .section-title p {
      color: #6c7a92;
    }

    /* USP CARD */
    .usp-card {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 8px 25px rgba(0,0,0,0.05);
      height: 100%;
    }

    .usp-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(123,47,247,0.15);
    }

    .usp-icon {
      font-size: 40px;
      background: linear-gradient(135deg, #7b2ff7, #a044ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 15px;
    }

    .usp-card h5 {
      font-weight: 600;
      color: #1a2b49;
      margin-bottom: 10px;
    }

    .usp-card p {
      font-size: 0.95rem;
      color: #6c7a92;
    }

    /* COUNTERS */
    .counter-box {
      margin-top: 50px;
      text-align: center;
    }

    .counter {
      font-size: 2.5rem;
      font-weight: 700;
      color: #7b2ff7;
    }

    .counter-label {
      color: #6c7a92;
    }

    /* GLOBAL PRESENCE */

    .global {
      padding: 80px 0;
      position: relative;
      background: linear-gradient(135deg, #eef6ff, #ffffff);
      overflow: hidden;
    }

    /* WORLD MAP BACKGROUND */
    .global::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('https://www.transparenttextures.com/patterns/cubes.png');
      opacity: 0.05;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
      z-index: 1;
    }

    .section-title h2 {
      font-weight: 700;
      color: #1a2b49;
    }

    .section-title p {
      color: #6c7a92;
    }

    /* STATS */
    .global-stats {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
      z-index: 1;
    }

    .stat-box h3 {
      font-weight: 700;
      color: #7b2ff7;
      font-size: 2rem;
    }

    .stat-box p {
      color: #6c7a92;
      margin: 0;
    }

    /* LOCATION CARDS */
    .location-card {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 25px;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 8px 25px rgba(0,0,0,0.05);
      height: 100%;
      position: relative;
      z-index: 1;
    }

    .location-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(123,47,247,0.15);
    }

    .location-icon {
      font-size: 35px;
      color: #7b2ff7;
      margin-bottom: 10px;
    }

    .location-card h5 {
      font-weight: 600;
      color: #1a2b49;
      margin-bottom: 8px;
    }

    .location-card p {
      font-size: 0.9rem;
      color: #6c7a92;
    }

    /* MAP IMAGE */
    .map-img {
      max-width: 100%;
      opacity: 0.15;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 0;
    }

    /* Testimonials / Clients */

     .testimonials {
      padding: 80px 0;
      background: linear-gradient(135deg, #ffffff, #eef6ff);
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-weight: 700;
      color: #1a2b49;
    }

    .section-title p {
      color: #6c7a92;
    }

    /* TESTIMONIAL CARD */
    .testimonial-card {
      /* background: rgba(255,255,255,0.7); */
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0,0,0,0.05);
      transition: 0.3s;
      max-width: 600px;
      margin: auto;
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(123,47,247,0.15);
    }

    .testimonial-img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .stars {
      color: #ffc107;
      margin-bottom: 10px;
    }

    .testimonial-card p {
      font-size: 0.95rem;
      color: #6c7a92;
    }

    .testimonial-card h6 {
      margin-top: 10px;
      font-weight: 600;
      color: #1a2b49;
    }

    .testimonial-card span {
      font-size: 0.85rem;
      color: #8893a5;
    }

    /* CLIENT LOGOS */
    .client-logos {
      margin-top: 50px;
      text-align: center;
    }

    .client-logos img {
      max-height: 40px;
      margin: 15px 25px;
      opacity: 0.6;
      transition: 0.3s;
    }

    .client-logos img:hover {
      opacity: 1;
      transform: scale(1.1);
    }

    /* CAROUSEL CONTROLS */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(0.5);
    }

    /* CTA Section (Lead Conversion) */
    .cta {
      padding: 80px 0;
      background: linear-gradient(135deg, #7b2ff7, #a044ff);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    /* LIGHT PATTERN OVERLAY */
    .cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('https://www.transparenttextures.com/patterns/cubes.png');
      opacity: 0.08;
    }

    .cta-content {
      position: relative;
      z-index: 1;
    }

    .cta h2 {
      font-weight: 700;
      font-size: 2.5rem;
    }

    .cta p {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    /* FORM CARD */
    .cta-form {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(12px);
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .form-control, .form-select {
      border-radius: 10px;
      border: none;
      padding: 12px;
    }

    .form-control:focus, .form-select:focus {
      box-shadow: none;
    }

    .btn-light {
      border-radius: 30px;
      padding: 12px;
      font-weight: 600;
      color: #7b2ff7;
    }

    .btn-light:hover {
      background: #f1f1f1;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .cta h2 {
        font-size: 2rem;
      }
    }

    /* CONTACT SECTION  */

    .contact {
      padding: 80px 0;
      background: linear-gradient(135deg, #ffffff, #eef6ff);
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-weight: 700;
      color: #1a2b49;
    }

    .section-title p {
      color: #6c7a92;
    }

    /* CONTACT INFO CARDS */
    .contact-info {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0,0,0,0.05);
      transition: 0.3s;
      height: 100%;
    }

    .contact-info:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(123,47,247,0.15);
    }

    .contact-icon {
      font-size: 30px;
      color: #7b2ff7;
      margin-bottom: 10px;
    }

    .contact-info h6 {
      font-weight: 600;
      color: #1a2b49;
    }

    .contact-info p {
      font-size: 0.9rem;
      color: #6c7a92;
      margin: 0;
    }

    /* FORM */
    .contact-form {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    }

    .form-control {
      border-radius: 10px;
      padding: 12px;
      border: 1px solid #ddd;
    }

    .form-control:focus {
      box-shadow: none;
      border-color: #7b2ff7;
    }

    .btn-primary {
      background: linear-gradient(90deg, #7b2ff7, #a044ff);
      border: none;
      border-radius: 30px;
      padding: 12px;
      font-weight: 600;
    }

    /* MAP */
    .map-container {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    }

    iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* BLOG SECTION */

     .blog {
      padding: 80px 0;
      background: linear-gradient(135deg, #ffffff, #eef6ff);
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-weight: 700;
      color: #1a2b49;
    }

    .section-title p {
      color: #6c7a92;
    }

    /* BLOG CARD */
    .blog-card {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.05);
      transition: 0.3s;
      height: 100%;
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(123,47,247,0.15);
    }

    .blog-img {
      position: relative;
      overflow: hidden;
    }

    .blog-img img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .blog-card:hover .blog-img img {
      transform: scale(1.1);
    }

    /* CATEGORY BADGE */
    .blog-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: linear-gradient(90deg, #7b2ff7, #a044ff);
      color: #fff;
      padding: 5px 12px;
      font-size: 0.75rem;
      border-radius: 20px;
    }

    .blog-content {
      padding: 20px;
    }

    .blog-content h5 {
      font-weight: 600;
      color: #1a2b49;
      margin-bottom: 10px;
    }

    .blog-content p {
      font-size: 0.9rem;
      color: #6c7a92;
      margin-bottom: 15px;
    }

    .blog-meta {
      font-size: 0.8rem;
      color: #8893a5;
      margin-bottom: 10px;
    }

    .read-more {
      text-decoration: none;
      font-weight: 500;
      color: #7b2ff7;
    }

    .read-more:hover {
      text-decoration: underline;
    }
 /* footerLightCSS STYLES  */
   .footer-light {
  background: linear-gradient(135deg, #ffffff, #eef6ff);
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
}

/* GLASS CARD */
.footer-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.footer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(123,47,247,0.15);
}

/* TEXT */
.footer-card h5 {
  font-weight: 600;
  color: #1a2b49;
  margin-bottom: 15px;
}

.footer-card p {
  font-size: 0.9rem;
  color: #6c7a92;
}

/* LINKS */
.footer-card a {
  display: block;
  color: #6c7a92;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-card a:hover {
  color: #7b2ff7;
  padding-left: 5px;
}

/* SOCIAL */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #7b2ff7;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* NEWSLETTER */
.newsletter input {
  border-radius: 30px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(90deg, #7b2ff7, #a044ff);
  border: none;
  border-radius: 30px;
  font-weight: 600;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #8893a5;
  margin: 0;
}

    /* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #7b2ff7, #a044ff);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 999;
  transition: 0.3s;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
}


/*About Us Page */

/* HERO SECTION */
    .about-hero {
      position: relative;
      height: 60vh;
      min-height: 400px;
      background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d') center/cover no-repeat;
      display: flex;
      align-items: center;
      color: #fff;
    }

    /* GRADIENT OVERLAY */
    .about-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(123,47,247,0.85), rgba(160,68,255,0.85));
      z-index: 1;
    }

    .about-content {
      position: relative;
      z-index: 2;
    }

    .about-content h1 {
      font-weight: 700;
      font-size: 2.8rem;
    }

    .about-content p {
      font-size: 1.1rem;
      margin-top: 10px;
      opacity: 0.9;
    }

    /* BREADCRUMB */
    .breadcrumb {
      background: transparent;
      padding: 0;
      margin-top: 15px;
    }

    .breadcrumb-item a {
      color: #fff;
      text-decoration: none;
      opacity: 0.8;
    }

    .breadcrumb-item.active {
      color: #fff;
    }

    .breadcrumb-item + .breadcrumb-item::before {
      color: #fff;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .about-content h1 {
        font-size: 2rem;
      }
    }

/*aboutIntroCSS*/
    .about-intro {
  background: linear-gradient(135deg, #ffffff, #eef6ff);
  font-family: 'Poppins', sans-serif;
}

/* IMAGE */
.about-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.08);
}

/* TEXT */
.about-text h2 {
  font-weight: 700;
  color: #1a2b49;
}

.about-text p {
  color: #6c7a92;
  font-size: 0.95rem;
}

/* FEATURES */
.about-feature {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.about-feature i {
  font-size: 18px;
  color: #7b2ff7;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 500;
}

.about-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(123,47,247,0.2);
}

/* BUTTON */
.btn-primary {
  background: linear-gradient(90deg, #7b2ff7, #a044ff);
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 600;
}

/*MISSION & VISION SECTION*/


.mission-vision {
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  font-family: 'Poppins', sans-serif;
}

/* TITLE */
.mission-vision h2 {
  font-weight: 700;
  color: #1a2b49;
}

.mission-vision p {
  color: #6c7a92;
}

/* CARD */
.mv-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(123,47,247,0.15);
}

/* ICON */
.mv-icon {
  font-size: 40px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #7b2ff7, #a044ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.mv-card h4 {
  font-weight: 600;
  color: #1a2b49;
  margin-bottom: 10px;
}

.mv-card p {
  font-size: 0.95rem;
  color: #6c7a92;
}

/*OUR JOURNEY SECTION*/

.timeline-section {
  background: linear-gradient(135deg, #ffffff, #eef6ff);
  font-family: 'Poppins', sans-serif;
}

/* TITLE */
.timeline-section h2 {
  font-weight: 700;
  color: #1a2b49;
}

.timeline-section p {
  color: #6c7a92;
}

/* TIMELINE BASE */
.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* LINE */
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(#7b2ff7, #a044ff);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

/* ITEM */
.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

/* LEFT */
.timeline-item.left {
  left: 0;
}

/* RIGHT */
.timeline-item.right {
  left: 50%;
}

/* DOT */
.timeline-item::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  right: -9px;
  background: #7b2ff7;
  border-radius: 50%;
  top: 30px;
  z-index: 1;
}

.timeline-item.right::after {
  left: -9px;
}

/* CONTENT CARD */
.timeline-content {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(123,47,247,0.15);
}

/* TEXT */
.timeline-content h5 {
  font-weight: 600;
  color: #7b2ff7;
}

.timeline-content p {
  font-size: 0.9rem;
  color: #6c7a92;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-item::after {
    left: 12px;
  }
}

/*TEAM SECTION*/

.team-section {
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  font-family: 'Poppins', sans-serif;
}

/* TITLE */
.team-section h2 {
  font-weight: 700;
  color: #1a2b49;
}

.team-section p {
  color: #6c7a92;
}

/* CARD */
.team-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(123,47,247,0.15);
}

/* IMAGE */
.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

/* OVERLAY */
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(123,47,247,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

/* SOCIAL ICONS */
.social-icons a {
  color: #fff;
  margin: 0 8px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* CONTENT */
.team-content {
  padding: 15px;
}

.team-content h6 {
  font-weight: 600;
  color: #1a2b49;
  margin: 0;
}

.team-content span {
  font-size: 0.85rem;
  color: #7b2ff7;
}

/*CERTIFICATIONS / ACHIEVEMENTS*/

.certifications {
  background: linear-gradient(135deg, #ffffff, #eef6ff);
  font-family: 'Poppins', sans-serif;
}

/* TITLE */
.certifications h2 {
  font-weight: 700;
  color: #1a2b49;
}

.certifications p {
  color: #6c7a92;
}

/* CARD */
.cert-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
  height: 100%;
}

.cert-card img {
  margin-bottom: 10px;
}

.cert-card h6 {
  font-weight: 600;
  color: #1a2b49;
}

.cert-card p {
  font-size: 0.85rem;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(123,47,247,0.15);
}

/* ACHIEVEMENTS */
.achieve-box h3 {
  font-weight: 700;
  color: #7b2ff7;
}

.achieve-box p {
  margin: 0;
  font-size: 0.9rem;
}
