* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  overflow-y: visible;
}

body {
  background-color: whitesmoke;
  font-family: "Poppins", sans-serif;
  
}
.home {
    background-image: linear-gradient(to right, #411C8E, #CB6CE6);
    background-size: cover;
    border-bottom-left-radius: 10%;
    border-bottom-right-radius: 20%;
    padding-bottom: 0.5rem;
    padding-top: 8rem;
}
header{
    padding-top: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-image: linear-gradient(to right, #411C8E, #CB6CE6);
  }
#logo{
    height:55px;
    width:200px;
}
.hover-underline {
  font-size: 2rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.hover-underline::after,
.hover-underline::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #411C8E, #CB6CE6);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.hover-underline::before {
  top: -5px;
  transform-origin: left;
}

.hover-underline:hover::after,
.hover-underline:hover::before {
  transform: scaleX(1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 1rem 0;
  position: relative;
}

.navitems {
  display: flex;
  margin-left: auto;
}

.navitems a {
  margin-right: 3rem;
  font-weight: 400;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s, box-shadow 0.18s;
  gap: 2;
}

.navitems a:hover {

  text-decoration: none;
}
.navitems a.active {
  font-weight: 700;
  padding-bottom: 0.2em;
}
.navitems button {
  background-color: white;
  color: #cb6ce6;
  border-radius: 1rem;
  height: 3rem;
  padding: 0.8rem 1.5rem;
  border: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background-color 0.3s;
}

.navitems button:hover {
  background-color: #f0f0f0;
}

.btn-light {
  background-color: white;
  color: #cb6ce6;
  border-radius: 1rem;
  height: 2.5rem;
  padding: 1rem 1rem;
  font-size: 1rem;
  margin-left: 1rem;
  border: none;
}
.contactus-button{
    background-color: white;
    color: #cb6ce6;
    border-radius: 1rem;
    height: 2.5rem;
    font-size: 0.9rem;
    border: none;
    width:10rem;
    margin-right: 1rem;
    font-weight: 500;
}
/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 2rem;
}


/* Mobile Responsive */
@media (max-width: 767px) {
  
  header{
    padding-top: 0rem;
  }  
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  #logo{
    height: 40px;
    width:150px;
  }
  
  .hamburger {
    display: block;
  }

  .navitems {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 2rem;
    margin-left: 1rem;
  }

  .navitems.show {
    display: flex;
  }

  .navitems a {
    margin: 0.5rem 0;
    font-size: 1rem;
  }

  .navitems button {
    align-self: flex-start;
    margin-top: 1rem;
  }
  .home {
    background-image: linear-gradient(to right, #411C8E, #CB6CE6);
    background-size: cover;
    border-bottom-left-radius: 0%;
    border-bottom-right-radius: 25%;
    padding-bottom: 1rem;
}
  .glass-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 25px rgba(203, 108, 230, 0.4);
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 9999;
  }

  .glass-sidebar.show {
    transform: translateX(0);
  }

  .glass-sidebar a {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
  }

  .glass-sidebar a:hover {
    color: #cb6ce6;
    text-shadow: 0 0 5px #cb6ce6;
  }

  .glass-sidebar button {
    margin-top: 2rem;
    padding: 0.6rem 1.2rem;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .glass-sidebar button:hover {
    background: white;
    color: #cb6ce6;
    box-shadow: 0 0 10px #cb6ce6;
  }

  body {
    overflow-x: hidden; 
  }

}


@media (min-width: 768px) and (max-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    flex-wrap: nowrap;
  }

  #logo {
    height: 40px;
    width: 150px;
  }

  .navitems {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.2rem; 
    overflow: hidden;
  }

  .navitems a {
    font-weight: normal;
    color: white;
    text-decoration: none;
    font-size: 0.8rem; 
    margin-right: 0; 
    white-space: nowrap; 
    padding-top: 1rem;
  }

  .navitems a:hover {
    text-decoration: underline;
  }

  .navitems button {
    background-color: white;
    color: #cb6ce6;
    border-radius: 1rem;
    height: 3rem;
    border: none;
    font-weight: 500;
    transition: background-color 0.3s;
    font-size: 0.65rem;
    padding: 0.3rem 1rem;
  }

  .navitems button:hover {
    background-color: #f0f0f0;
  }

  .hamburger {
    display: none !important; 
  }
  .contactus-button{
    margin-right:0.4rem;
  }
}


/*HERO SECTION*/

#hero-section{
    padding-top: 2rem;
}
.home-image {
    display: flex;
    justify-content: end;
    align-items: end;
}
#hero-section p{
        text-align:left; 
        width: 25rem; 
        color:rgb(255, 255, 255);
        opacity: 0.8;
        font-size: 1.2rem;
        font-family:Raleway;
}
.hero-heading{
    font-weight:normal;
    font-size: 2.8rem; 
    color:#cb6ce6; 
    opacity: 0.7;
}
.changing-text{
    font-weight:bold; 
    font-size: 5.2rem; 
    color:#cb6ce6; 
    opacity: 0.8;
}
.track-vertical {
    position: relative;
    height: 150px; /* Adjust height for more spacing */
    overflow: hidden; /* Hides overflowing text */
}

.rotate-text {
    position: absolute;
    width: 100%; /* Ensure text spans full width */
    color: #e1dfdf; /* Text color */
    font-size: 3.1rem; /* Text size */
    opacity: 0; /* Start invisible */
    transform: translateY(100%); /* Start below the view */
    animation: scrollUp 12s infinite; /* Total timing for the animation */
}

/* Animation for the scrolling text */
@keyframes scrollUp {
    0%, 10% {
        opacity: 0; /* Start invisible */
        transform: translateY(100%); /* Start from below */
    }
    15%, 30% {
        opacity: 1; /* Fully visible */
        transform: translateY(0); /* Move into view */
    }
    35% {
        opacity: 1; /* Keep visible */
        transform: translateY(0); /* Stay in place */
    }
    40% {
        opacity: 0; /* Fade out */
        transform: translateY(-100%); /* Move out of view */
    }
    100% {
        opacity: 0; /* Ensure it stays invisible until the next cycle */
        transform: translateY(-100%); /* Stay out of view */
    }
}

/* Individual animation delays for better spacing */
.rotate-text._1 { animation-delay: 0s; }   /* "Success" */
.rotate-text._2 { animation-delay: 3s; }   /* "Reliability" */
.rotate-text._3 { animation-delay: 6s; }   /* "Commitment" */
.rotate-text._4 { animation-delay: 9s; }   /* "Excellence" */

@media (max-width: 767px){
      #hero-section{
      padding-top: 0rem;
  }
    .hero-heading{
        font-size: 1.8rem;
        text-align: left; 
    }
    .rotate-text {
        text-align: left;
        position: absolute;
        width: 100%; /* Ensure text spans full width */
        color: #d8d3d3; /* Text color */
        font-size: 1.5rem; /* Text size */
        opacity: 0; /* Start invisible */
        transform: translateY(100%); /* Start below the view */
        animation: scrollUp 12s infinite; /* Total timing for the animation */
        text-align: left;
    }
    .home-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      margin-top: 1rem;
    }
    .track-vertical {
      height: 65px; /* Adjust height for more spacing */
    }

    #hero-section p {
    text-align: left;
    width: 100%;
    color: white;
    opacity: 0.9;
    font-size: 0.9rem;
    white-space: normal;  /* Let it wrap */
    margin-top: 1rem;
    line-height: 1.6;
}

   #navItems.show {
      pointer-events: auto;

      /* Glass effect */
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);

      /* Box styling */
      padding: 1.5rem;
      width: 90%;
      max-width: 400px;
      margin: 2rem auto;
      border-radius: 20px;

      
    }



}

@media (min-width: 768px) and (max-width: 1024px){
    .hero-heading{
        font-size: 2rem; 
    }
    .rotate-text {
        position: absolute;
        width: 100%; /* Ensure text spans full width */
        color: #cb6ce6; /* Text color */
        font-size: 3rem; /* Text size */
        opacity: 0; /* Start invisible */
        transform: translateY(100%); /* Start below the view */
        animation: scrollUp 12s infinite; /* Total timing for the animation */
    }
    .home-image{
        width: 100%;
        height: 100%;
    }
}

/* Responsive adjustments */
.custom-card {
  position: relative;
  background-color: #f1f0fe;
  border: none;
  border-radius: 25px;
  padding-top: 80px;
  padding-bottom: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 130px;
  height: 130px;
  background-image: linear-gradient(to right, #411C8E, #CB6CE6);
  border-radius: 50%;
  position: absolute;
  top: -65px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.card-icon img {
  max-width: 70px;
  transition: transform 0.3s ease-in-out;
}

.custom-card:hover .card-icon img {
  transform: translateY(-10px);
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.card-description {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .card-icon {
    width: 100px;
    height: 100px;
    top: -50px;
    right: 20px;
  }

  .card-icon img {
    max-width: 50px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-description {
    font-size: 14px;
  }
}




.aboutus-smart {
  background: linear-gradient(124deg, #f4f2ff 75%, #efeafe 100%) fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.aboutus-card {
  border-radius: 38px;
  background: rgba(252,250,255,0.97);
  box-shadow: 0 30px 80px #b5a5ef18, 0 2px 12px #7a6ad87a;
  margin: 0 auto;
  position: relative;
  max-width: 1160px;
  padding: 2.9rem 2.2rem 2.6rem 2.2rem;
  z-index: 1;
}
.aboutus-heading-giant span {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg,#7a6ad8 35%,#cb6ce6 65%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing:1.4px;
  display: inline-block;
  filter: drop-shadow(0 6px 25px #b8a8fb55);
  animation: aboutGiAnt 1.3s cubic-bezier(.4,1.3,.52,1) both;
}
@keyframes aboutGiAnt {
  0%{opacity:0;transform:translateY(80px) scale(.7);}
  80%{opacity:1;transform:translateY(-5px) scale(1.09);}
  100%{opacity:1;transform:none;}
}
.aboutus-mission-lead {
  font-size: 1.21rem;
  color: #452878;
  background: linear-gradient(94deg,#f4e9fa 60%,#eae3fe 100%);
  border-radius: 17px;
  padding: 1.3rem 1.6rem;
  box-shadow: 0 3px 15px #cb6ce618;
  font-weight: 500;
}
.aboutus-highlight { color: #cb6ce6; font-weight: 700; text-shadow: 0 1.5px 6px #cb6ce638; }
.ai-flash {
  color: #cb6ce6;
  filter: drop-shadow(0 0 11px #cb6ce6cc);
  margin-right: 0.9em;
  animation: glowAi 1.7s infinite alternate;
}
@keyframes glowAi {to { filter: drop-shadow(0 0 24px #cb6ce6dd); }}
.aboutus-services { margin-top: 3.2rem;}
.aboutus-service-card {
  background: #f7f4fd;
  border-radius: 21px;
  box-shadow: 0 2px 12px #e3dcfa29;
  padding: 1.15rem 1rem 1.1rem 1.1rem;
  margin-bottom: 18px;
  border: 1.1px solid #e5e4fa;
  transition: box-shadow .15s, border-color .12s, transform .18s;
  position: relative;
  animation: fadeUpCard .95s cubic-bezier(.4,1.3,.52,1) 0.4s both;
}
.aboutus-service-card:hover {
  box-shadow: 0 10px 34px #cb6ce648;
  border-color: #cb6ce6;
  transform: translateY(-3px) scale(1.025);
}
@keyframes fadeUpCard {0%{opacity:0;transform:translateY(55px) scale(.9);}100%{opacity:1;transform:none;}}
.aboutus-service-header {
  font-weight: 700;
  color: #7a6ad8;
  margin-bottom: 3px;
  font-size: 1.13rem;
  background: linear-gradient(91deg,#ede6fa 75%,#cb6ce6 100%);
  border-radius: 1.12rem;
  display: inline-block;
  padding: .4em 1em .4em .7em;
  letter-spacing: .1px;
  box-shadow: 0 2px 8px #cb6ce618;
}
.aboutus-service-card ul {
  list-style: none;
  margin: 0; padding: 0;
}
.aboutus-service-card ul li {
  color: #563495;
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.55em;
  margin-bottom: .51em;
  transition: color .13s;
  letter-spacing: 0.03em;
}
.aboutus-service-card ul li i {color: #cb6ce6;}
.aboutus-service-card:hover ul li {color: #411c8e;}
.aboutus-values-box {
  background: linear-gradient(99deg,#e5defe 70%,#f3eafd 96%);
  border-radius: 12px;
  padding: 1.1rem 1.45rem;
  box-shadow: 0 0.5px 18px #cb6ce623;
  max-width:580px;
}
.aboutus-value-label {
  font-weight: 700;
  color: #411c8e;
  font-size: 1.15rem;
  margin-bottom: 0.35em;
}
.aboutus-value-list {
  list-style: disc inside;
  padding-left: 0.7em;
  color: #633db4;
  margin: 0; font-size: 1.06rem;
}
.aboutus-value-list li {margin-bottom: .37em;}
.aboutus-cta-btn {
  display:inline-block;background:linear-gradient(90deg,#7a6ad8 40%,#cb6ce6 93%);
  color: white; font-weight: 600; border-radius: 1.8rem; padding: .7em 2.3em;
  font-size: 1.18rem; box-shadow: 0 0.6px 10px #7a6ad877;
  text-decoration:none; transition: background .14s, box-shadow .14s, transform .1s;
}
.aboutus-cta-btn:hover {
  background:linear-gradient(90deg,#cb6ce6 60%,#7a6ad8 100%);
  color:white; box-shadow:0 8px 24px #cb6ce648; transform:scale(1.04);
}

.aboutus-bg-ai .bg-ai-blob1,
.aboutus-bg-ai .bg-ai-blob2 {
  position: absolute; border-radius: 50%; z-index: 0; pointer-events: none; opacity: .13;
}
.bg-ai-blob1 { top:-11%; left:-5%; width: 200px; height:200px; background: radial-gradient(circle,#cb6ce6 60%, #fff0 100%); animation: blobfloat1 9s infinite cubic-bezier(.45,.14,.53,1);}
.bg-ai-blob2 { bottom:-11%; right:-5%; width: 180px; height:180px; background: radial-gradient(circle,#411c8e 60%, #fff0 100%); animation: blobfloat2 7s infinite cubic-bezier(.45,.23,.58,1);}
@keyframes blobfloat1 {50%{transform:translateY(-28px) scale(1.04);opacity:.16;}}
@keyframes blobfloat2 {50%{transform:translateY(37px) scale(1.11);opacity:.18;}}

@media (max-width:768px){
  .aboutus-card {padding: 1rem 0.2rem 1.5rem 0.2rem;}
  .aboutus-heading-giant span {font-size:2.1rem;}
  .aboutus-service-card {padding:0.7rem 0.5rem;}
  .aboutus-values-box{padding:.7rem .6rem;}
}






:root {
    /* Original color palette */
    --primary-purple: #7a6ad8;
    --secondary-purple: #cb6ce6;
    --dark-purple: #411C8E;
    --soft-purple-bg: #f6f0ff;
    --light-purple-bg: #ede6fb;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #333; /* For general text, better contrast */
    --text-muted: #666; /* For less prominent text */

    /* General UI elements */
    --shadow-light: rgba(203, 180, 243, 0.43);
    --shadow-medium: rgba(159, 133, 230, 0.2);
    --shadow-strong: rgba(122, 106, 216, 0.3);
    --border-radius-lg: 36px; /* From original aboutus-xp */
    --border-radius-md: 20px;
    --border-radius-sm: 15px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background-color: #f8f9fa; /* Consistent subtle background */
    color: var(--text-dark); 
    line-height: 1.6;
}

/* --- Section Styling --- */
.aboutus-xp {
    background: linear-gradient(120deg, var(--soft-purple-bg) 40%, #e7e5f8 100%); /* Original background */
    border-radius: var(--border-radius-lg);
    box-shadow: 0 18px 46px var(--shadow-medium), 0 1.5px 12px var(--shadow-light); /* Original shadows */
    margin: 48px auto; /* Consistent margin */
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1; 
}

/* Background pattern */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(122,106,216,0.05) 0%, transparent 50%), /* primary-purple with opacity */
        radial-gradient(circle at 90% 80%, rgba(203,108,230,0.05) 0%, transparent 50%); /* secondary-purple with opacity */
    background-size: 600px 600px, 800px 800px;
    animation: movePattern 20s linear infinite alternate;
    z-index: -1; /* Keep behind main content */
    opacity: 0.6;
}

@keyframes movePattern {
    0% { background-position: 0% 0%, 100% 100%; }
    100% { background-position: 100% 100%, 0% 0%; }
}

/* About Intro Section */
.about-intro {
    opacity: 1; 
    transform: translateY(0); 
    position: relative; 
    z-index: 2; 
}

#mainAboutUsHeading {
    font-size: 4.5rem; 
    line-height: 1.1;
    font-weight: 800; 
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: inline-block; 
    z-index: 3; 
    color: var(--text-dark); 
}

.fancy-gradient-heading {
    background: linear-gradient(90deg, var(--dark-purple) 20%, var(--secondary-purple) 80%); 
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
    text-shadow: 0 5px 15px rgba(203, 108, 230, 0.3); 
}

#companyDescription {
    color: var(--text-dark);
    max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
    z-index: 3; 
}

/* Styling for the mission statement */
.mission-statement-styled {
    font-size: 2.8rem; 
    font-weight: 900; 
    background: linear-gradient(90deg, var(--primary-purple) 30%, var(--dark-purple) 70%); 
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
    text-shadow: 0 0 10px rgba(122, 106, 216, 0.5); 
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-top: 3rem; 
    margin-bottom: 3rem; 
    z-index: 3; 
}

.text-dark-purple { 
    color: var(--dark-purple);
}

.scoreboard {
    background: var(--light-purple-bg); 
    border-radius: var(--border-radius-md); 
    padding: 1.5rem 2.5rem;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--shadow-light); 
    color: var(--dark-purple); 
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.scoreboard.glow-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(122,106,216,0.1) 0%, transparent 70%); /* primary-purple glow */
    animation: rotateGlow 8s linear infinite;
    z-index: -1;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.score-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.score-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-purple); /* Accent color for values */
    text-shadow: 0 0 10px rgba(203,108,230,0.4); /* Glow matching secondary purple */
    min-width: 60px;
}

.score-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-purple); /* Label color */
    margin-top: 5px;
}

.divider-line {
    border-color: rgba(122, 106, 216, 0.3); /* Based on primary-purple */
    border-width: 2px;
    opacity: 0.7;
    margin-top: 60px;
    margin-bottom: 60px;
}

/* Benefits Section */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--dark-purple), var(--secondary-purple)); /* Darker to lighter purple gradient */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 50px;
    text-shadow: 0 3px 10px rgba(203, 108, 230, 0.2);
}

.benefits-grid .benefit-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    min-height: 280px;
    padding: 2.5rem 1.8rem;
    cursor: default; 
    position: relative;
    transition: all .3s ease-in-out;
    box-shadow: 0 10px 30px var(--shadow-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(122, 106, 216, 0.1); /* Subtle border from primary-purple */
}

.benefits-grid .benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-strong);
    border-color: var(--primary-purple); /* Border highlights on hover */
}

.card-icon {
    font-size: 3.5rem;
    color: var(--primary-purple); /* Primary color for icons */
    margin-bottom: 1.2rem;
    transition: transform 0.4s ease-out;
    filter: drop-shadow(0 5px 10px rgba(122, 106, 216, 0.2)); /* Shadow from primary-purple */
}

.benefit-card:hover .card-icon {
    transform: rotateY(360deg) scale(1.05);
}

.benefit-card h5 {
    font-weight: 700;
    color: var(--dark-purple); /* Dark purple for headings */
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.benefit-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    flex-grow: 1;
}



#detailModal .modal-content {
    background: var(--light-purple-bg); /* Light purple background for modal */
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    color: var(--text-dark);
}
#detailModal .modal-header {
    border-bottom: none;
    padding: 2rem 2.5rem 0;
}
#detailModal .modal-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--dark-purple), var(--secondary-purple)); /* Match section title gradient */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-purple); /* Underline from primary-purple */
    display: inline-block;
}
#detailModal .modal-body {
    padding: 0 2.5rem 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}
#detailModal .modal-body h6 {
    font-weight: 700;
    color: var(--dark-purple); /* Dark purple for subheadings */
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
#detailModal .modal-body ul {
    list-style: none;
    padding-left: 0;
}
#detailModal .modal-body ul li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
}
#detailModal .modal-body ul li i {
    color: var(--primary-purple); /* Icons from primary-purple */
    margin-right: 0.8rem;
    font-size: 1.2rem;
    margin-top: 4px;
}

.modal-footer {
    border-top: none;
    padding: 1.5rem 2.5rem;
}

.close-modal-btn {
    background: var(--dark-purple); /* Dark purple for close button */
    color: white;
    border-radius: var(--border-radius-sm);
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: background 0.3s ease;
}
.close-modal-btn:hover {
    background: var(--primary-purple); /* Primary purple on hover */
    color: white;
}

/* Sticky Call to Action */
.sticky-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1050;
    background: linear-gradient(45deg, var(--secondary-purple), var(--dark-purple)); /* Based on existing gradient */
    color: white;
    padding: 18px 30px;
    border-radius: 35px;
    box-shadow: 0 10px 30px rgba(203, 108, 230, 0.4); /* Shadow from secondary-purple */
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease-in-out;
    transform: translateX(150%);
    font-size: 1.1rem;
}
.sticky-cta:hover {
    transform: scale(1.05) translateX(0);
    box-shadow: 0 15px 40px rgba(203, 108, 230, 0.6);
    color: white;
    background: linear-gradient(45deg, var(--dark-purple), var(--primary-purple)); /* Slight gradient shift on hover */
}
.sticky-cta i {
    animation: bounceEffect 1.5s infinite;
}
@keyframes bounceEffect {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}


/* Mouse Trail Effect */
#mouse-trail-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998; /* Just below main content, above background pattern */
    overflow: hidden;
}

.mouse-sparkle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, var(--secondary-purple) 40%, transparent 80%); /* Sparkle from secondary-purple */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    filter: blur(2px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .aboutus-xp {
        padding: 3rem 1.5rem;
    }
    #mainAboutUsHeading {
        font-size: 3.5rem;
    }
    #companyDescription {
        font-size: 1.15rem;
    }
    .mission-statement-styled {
        font-size: 2.2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .scoreboard {
        gap: 15px;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        flex-wrap: wrap; /* Allow wrapping */
    }
    .score-value {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .benefit-card {
        min-height: 250px;
        padding: 2rem 1.5rem;
    }
    .card-icon {
        font-size: 3rem;
    }
    .benefit-card h5 {
        font-size: 1.3rem;
    }
    #detailModal .modal-title {
        font-size: 2rem;
    }
    #detailModal .modal-body {
        font-size: 1rem;
    }
    .sticky-cta {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .aboutus-xp {
        padding: 2rem 1rem;
        margin: 20px auto;
    }
    .about-intro {
        text-align: center;
    }
    #mainAboutUsHeading {
        font-size: 2.8rem;
    }
    #companyDescription {
        font-size: 1rem;
        text-align: center;
    }
    .mission-statement-styled {
        font-size: 1.8rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .scoreboard {
        flex-direction: column;
        width: 100%;
        padding: 1.2rem 1rem;
        gap: 10px;
        border-radius: 15px;
    }
    .score-item {
        width: 100%; 
    }
    .score-value {
        font-size: 2.2rem;
    }
    .score-label {
        font-size: 0.85rem;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .benefits-grid .col-md-6 {
        margin-bottom: 1.5rem;
    }
    .benefit-card {
        min-height: 200px;
        padding: 2rem 1.2rem;
    }
    .card-icon {
        font-size: 3rem;
    }
    .benefit-card h5 {
        font-size: 1.4rem;
    }
    .sticky-cta {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
    #detailModal .modal-title {
        font-size: 1.8rem;
    }
    #detailModal .modal-body {
        font-size: 0.95rem;
        padding: 0 1.5rem 1.5rem;
    }
    #detailModal .modal-body h6 {
        font-size: 1.2rem;
    }
    #detailModal .modal-body ul li i {
        font-size: 1rem;
    }
}







.testimonials-section {
  background: linear-gradient(111deg, #f7f3ff 60%, #ede7fa 100%);
  position: relative;
  z-index: 0;
}

.testimonials-heading span {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #7a6ad8 30%, #cb6ce6 60%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 6px 25px #b8a8fb33);
  letter-spacing: .05em;
}

.testimonial-flip-card {
  perspective: 1250px;
  min-height: 280px;
  max-width: 320px;
  border-radius: 1.7rem;
  box-shadow: 0 10px 36px #cb6ce615, 0 1px 5px #ae9de523;
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: box-shadow .18s;
  outline: none;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.testimonial-flip-card:focus {
  box-shadow: 0 0 0 4px #cb6ce662;
}

.flip-inner {
  width: 100%;
  min-height: 280px;
  transition: transform 0.61s cubic-bezier(.54,1.55,.61,.99);
  transform-style: preserve-3d;
  position: relative;
  z-index: 1;
  border-radius: inherit;
  background: none;
  height: 100%;
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1.8rem 1rem 1rem 1rem;
  background: #fff;
  box-sizing: border-box;
}

.flip-front {
  z-index: 3;
}

.flip-back {
  transform: rotateY(180deg);
  justify-content: center;
  background: linear-gradient(100deg, #ede6fa 90%, #cb6ce6 100%);
  box-shadow: 0 8px 28px #cb6ce63a inset;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 6px 22px #cbb4f34c;
  border: 4px solid #fff;
  overflow: hidden;
  margin-bottom: 0.7rem;
  margin-top: -2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(115deg, #cb6ce621 60%, #7a6ad844 100%);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #401c8d;
  margin-bottom: 0.14rem;
  letter-spacing: 0.025em;
  text-align: center;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #7a6ad8;
  opacity: 0.74;
  font-weight: 500;
  margin-bottom: 0.25rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.testimonial-quote {
  font-size: 1rem;
  font-weight: 500;
  color: #46265e;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 1.5px 10px #cb6ce62a;
  padding: 0 10px;
}

@media (max-width: 440px) {
  .flip-front,
  .flip-back {
    padding: 1.4rem 0.37rem 1rem 0.37rem;
  }
  .testimonial-avatar {
    width: 65px;
    height: 65px;
  }
  .testimonial-flip-card {
    min-height: 220px;
    max-width: 98vw;
  }
}


/* =================================== */
/* CONTACT (LET'S BUILD) SECTION      */
/* =================================== */

/* --- Contact Section Styles --- */
.letconfidex {
  background: linear-gradient(120deg, #f8f7ff 75%, #e7e6fa 100%);
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 0;
}
.letconfidex .container {
  background: rgba(255,255,255,0.95);
  border-radius: 36px;
  box-shadow: 0 18px 46px #cbb4f232, 0 1.5px 12px #7a6ad822;
  padding: 3rem 2.2rem 2.2rem 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.letconfideximage {
  max-width: 330px;
  width: 100%;
  border-radius: 2.2rem;
  box-shadow: 0 12px 34px #b8a8fb42, 0 1.5px 10px #7a6ad82c;
  object-fit: contain;
  margin-bottom: 2rem;
  background: #f3f1fd;
  animation: fadeInUp 1.5s cubic-bezier(.45,1.4,.52,1) 0.2s both;
}
@media (max-width: 767px) {
  .letconfidex .container { padding: 1.25rem 0.2rem; }
  .letconfideximage {max-width: 220px;}
}
.gradient-text {
  background: linear-gradient(90deg,#7a6ad8 28%,#cb6ce6 78%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing:1.2px;
  display: inline-block;
  filter: drop-shadow(0 7px 30px #cbb4f271);
  margin-bottom: 7px;
  animation: fadeInRight 1.1s cubic-bezier(.42,1.4,.52,1) 0.15s both;
}
@media (max-width: 767px) {.gradient-text{font-size: 1.55rem;}}
.contact-heading { margin-bottom: 8px; }
.contact-subheading {
  color: #855cc2 !important;
  font-weight: 500;
  font-size: 1.12rem;
  margin-bottom: 22px;
  animation: fadeInRight 1.45s cubic-bezier(.45,1.2,.59,1) 0.22s both;
}
.letconfidex form {
  background: #f9f8ffcc;
  border-radius: 20px;
  box-shadow: 0 5px 27px #cbb4f218;
  padding: 2.2rem 1.3rem 1.5rem 1.3rem;
  animation: fadeInUp 1.5s cubic-bezier(.45,1.34,.52,1) 0.18s both;
}
.letconfidex .form-label {
  color: #7a6ad8;
  font-size: 1.09rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.letconfidex .form-select,
.letconfidex .form-control {
  border-radius: 1.2rem;
  border: 1.1px solid #e7defa;
  min-height: 45px;
  font-size: 1.08rem;
  background: #fcfbffb2;
  transition: border-color .13s, box-shadow .14s;
  box-shadow: 0 1.2px 8px #ae9de533;
}
.letconfidex .form-select:focus,
.letconfidex .form-control:focus {
  border-color: #cb6ce6;
  box-shadow: 0 0 7px #cb6ce63a;
  background: #fff;
}
.gradientbutton,
.contact-submit-btn {
  background: linear-gradient(90deg,#cb6ce6 40%, #7a6ad8 93%);
  color: #fff !important;
  font-weight: 700;
  border-radius: 1.7rem;
  padding: .65em 2.2em;
  font-size: 1.19rem;
  box-shadow: 0 2px 16px #cb6ce659;
  border: none;
  letter-spacing: .07em;
  transition: background .15s, box-shadow .14s, transform .1s;
}
.gradientbutton:hover,
.contact-submit-btn:hover {
  background: linear-gradient(90deg,#7a6ad8 60%, #cb6ce6 100%);
  color: #fff !important;
  box-shadow: 0 10px 30px #cb6ce652;
  transform: scale(1.04);
}
.accounting-note-text {
  font-size: 0.99rem;
  color: #7565a1 !important;
  background: #f7f4fe!important;
  border-radius: 11px;
  padding: .39rem .85rem;
  margin-top: 0.7em;
  box-shadow: 0 1.2px 4px #cb6ce619;
  display: inline-block;
}
#formResponseMessage {
  font-size: 1.08rem;
  color: #7a6ad8;
  font-weight: 600;
  min-height: 24px;
  margin-top: .8em;
}
.reveal-left { animation: fadeInLeft 0.95s cubic-bezier(.52,1.45,.62,1) 0.12s both;}
.reveal-right { animation: fadeInRight 1.1s cubic-bezier(.42,1.4,.52,1) 0.22s both;}
/* Animations */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(55px);}
  to { opacity:1; transform:none;}
}
@keyframes fadeInRight {
  from { opacity:0; transform:translateX(70px);}
  to { opacity:1; transform:none;}
}
@keyframes fadeInLeft {
  from { opacity:0; transform:translateX(-70px);}
  to { opacity:1; transform:none;}
}


/* =================================== */
/* FOOTER                            */
/* =================================== */
.endbackground {
    background-image: linear-gradient(to right, #411C8E, #CB6CE6);
}
