/* https://www.fluor.com/india */


p {
  font-size: 20px;
  text-justify: inter-word;
  letter-spacing: 0.01em;
  
}

.para-UL{
    line-height:45px;
    margin-top:30px}

h1 {
  font-size: 52px !important;
  padding-bottom:15px;
}
  

h2 {
  font-size: 45px !important;
  padding-bottom:20px;
}

h3 {
  font-size: 46px !important;
}

h4 {
  font-size: 39px !important;
}

h5 {
  font-size: 32px !important;
}

h6 {
  font-size: 25px !important;
}

.banner-images {
  position: relative;
  height: 580px;
  width: 100%;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  top:155px;
}

/* Background Video */
.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keeps proportions, fills area */
  z-index: -1;
  /* keeps it behind text */
}

/* Optional overlay for contrast */
.banner-images::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  /* dark overlay */
  z-index: 0;
}

/* Ensure text appears above */
.banner-images .container {
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-images {
    height: 420px;
    text-align: center;
  }

  .banner-images h1 {
    font-size: 34px !important;
  }

  .banner-images p {
    font-size: 1rem;
  }
}

.box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.box h3 {
  color: #333;
  border-bottom: 3px solid #0D6EFD;
  padding-bottom: 5px;
  margin-bottom: 15px;
}


.custom-btn {
  min-width: 120px;
  height: 45px;
  font-size: 18px;
  border-radius: 8px;
  padding: 15px 10px;
  font-weight:600!important;
  margin-top:20px;
  line-height:25px !important;
}

.sp9 {
  padding: 90px 0 90px;
}

.custom-accordion-btn {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
}

.custom-accordion-btn::after {
  display: none;
  /* Remove Bootstrap default arrow */
}

.arrow-icon {
  width: 35px;
  height: 35px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.arrow-icon::before {
  content: "↓";
  font-size: 25px;
  line-height: 1;
}

.accordion-button:not(.collapsed) .arrow-icon {
  transform: rotate(180deg);
}

.accordion-size {
  font-size: 26px !important;
}

.partner-section {
  /* padding: 80px 0; */
  background: #fff;
}

.container {
  width: 85%;
  margin: auto;
}

.partner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.partner-text {
  flex: 1;
}

.partner-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.partner-text h2 span {
  display: block;
  font-weight: 400;
  font-size: 28px;
}

/* .partner-text p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 15px;
  max-width: 400px;
} */

.partner-text .btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.partner-text .btn:hover {
  background: #1e40af;
}

.partner-logos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  border: 1px solid #e5e7eb;
}

.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 40px;
}

.logo-box:nth-child(3n) {
  border-right: none;
}

.logo-box:nth-last-child(-n + 3) {
  border-bottom: none;
}

.logo-box img {
  max-width: 100px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-box img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .partner-content {
    flex-direction: column;
    text-align: center;
  }

  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

.outer-box {
  background: #e8f3fc;
  padding: 80px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stats-card {
  background: linear-gradient(135deg, #1f2937 30%, #334155 100%);
  color: white;
  border-radius: 12px;
  padding: 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%);
  pointer-events: none;
}

.stats-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

.stats {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.stat {
  text-align: left;
  flex: 1;
}

.stat h2 {
  font-size: 28px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.stat h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: white;
}

/* .stat p {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.5;
} */

@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    text-align: center;
  }

  .stat {
    text-align: center;
  }
}

.successbanner {
  background-image: url(./assets/images/success-journey.webp);
  color: white;
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  /* vertically center */
  background-size: cover;
  background-position: center;
}



.cta-container {

  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 20px;
  padding: 60px 80px;
  color: white;
  text-align: left;
  position: relative;
}

.cta-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* .cta-container p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
} */

.cta-input {
  display: flex;
  max-width: 400px;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.cta-input input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
  font-size: 15px;
}

.cta-input button {
  background: #0f172a;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-input button:hover {
  background: #1e293b;
}

/* --- Footer --- */
footer {
  /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
  padding: 50px 80px 15px;

}

.footer-column {
  flex: 1;
  min-width: 180px;
}

.footer-logo img {
  width: 170px;
  margin-bottom: 10px;
}

.footer-column h5 {
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-social a {
  display: block;
  margin-bottom: 10px;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: white;
}

@media (max-width: 768px) {
  .cta-container {
    padding: 40px 30px;
    text-align: center;
  }

  .cta-input {
    margin: 0 auto;
  }

  footer {
    padding: 40px 30px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


.tab-container {
  padding: 10px 30px;
  border-radius: 8px;
  gap: 20px;
}

.tab-button {
  background: none;
  text-align: center;
  color: #9ca3af;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  /* border: 1px solid #4b5563; */
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-button.active {
  /* background-color: #2563eb; */
  color: white;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.tab-button:hover {
  color: white;
}

.tab-content {
  display: none;
  background-color: #1b222c;
  border: 1px solid #4b5563;
  border-radius: 8px;
  padding: 20px;
  color: #fff;
  margin-top: 20px;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-nav {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.sticky-menu{
    position: fixed;
    margin: auto;
    width: 100%;
    z-index: 1000;
}



.top-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Second menu - fixed under first menu */
.second-fixed {
    position: fixed;
    top: 70px;   /* height of top menu */
    left: 0;
    width: 100%;
    z-index: 9998;
    background: #0d6efd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}


.text-wh {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

.text-bl {
  color: #000 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

/* floating search box container */
.search-popup {
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  display: none;
  z-index: 1055;
}

.search-popup input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
}

.search-popup .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #555;
}

.search-popup .bi-search {
  color: #002147;
  font-size: 1.2rem;
}

.search-popup.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -10%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* FAQ css start  */

.faq-section {
  /* margin: 80px auto; */
  padding: 0 25px;
}

.faq-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #fff;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  padding: 18px 0;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-question.active {
  color: #1563FF;
}

.faq-question:hover {
  color: #1563FF;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  will-change: max-height;
}

.faq-answer p, .faq-answer ul, .faq-answer ol {
  margin: 0;
  padding: 10px 0 15px;
  color: #fff;
  line-height: 1.6;
  font-size: 18px;
}

.faq-answer ul {
  list-style-type: disc;   /* adds bullets */
  padding-left: 25px;      /* creates space for bullets */
}

.faq-answer ol {
  list-style-type: decimal; /* numbered list */
  padding-left: 25px;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-question { font-size: 18px; padding: 15px 0; }
  .faq-answer p { font-size: 14px; }
}

/* about page css start */

.banner-top{
    margin-top: 200px;
}


/* dark blue transparent overlay */
.about-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 60, 0.1);
  z-index: 1;
}

/* floating content box */
.about-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 20px;
  max-width: 650px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

/* Value item */
.value-item {
  align-items: flex-start;
  gap: 30px;
  padding: 10px;
}

.value-item .icon {
  font-size: 2.5rem !important;
  color: #1368ff !important;
  flex-shrink: 0 !important;
}


.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url('assets/images/aboutsection.webp') no-repeat center center/cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Blue CTA Box */
.cta-box {
  position: relative;
  background-color: #2b68ff;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 16px;
  width: 80%;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(50%);
}

.cta-box h3 {
  font-weight: 400;
}

.cta-box button {
  background-color: white;
  color: #2b68ff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-box button:hover {
  background-color: #e6edff;
}

.stop_overlaping {
  margin-top: 13rem;
}

@media (max-width: 768px) {
  .hero {
    height: 35vh !important;
  }




  .cta-box h3 {
    font-size: 25px !important;
  }
}

.grid-item {
  background-color: #ffffff;
  color: #000;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px,
    rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.grid-item:hover {
  transform: scale3d(1.02, 1.02, 1);
  z-index: 1;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

/* active button wrapper: makes the inner .grid-item red */
.tab-button.active .grid-item {
  /* background-color: red; */
  color: #1563FF;
}

.grid-item p {
  font-size: 25px !important;
  font-weight: 600;
  padding: 0;
  margin-bottom: 0;
  text-align:center;
}

/* small layout helper for demo */




.content {
  display: none;
}

.content.active {
  display: block;
}


/* about page css end */

.step-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-box {
  display: flex;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.step-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: #e4e8ef;
  color: #11315b;
  font-size: 18px;
  font-weight: 800;
  padding: 20px 20px;
  text-align: center;
}

.step-label-1{
    writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: #1563FF;
  color: #11315b;
  font-size: 18px;
  font-weight: 800;
  padding: 20px 20px;
  text-align: center;
}

.step-content {
  padding: 20px;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.step-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trusted-card {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.trusted-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.trusted-badge {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.trusted-badge p {
  margin: 0;
  font-weight: 600;
  color: #000;
  font-size: 24px;
  line-height: 1.4;
}

.counter {
  color: #2563eb;
  font-size: 22px;
  font-weight: 700;
}

.icon-box {
  display: inline-block;
  background-color: #fff;
  /* White box */
  padding: 10px;
  /* Space around icon */
  border-radius: 12px;
  /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* Optional shadow */
  margin-bottom: 20px;
}



.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: start;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.column h2 {
  background-color: #1563FF;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  font-size: 25px !important;
}

.vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  font-weight: 700;
  background: #555;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  align-self: start;
  margin-top: 40px;
}

.trusted-card {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: visible; /* Important: allows badge outside image */
  border-radius: 16px;
  transition: all 0.4s ease;
}

.trusted-card img {
  border-radius: 16px;
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.trusted-card:hover img {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ✅ Badge styling */
.trusted-badge {
  position: absolute;
  left: 50%;
  bottom: -60px; /* places below image */
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  padding: 12px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  width: 300px;
    height: 125px;
}

.trusted-badge p {
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.trusted-badge span {
  color: #1563FF;
  font-weight: 700;
  font-size: 20px;
}

/* Hover glow */
.trusted-card:hover .trusted-badge {
  box-shadow: 0 10px 25px rgba(21, 99, 255, 0.3);
}

/* Responsive fix */
@media (max-width: 768px) {
  .trusted-badge {
    bottom: -20px;
    padding: 10px 18px;
  }
}

.card-h {
  background: #fafafa;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  font-size: 20px;
  line-height: 1.5;
}



@media (max-width: 768px) {
  .comparison {
    grid-template-columns: 1fr;
  }

  .vs {
    margin: 15px auto;
  }
}


.info-section .card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
}

.info-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-box {
  display: flex;
  align-items: center;
  background: #f4f4f4;
  padding: 20px;
  border-left: 8px solid #1563FF;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.info-box:hover {
  background: #f0ede9;
}

.info-box-1 {
  display: flex;
  align-items: center;
  background: #f4f4f4;
  padding: 20px;
  border-left: 8px solid #8d8d8d;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.info-box-1:hover {
  background: #f0ede9;
}

@media only screen and (max-width: 767px) {
.outer-box {
  padding: 30px;
}
}

.accordion-header{
    padding-bottom:0;
}


.footer-social i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size:20px;
    transition: all 0.3s 
ease;
}

/* Hover Effect */
.footer-social i:hover {
  transform: scale(1.2);
  border:none;
  background-color: #1563FF;
  color: #fff;
  box-shadow: 0 0 10px rgba(21, 99, 255, 0.5);
}

.site-footer {
  padding: 15px 40px;
  color: #fff;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  color: #fff;
}

.footer-left a{
    text-decoration:none;
    color:#fff;
    font-weight:500;
}

.footer-right a {
  color: #fff!important;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #1563FF; /* blue hover */
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    margin-top: 10px;
  }

  .footer-right a {
    margin: 0 10px;
    display: inline-block;
  }
}


.cta-button {
  background-color: #0d6efd; /* Bright blue */
  color: white;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Segoe UI', sans-serif;
  transition: background-color 0.3s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
  margin:10px 0;
}

.cta-button:hover {
  background-color: #0d6efd;
  transform: translateY(-2px);
}

@media screen and (max-width: 375px) {
 .about-content2 {
     padding:20px 10px !important;
 }
 h1{
     font-size:46px !important;
 }
}