* {
  font-family: 'Inter', sans-serif;
  /* font-family: 'Urbanist', sans-serif; */
  color: #131A4F;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.nav-link-custom {
  color: #4251C8 !important;
  /* Custom color for inactive */
  transition: color 0.3s ease;
}


.nav-link-custom.active {
  color: #131A4F !important;
  /* active tab color */

}

.hero-section {
  background: url('/assets/images/newlanding/newbackground.png') no-repeat center center;
  background-size: cover;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #4251C8, #131A4F);

  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #131A4F, #4251C8);
  color: #fff;

  transform: translateY(0px);
}

.btn-secondary-custom {
  background-color: #DEE2FF;


  /* Purple Gradient */
  color: #131A4F;
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.btn-secondary-custom:hover {


  color: #131A4F;

  transform: translateY(0px);
}

.Disfont {
  color: #131A4F;

}

.gradient-text {
  background: linear-gradient(135deg, #131A4F, #4251C8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.lead {
  color: #4251C8;
}


/* UNDERLINE */
.brush-text::after {
  content: "";
  background: url('/assets/images/newlanding/underLine.svg') no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -3px;
  /* Adjust based on SVG shape */
  width: 100%;
  height: 15%;
  /* Adjust based on SVG height */
  z-index: 1;
  pointer-events: none;
}


#loopingImage {
  width: 400px;
  /* or use responsive units */
  height: 400px;
  object-fit: contain;
  transition: opacity 0.5s ease-in-out;
}

/* sponsorSection */

.sponsorSection {
  display: flex;
  padding: 80px 0;

  align-items: flex-start;
  gap: 80px;
  overflow: hidden;


  img {
    height: 60px;
  }
}

.scrollWrapper {

  display: flex;
  white-space: nowrap;
  animation: scroll 10s linear infinite;
}

.scrollContent {
  display: flex;
  gap: 16px;
}

.scrollsponsor {
  gap: 48px !important;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}



.section-2 .card {
  height: 500px;
}

@media (max-width: 768px) {
  .section-2 .card {
    height: auto;
  }

  .section-2 img {}
}




/* vectorrevolve */
.man-img {
  width: 450px;
  height: 450px;
  object-fit: contain;
}


.orbit {
  position: absolute;
  top: 21%;
  left: 18%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  z-index: 0;
}

@media (max-width: 768px) {
  .orbit {
    top: 4%;
    left: 39%;

  }

  .vector {
    width: 20px;
    height: 20px;

  }
}





.vector {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  left: 0;
  transform-origin: 150px center;
  animation: rotate 6s linear infinite;
}

.vector img {
  width: 100%;
  height: auto;
}

.vector:nth-child(1) {
  animation-delay: 0s;
}

.vector:nth-child(2) {
  animation-delay: 2s;
}

.vector:nth-child(3) {
  animation-delay: 4s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translateX(100px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(100px) rotate(-360deg);
  }
}


.card-title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  white-space: normal;

}

.card-text {
  font-size: 20px;
  font-weight: 200;
  line-height: 1.2;
  white-space: normal;
  opacity: 0.7;
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
}

/* .bullet-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-top: 5px;
  flex-shrink: 0;
} */

.bullet-text {
  font-size: 19px;
  font-weight: 600;
  color: #131A4F;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
}


.topcardtext {
  font-size: 50px !important;
  background: linear-gradient(135deg, #131A4F, #4251C8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  /* or 'block' if needed */
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.topcardUtext {
  font-size: 20px !important;
}




.tagline-text {
  flex: 1;
  text-align: left;
  display: flex;
  align-items: start;

  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

.custom-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}


.Right-card-title {
  font-size: 30px;
  font-weight: 600;
}

.custom-link {
  color: #101959;
  opacity: 0.7;
  position: relative;
  text-decoration: none;
  display: inline-flex;
  /* makes width shrink to content */
  align-items: center;
  gap: 4px;
  width: fit-content;
  /* ensure underline is only as wide as the link */
}

.custom-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #101959;
  opacity: 0.7;
  border-radius: 2px;
  width: calc(100%);
  /* relative to the link's own width */
}


/* Make row and columns stack nicely on mobile */
@media (max-width: 768px) {

  .section-2 .row.g-0,
  .section-2 .row {
    flex-direction: column !important;
  }

  /* Image full width on small screens */
  .section-2 .col-md-5 img.man-img {
    width: 100%;
    max-width: 250px;
    height: auto;
  }

  /* Center align content on mobile */
  .section-2 .col-md-7 {
    text-align: center !important;
    padding: 20px !important;
  }

  .section-2 .bullet-list {
    text-align: center !important;
    margin: 0 auto;
  }
}

/* Bullet items responsive */
.bullet-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.bullet-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.bullet-text {
  font-size: 14px;
  flex: 1 1 auto;
}

/* ✅ Ensure inner cards wrap properly */
@media (max-width: 992px) {
  .row.row-cols-2.g-3>.col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .row.row-cols-2.g-3>.col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Adjust card sizes for mobile */
  .row.row-cols-2.g-3 .card {
    min-height: auto !important;
    max-height: none !important;
    margin-bottom: 10px;
  }

  /* Center content for mobile */
  .row.row-cols-2.g-3 .card-body {
    text-align: center;
    align-items: center;
  }

  .row.row-cols-2.g-3 .card-body p {
    max-width: 100% !important;
  }
}


.inner-card {
  background-color: #E5E8FF;
  border: none;
  min-height: 240px;
  max-height: 240px;
}

/* On small screens, let them auto-expand */
@media (max-width: 768px) {
  .inner-card {
    min-height: auto !important;
    max-height: none !important;
  }
}


.outer-card {
  height: 580px;
  /* keep fixed height on desktop */
}

/* On small screens, make height auto */
@media (max-width: 768px) {
  .outer-card {
    height: auto !important;
  }
}



.inner-card p {
  max-width: 100%;
  /* allow full width on mobile */
}

@media (max-width: 768px) {
  .inner-card {
    width: 100%;
    min-height: auto;
    max-height: none;
  }
}

/* Section Title */
.custom-projects-title {
  color: #101959;

}

.custom-projects-subtitle {
  color: #101959;
  opacity: 0.7;
}

/* Bordered Button */
.custom-btn-border {
  border: 2px solid #101959;
  color: #101959;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-btn-border:hover {
  background: #101959;
  color: #fff;
}

/* Card Styling */
/* Existing Card Styles */
.custom-project-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Image (80%) */
.custom-project-img {
  flex: 0 0 80%;
  height: 80%;
  overflow: hidden;
}

.custom-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer (20%) */
.custom-project-footer {
  flex: 0 0 20%;
  background: #F5F7FF;
  padding: 12px 15px;
}

.custom-project-footer h6 {
  color: #101959;
}

/* Learn More */
.custom-learn-more {
  color: #101959;
  opacity: 0.7;
  font-weight: 500;
  text-decoration: none;
}

.custom-learn-more img {
  width: 16px;
  opacity: 0.7;
}

/* ------------------------------
   ✅ Slider Wrapper & Scrollable Content
---------------------------------*/

/* Section Title */
.projects-title {
  color: #101959;
}

.projects-subtitle {
  color: #101959;
  opacity: 0.7;
}

/* Button */
.projects-btn-border {
  border: 2px solid #101959;
  color: #101959;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.projects-btn-border:hover {
  background: #101959;
  color: #fff;
}

/* Carousel Wrapper */
.projects-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

/* Scrollable Content */
.projects-carousel {
  display: flex;
  gap: 20px;
  animation: autoSlide 40s linear infinite;
  will-change: transform;
}

@keyframes autoSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Project Card */
.project-card {
  flex: 0 0 300px;
  /* increased from 260px to 300px */
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* For smaller screens */
@media (max-width: 768px) {
  .project-card {
    flex: 0 0 240px;
  }
}

/* Image (80%) */
.project-img {
  flex: 0 0 80%;
  height: 80%;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer (20%) */
.project-footer {
  flex: 0 0 20%;
  background: #F5F7FF;
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  /* stack items vertically */
  align-items: flex-start;
  /* left align */
  justify-content: center;
}

.project-footer h6 {
  color: #101959;
  margin-bottom: 5px;
}


/* Learn More */
.project-learn {
  color: #101959;
  opacity: 0.7;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}

.project-learn img {
  width: 16px;
  opacity: 0.7;
}

/* Arrows */
.projects-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #101959;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.projects-arrow:hover {
  opacity: 1;
}

.projects-arrow.left {
  left: 5px;
}

.projects-arrow.right {
  right: 5px;
}

.project-title {
  color: #101959;
  /* Matches your theme color */
  font-weight: 600;
  /* Semibold */
  font-size: 1rem;
  /* Adjust as needed */
  margin-bottom: 4px;
  /* Spacing under title */
  max-width: 250px;
  /* Set max width */
  white-space: normal;
  /* Allow wrapping */
  word-wrap: break-word;
  /* Break long words if needed */
}

.team-title {
  color: #101959;
  font-size: 2rem;
}

.projects-subtitle {
  color: rgba(16, 25, 89, 0.7);
  font-size: 1rem;
}



/* SECTION4 */

.team-section {}

.projects-title {
  color: #101959;
  font-size: 2rem;
}

.team-subtitle {
  color: rgba(16, 25, 89, 0.7);
  font-size: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.team-card {
  width: 302px;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-svg-wrapper {
  width: 100%;
  transition: filter 0.3s ease-in-out;
}

.team-svg-wrapper:hover {
  filter: drop-shadow(0 0 12px rgba(0, 32, 128, 0.4));
}

.team-text {
  font-size: 16px;
  color: #111;
  font-weight: 600;
  line-height: 1.3;
}

.team-name {
  font-size: 18px;
  font-weight: bold;
}

.team-role {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .team-grid {
    justify-content: center;
  }
}


@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {

  .orbit {
    top: 14%;
    left: 42%;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}



/* SECTION5 */
.ideas-card {
  background-color: #F5F7FF;
  min-height: 400px;
  /* Default fixed height */
  height: 400px;
  display: flex;
}

/* Image Column */
.ideas-img-col {
  background: transparent;
  height: 100%;
}

.ideas-img {
  max-height: 90%;
  object-fit: contain;
}

/* Content Column */
.ideas-content-col {
  height: 100%;
  padding: 40px 30px;
}

.ideas-title {
  color: #101959;
  font-weight: 600;
  font-size: 1.8rem;
}

.ideas-subtitle {
  color: rgba(16, 25, 89, 0.7);
  font-size: 1rem;
  max-width: 90%;
}

.ideas-bullets .bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.bullet-icon {
  width: 18px;
  height: 18px;
}


/* ✅ Responsive Adjustments */
@media (max-width: 992px) {
  .ideas-card {
    height: auto;
    /* allow flexible height on tablets */
    min-height: 350px;
    flex-direction: column;
  }

  .ideas-img-col {
    order: 2;
    /* Image goes below text on small screens */
    padding: 20px 0;
    text-align: center;
  }

  .ideas-content-col {
    order: 1;
    padding: 20px;
    text-align: center;
  }

  .ideas-subtitle {
    max-width: 100%;
  }
}


/* 🚀 Rocket Animation Styles */
.rocket-container {
  position: relative;
  display: inline-block;
  animation: floatRocket 3s ease-in-out infinite;
}

.rocket-man {
  width: 300px;
  display: block;
}

/* .shadow {
  width: 80px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.5), transparent);
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(2px);
  opacity: 0.6;
  animation: shadowPulse 3s ease-in-out infinite;
} */

/* Floating Animation */
@keyframes floatRocket {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Shadow Scaling Animation */
@keyframes shadowPulse {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translateX(-50%) scale(0.7);
    opacity: 0.3;
  }
}


/* SECTION6 */
.line-custom{
  font-size: 14px;
  font-weight: 600;
}
.outer-plan-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 0;
  /* remove padding to align inner card edge */
  min-height: 800px;
  /* fixed min-height */
  display: flex;
  flex-direction: column;
}

/* Inner Gradient Card: 40% height of outer card */
.inner-gradient-card {
  height: 40%;
  /* take 40% of parent height */
  background: linear-gradient(180deg, #ECEEFF 70%, #FFFFFF 100%);
  border-radius: 22px 22px 22px 22px;
  /* top corners rounded */

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Keep badge, price, desc, button aligned */
.plan-badge {
  background-color: #ECEEFF;
  border-radius: 12px !important;
  color: #101959 !important;
}

.price {
  font-size: 28px;
  font-weight: bold;
  margin: 5px 0 10px;
}

.plan-desc {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.btn-inner {
  background: linear-gradient(135deg, #4251C8, #131A4F);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  align-self: center;
  transition: 0.3s;
  width: 100%;
}

.btn-inner:hover {
 
  background: linear-gradient(135deg, #131A4F, #4251C8);
  color: #fff;
}

/* Features section occupies remaining height */
.plan-features {
  gap: 10px;
  /* Optional: controls space between wrapped items neatly */
}

.plan-features li {
  line-height: 1.2;
  /* Removes extra line gap */
  margin-bottom: 0;
  /* Ensures no extra bottom space */
}



.price-card {
  background: #fff;
  border-radius: 16px;
  padding: 15px 20px;

  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}



.btn-primary-custom {
  display: inline-block;

  width: auto !important;

  max-width: fit-content;

  padding: 10px 25px;

  border-radius: 8px;

  background: linear-gradient(90deg, #3a4ed5, #0b144b);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}


/* Custom Dropdown Styling */
.custom-dropdown {
  background-color: #ECEEFF !important;
  border-radius: 10px;
  /* Rounded corners */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  /* Smooth shadow */
  border: 1px solid #dcdcf0;
  /* Optional subtle border */
  padding: 10px 0;
}

/* Dropdown items */
.custom-dropdown .dropdown-item {
  color: #011044;
  padding: 8px 18px;
  font-weight: 500;
  border-radius: 6px;
}

/* Hover effect */
.custom-dropdown .dropdown-item:hover {
  background-color: rgba(1, 16, 68, 0.08);
}