body {
  padding-top: 5.5rem; /* 3.5rem header + 1rem spacing */
   /* background-color: #f5f5f5; */
}
/* Style the carousel items */
.carousel-item img {
    width: 100%;
    height: 500px; /* Set the height of the carousel */
    object-fit: cover; /* Cover the space while maintaining aspect ratio */
}

/* Carousel Caption Styling */
.carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.carousel-caption h5 {
    font-size: 36px;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 18px;
    margin-bottom: 20px;
}

.carousel-caption .btn {
    background-color: #FF6600; /* Button color */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Left and Right Control Arrows Styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #FF6600; /* Orange color for the arrows */
    border-radius: 50%;
    padding: 15px;
}
/* ---- Toasts ------------------------------------------------------------ */
.cmms-toast-wrap{
  position:fixed; top:18px; right:18px; z-index:10000;
  display:flex; flex-direction:column; gap:10px; pointer-events:none;
}
.cmms-toast{
  pointer-events:auto; display:flex; align-items:center; gap:10px;
  padding:12px 14px; border-radius:12px; color:#fff; font:600 14px/1.3 system-ui,Segoe UI,Arial;
  box-shadow:0 12px 40px rgba(10,36,60,.18); max-width:420px; animation:cmms-toast-in .18s ease;
}
.cmms-toast--error{ background:#d72c2c; }
.cmms-toast--ok{ background:#0c8c73; }
.cmms-toast__close{ background:transparent; border:0; color:#fff; font-size:18px; line-height:1; cursor:pointer; }
@keyframes cmms-toast-in{ from{transform:translateY(-6px); opacity:0} to{transform:none; opacity:1} }

.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 0 20px; responsive side padding */
}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
}
.hero-section {
 
  background-color: #f5f5f5;
  padding: 20px 5%;
  /* max-width: 1200px; */
  /* margin-inline: 1.5rem; */
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
   position: relative; /* ✅ new */
}

/* LEFT TEXT BLOCK */
.hero-text {
  flex: 1 1 500px;
  max-width: 700px;
  position: relative;
  z-index: 3;
  margin-right: -150px; /* ✅ adjust this value as needed */
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #000;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #000;
  color: #fff;
}

.btn-primary:hover {
  background-color: #222;
}

.btn-secondary {
  background-color: #ccc;
  color: #000;
}

.btn-secondary:hover {
  background-color: #bbb;
}

/* RIGHT IMAGE BLOCK */
.hero-image-wrapper {
    position: relative;
  flex: 1 1 500px;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
}

/* ===== Reveal on scroll ===== */
.reveal-mobility{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .5s ease, transform .5s ease;
  will-change:transform, opacity;
}
.reveal-mobility[data-reveal="left"]{ transform:translateX(32px); }
.reveal-mobility[data-reveal="right"]{ transform:translateX(-32px); }
.reveal-mobility.is-visible-mobility{
  opacity:1;
  transform:none;
}

/* ===== Responsive ===== */
@media (max-width: 1024px){
  .better-row-mobility,
  .better-row-alt-mobility{
    grid-template-columns:1fr;          /* stack */
  }
  .better-media-mobility img{ max-height:420px; }
}
@media (max-width: 560px){
  .better-pill-mobility{ font-size:13px; padding:9px 12px; }
}

/* Gradient overlay */
.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 80%);
  z-index: 2;
  pointer-events: none;
  border-radius: 20px;
}
.hero-img {
 width: 105%;
  height: auto;
  display: block;
  border-radius: 20px;
  z-index: 1; /* Behind the gradient */
}
@media screen and (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    padding: 0;
    gap: 14px;
  }

  .hero-text {
    max-width: 100%;
    text-align: left;
    /* padding: 0 20px; */
    margin: 0;
    margin-right: 0px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
    word-break: break-word;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
    /* padding: 0 10px; */
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    width: 90%;
  }

  .hero-image-wrapper {
      /* padding: 0 20px; */
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
  }

  .hero-image-wrapper::before {
    display: none;
  }

  .hero-img {
   width: 100%;          /* 🔁 Reset to full width */
    height: auto;
    border-radius: 15px;  
    display: block;
    z-index: 1;
    margin-top: -400px;
  }
}

.features-section {
  background-color: #f7f7f7;
  padding: 2rem 1rem;
  text-align: center;
}

.features-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.features-section .subheading {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: left;
}

.feature-card .icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Layout control based on order */
.feature-card:nth-child(1) {
  grid-column: span 2;
}
.feature-card:nth-child(2) {
  grid-column: span 1;
}
.feature-card:nth-child(3) {
  grid-column: span 1;
}
.feature-card:nth-child(4){
    grid-column: span 2;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    grid-column: span 1 !important;
  }
}
/* Pricing section */

.pricing-wrapper{
    background-color: #ffffff; 
     width: 100%;
     padding-top: 20px;
     padding-bottom: 20px;



}
.pricing-section {
  max-width: 1200px;
  margin: 0 auto;

  text-align: center;
  /* ✅ Added background */
  
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  text-align: left;
  transition: transform 0.2s ease-in-out;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.plan-desc {
  color: #666;
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
}

.start-btn {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #f0f0f0;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: background-color 0.2s ease;
}

.start-btn:hover {
  background-color: #e0e0e0;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
}

.pricing-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #444;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00aa55;
  font-weight: bold;
}

/* Responsive Layouts */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-title {
    font-size: 2rem;
  }

  .pricing-subtitle {
    font-size: 0.95rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }
}

/* Asset section */
.asset-hero-wrap {
  background-color: #f5f5f5;
  padding: 4rem 1.5rem;
}

.asset-hero-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.asset-hero-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.asset-hero-textbox {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.asset-hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 0.8rem;
}

.asset-hero-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin-bottom: 1rem;
}

.asset-hero-subtitle {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
}

.asset-hero-description {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 1.5rem;
}

.asset-hero-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 100px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  font-weight: 600;
  color: #111;
  transition: all 0.25s ease-in-out;
}

.asset-hero-cta:hover {
  background-color: #efefef;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .asset-hero-flex {
    flex-direction: column;
    text-align: center;
  }

  .asset-hero-title {
    font-size: 2rem;
  }

  .asset-hero-img img {
    max-width: 100%;
  }
}

/* ✅ Responsive Fix */
@media (max-width: 768px) {
  .asset-hero-flex {
    flex-direction: column;
    text-align: center;
  }

  .asset-hero-textbox {
    margin-left: 0;
  }

  .asset-hero-title {
    font-size: 2rem;
  }

  .asset-hero-img {
    max-width: 100%;
  }
}
/* testimonial section */
.testimonial-section {
  background-color: #fff;
  padding: 4rem 1.5rem;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.testimonial-header p {
  font-size: 1rem;
  color: #555;
}

.testimonial-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 2rem;
  flex: 1 1 450px;
  max-width: 500px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 1rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 100px;
  height: 50px;
  object-fit: cover;
}

.testimonial-logo {
  height: 28px;
  width: auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 100%;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* event Section */

.event-section {
  background-color: #000;
  padding: 60px 20px;
  color: #fff;
}

.event-wrapper {
  max-width: 1200px;
  margin: auto;
}

.event-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.event-subtitle {
  font-size: 14px;
  margin-bottom: 30px;
  color: #ccc;
}

.event-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.event-tab {
  background-color: #222;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.event-tab.active {
  background-color: #fff;
  color: #000;
}

.event-card {
  display: flex;
  background-color: #111;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.event-img {
  flex: 1 1 300px;
  background-size: cover;
  background-position: center;
  height: 250px;
  min-width: 250px;
}

.event-content {
  flex: 2 1 500px;
  padding: 20px;
}

.event-time {
  color: #aaa;
  font-size: 13px;
}

.event-topic {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
}

.event-speaker, .event-details {
  font-size: 14px;
  margin-bottom: 10px;
  color: #ccc;
}

.event-button {
  background-color: #fff;
  color: #000;
  padding: 8px 16px;
  border: none;
  border-radius: 3px;
  font-weight: bold;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }
  .event-img {
    height: 200px;
  }
}


/* FAQ */
.faq-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.faq-header {
  max-width: 900px;
  margin: 0 auto 40px;
}

.faq-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111;
}

.faq-desc {
  color: #555;
  font-size: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-card {
  background-color: #fff;
  border-left: 1px solid #ccc;
  padding: 20px;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.faq-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.faq-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-desc {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 22px;
  }

  .faq-card {
    padding: 15px;
  }

  .faq-card h4 {
    font-size: 16px;
  }

  .faq-card p {
    font-size: 13px;
  }
}
/* last section */
.contact-expert-section {
  padding: 60px 20px;
  /* background-color: #f8f8f8; */
  text-align: center;
}

.expert-header h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #111;
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.expert-card {
  /* background: #fff; */
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.expert-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
}

.expert-card h4 {
  font-size: 18px;
  margin: 10px 0 8px;
  color: #000;
}

.expert-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.expert-card button {
  padding: 8px 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  /* background-color: #fff; */
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.expert-card button:hover {
  background-color: #f0f0f0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .expert-header h2 {
    font-size: 26px;
  }

  .expert-card h4 {
    font-size: 17px;
  }

  .expert-card p {
    font-size: 13px;
  }

  .expert-card {
    padding: 16px;
  }
}
