body {
  font-family: "Poppins", sans-serif;
  padding-top: 80px;
}

/* Navbar */
.modern-navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  padding: 12px 0;
}

/* Logo */
.logo-img {
  height: 60px;
}

/* Nav Links */
.nav-link {
  position: relative;
  font-weight: 500;
  color: #333;
  margin: 0 6px;
}

/* Underline Hover Animation */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #0d6efd;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Login Button */
.login-btn {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* @media (max-width:769px) {
    .dropdown-menu-custom {
    position: absolute;
    top: 120%;
    right: -50px;
    background: #fff;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    overflow: hidden;
    z-index: 999;
} */

/* Gradient CTA */
.cta-btn {
  padding: 8px 18px;
  border-radius: 25px;
  background: linear-gradient(45deg, #0d6efd, #00c6ff);
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Dropdown Wrapper */
.dropdown-box {
  position: relative;
}

/* Dropdown Menu */
.dropdown-menu-custom {
  position: absolute;
  top: 120%;
  right: -65px;
  background: #fff;
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  overflow: hidden;
  z-index: 999;
}



/* Links */
.dropdown-menu-custom a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #333;
  transition: 0.2s;
}

.dropdown-menu-custom a:hover {
  background: #f1f5ff;
  color: #0d6efd;
}

/* Active state */
.dropdown-box.active .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    margin-top: 10px;
  }

  .d-flex {
    justify-content: center;
    /* margin-top: 15px; */
  }
  .modern-navbar{
    padding: 0px;
  } 
}

/* //////////////////////////// hero section //////////////// */
/* HERO SECTION */
.hero-section {
  padding: 100px 0;
  /* background: linear-gradient(120deg, #f8fbff, #eef5ff); */
  background: radial-gradient(
    96.67% 157.02% at 96.67% 105.65%,
    #8eaf39 5.53%,
    #3ca5df 54.02%,
    #357fb7 88.68%
  );
}

/* TITLE */
.hero-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}

.hero-title span {
  color: orange;
}

/* SUBTITLE */
.hero-subtitle {
  margin: 20px 0;
  color: #fff;
  font-size: 18px;
}


/* BUTTONS */
.hero-buttons {
  margin-top: 20px;
}

.primary-btn {
  background: #0d6efd;
  color: white;
  margin-right: 10px;
}
.primary-btn:hover {
  border: 1px solid #e3862f;
  color: #fff;
}

.outline-btn {
  border: 1px solid #fff;
  color: #fff;
}
.outline-btn:hover {
  border: 1px solid #e3862f;
  color: #fff;
}

.hero-buttons .btn {
  position: relative;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
}

/* Primary Button */
.hero-buttons .btn.border {
  border: 2px solid #00c6ff;
  color: #fff;
  background: transparent;
}

.hero-buttons .btn.border::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.4s;
}

.hero-buttons .btn.border:hover::before {
  width: 100%;
}

.hero-buttons .btn.border:hover {
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.6);
  transform: translateY(-3px);
}

/* Outline Button */
.hero-buttons .outline-btn {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.hero-buttons .outline-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: #fff;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.4s;
}

.hero-buttons .outline-btn:hover::before {
  height: 100%;
}

.hero-buttons .outline-btn:hover {
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Click Effect */
.hero-buttons .btn:active {
  transform: scale(0.95);
}

/* IMAGE */
.hero-img {
  max-width: 100%;
  animation: float 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* MOBILE */
@media (max-width: 991px) {
  .hero-title {
    font-size: 32px;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
  }

  .search-box {
    flex-direction: column;
    border-radius: 15px;
  }

  .search-box button {
    width: 100%;
    padding: 12px;
  }

  .hero-buttons {
    text-align: center;
  }
  .hero-img{
    margin-top: 50px;
  }
}

/* /////////////////////////////// About section //////////////// */
.about-section {
  padding: 100px 0;
  background: #fff;
}

/* IMAGE COLLAGE */
.about-images {
  position: relative;
  display: flex;
  justify-content: center;
}

/* MAIN IMAGE */
.img-main {
  width: 85%;
  height: 80vh;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* SMALL IMAGES */
.img-small {
  width: 40%;
  position: absolute;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* POSITIONING */
.img-top {
  top: -30px;
  right: 0;
}

.img-bottom {
  bottom: -30px;
  left: 0;
}

/* CONTENT */
.about-content {
  padding-left: 30px;
}

.about-tag {
  color: #ff6b00;
  font-weight: 600;
  letter-spacing: 1px;
}

/* TITLE */
.about-title {
  font-size: 40px;
  font-weight: 700;
  margin: 10px 0;
}

.about-title span {
  color: #0d6efd;
}

/* TEXT */
.about-content p {
  color: #555;
  margin-bottom: 15px;
}

/* BUTTONS */
.about-buttons .btn {
  margin-right: 10px;
  border-radius: 25px;
  padding: 10px 20px;
}

/* HOVER */
.btn-primary:hover {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
  }

  .img-main {
    width: 80%;
    height: 80%;
  }

  .img-small {
    display: none;
  }
}

/* ///////////////////// trust by company ////////////////// */
/* SECTION */
.trusted-section {
  padding: 60px 0;
  background: #fff;
}

.trusted-title {
  margin-bottom: 30px;
  color: orange;
}

/* SLIDER */
.logo-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 15s linear infinite;
}

/* LOGOS */
.logo-track img {
  width: 140px;
  margin: 0 30px;
  filter: grayscale(0%);
  /* opacity: 0.7; */
  transition: 0.3s;
}

.logo-track img:hover {
  filter: grayscale(0%);
  /* opacity: 1; */
}

/* SMOOTH INFINITE ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .logo-track img {
    width: 90px;
  }
}

/* ////////////////////// Our Services ///////////////////// */
.services-section {
  padding: 90px 0;
  /* background: linear-gradient(120deg, #f8fbff, #eef5ff); */
  background: radial-gradient(
    96.67% 157.02% at 96.67% 105.65%,
    #8eaf39 5.53%,
    #3ca5df 54.02%,
    #357fb7 88.68%
  );
}

/* Title */
.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.section-subtitle {
  color: #fff;
  margin-bottom: 50px;
}

/* Card */
.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

/* Icon */
.service-card .icon {
  font-size: 35px;
  margin-bottom: 15px;
}

/* Title */
.service-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

/* List */
.service-card ul {
  text-align: left;
  padding-left: 18px;
}

.service-card ul li {
  margin-bottom: 8px;
  color: #555;
}

/* Hover Effect 🔥 */
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

/* /////////////////////////// why choose us ////////////////////*/
.why-section {
  padding: 100px 0;
  background: linear-gradient(120deg, #f8fbff, #eef5ff);
  /* background: radial-gradient(96.67% 157.02% at 96.67% 105.65%, #8EAF39 5.53%, #3CA5DF 54.02%, #357FB7 88.68%); */
  
}

/* ROW FULL HEIGHT */
.why-row {
  align-items: stretch;
  min-height: 500px;
}

/* IMAGE BOX */
.why-img-box {
  display: flex;
}

/* IMAGE FULL SIZE */
.why-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
}

/* CONTENT SIDE */
.why-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}

/* TITLE */
.why-title {
  font-size: 36px;
  font-weight: 600;
}
.manpower-title {
  color: #0d6efd;
}

.why-subtitle {
  margin: 15px 0 15px;
  color: #666;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.why-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
}

/* ICON */
.why-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* TEXT */
.why-card h5 {
  font-weight: 600;
}

.why-card p {
  color: #555;
  font-size: 14px;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* MOBILE */
@media (max-width: 991px) {
  .why-row {
    flex-direction: column;
    min-height: auto;
  }

  .why-img {
    height: auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-title,
  .why-subtitle {
    text-align: center;
  }
}

/* ///////////////////// process section /////////////////////// */

.process-section {
  padding: 100px 0;
  /* background: linear-gradient(120deg, #f8fbff, #eef5ff); */
  background: radial-gradient(
    96.67% 157.02% at 96.67% 105.65%,
    #8eaf39 5.53%,
    #3ca5df 54.02%,
    #357fb7 88.68%
  );
}

/* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 600;
}

.section-subtitle {
  color: #fff;
}

/* TIMELINE */
.timeline {
  position: relative;
  margin-top: 50px;
}

/* CENTER LINE */
.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: #0d6efd;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ITEM */
.timeline-item {
  width: 50%;
  padding: 20px;
  position: relative;
}

/* LEFT */
.timeline-item.left {
  left: 0;
  text-align: right;
}

/* RIGHT */
.timeline-item.right {
  left: 50%;
}

/* CONTENT BOX */
.content {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* STEP NUMBER */
.step {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #0d6efd;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* ICON */
.icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* HOVER */
.content:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* DOT */
.timeline-item::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #0d6efd;
  border-radius: 50%;
  top: 30px;
  z-index: 1;
}

.timeline-item.left::after {
  right: -8px;
}

.timeline-item.right::after {
  left: -8px;
}

/* MOBILE */
@media (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    text-align: left;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-item.left {
    text-align: left;
  }

  .timeline-item::after {
    left: 12px;
  }
}

/* ///////////////////////////////////// FAQ section //////////////////////// */
.faq-section {
  padding: 80px 20px;
}

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

.faq-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.faq-left {
  flex: 1;
}

.faq-title {
  font-size: 36px;
  font-weight: bold;
}

.faq-title span {
  color: #0d6efd;
}

.faq-subtitle {
  margin: 15px 0 25px;
  color: #555;
}

.faq-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #0d6efd;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
}

/* RIGHT */
.faq-right {
  flex: 1;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 18px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 20px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: all 0.4s ease;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 18px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-wrapper {
    flex-direction: column;
  }

  .faq-title {
    font-size: 28px;
    text-align: center;
  }

  .faq-subtitle {
    text-align: center;
  }

  .faq-left {
    text-align: center;
  }
}



/* ///////////////////////////////////// contact us section /////////////////// */
.contact-section {
  padding: 100px 0;
  /* background: linear-gradient(120deg, #f8fbff, #eef5ff); */
  background: radial-gradient(
    96.67% 157.02% at 96.67% 105.65%,
    #8eaf39 5.53%,
    #3ca5df 54.02%,
    #357fb7 88.68%
  );
}

/* TITLE */
.contact-title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
}

.contact-subtitle {
  margin: 15px 0 30px;
  color: #fff;
}

/* INFO BOX */
.info-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #fff;
}

.info-box span {
  font-size: 20px;
  margin-right: 10px;
}

/* FORM */
.contact-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* INPUT */
.input-box {
  position: relative;
  margin-bottom: 20px;
}

.input-box input,
.input-box textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 8px;
}

/* LABEL */
.input-box label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 5px;
  color: #777;
  transition: 0.3s;
  pointer-events: none;
}

/* FLOAT EFFECT */
.input-box input:focus + label,
.input-box input:valid + label,
.input-box textarea:focus + label,
.input-box textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: #0d6efd;
}

/* TEXTAREA */
.input-box textarea {
  min-height: 100px;
  resize: none;
}

/* BUTTON */
.contact-btn {
  background: linear-gradient(45deg, #0d6efd, #00c6ff);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  transition: 0.3s;
}

/* HOVER */
.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* visitor */
/* .visitor-box {
  background: #0d1b2a;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 200px;
  margin: auto;
  transition: 0.3s;
} */

.visitor-box:hover {
  transform: translateY(-8px);
}

.visitor-box h2 {
  font-size: 40px;
  color: #00b4d8;
  margin: 0;
}

.visitor-box p {
  margin-top: 10px;
  font-size: 16px;
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-title {
    text-align: center;
  }

  .contact-subtitle {
    text-align: center;
  }
}

/* /////////////////////////////// video section ////////////////////// */
.video-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}

.video-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.video-text {
  opacity: 0.8;
  margin-bottom: 25px;
}

.video-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.video-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Video Box */
.video-box {
  border-radius: 20px;
  overflow: hidden;
}

/* Video / iframe responsive */
.video-box video,
.video-box iframe {
  width: 100%;
  height: 315px;
  border-radius: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .video-heading {
    font-size: 26px;
  }

  .video-box video,
  .video-box iframe {
    height: 220px;
  }
}


/* /////////////////////////////// Footer section //////////////////// */
.footer-section {
  background: #0f172a;
  color: #fff;
  padding: 70px 0 20px;
}

/* BOX */
.footer-box {
  margin-bottom: 30px;
}

/* LOGO */
.footer-logo {
  font-size: 24px;
  font-weight: 600;
}

/* TEXT */
.footer-box p {
  color: #ccc;
  font-size: 14px;
}

/* HEADINGS */
.footer-box h5 {
  margin-bottom: 15px;
  font-weight: 600;
}

/* LIST */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

/* HOVER */
.footer-box ul li a:hover {
  color: #0d6efd;
  padding-left: 5px;
}

/* SOCIAL */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #0d6efd;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 15px;
  margin-top: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: #aaa;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
}


/* custom css */
