/*index.php -> Css*/

@media (max-width: 768px) {
  .str-service-box {
    width: 100vw !important;
  }
}

.tstr-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.tstr-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.tstr-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 70, 0.55);
}

.tstr-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 160px;
  padding: 100px 120px;
}

.tstr-left {
  width: 50%;
  color: #fff;
}

.tstr-heading {
  color: #fff;
}

.tstr-heading::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #18c3f3;
  display: block;
  margin-top: 8px;
}

.tstr-text {
  margin: 15px 0;
  line-height: 1.6;
  color: #fff;
  width: 800px;
}

@media (max-width: 768px) {
  .tstr-text {
    width: 100%;
  }
}

.tstr-btns {
  display: flex;
  gap: 10px;
}

.tstr-btn {
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 3px;
}

.tstr-btn-light {
  background: #fff;
  color: #0e4192;
}

.tstr-btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.tstr-right {
  width: 290px;
  background: rgba(20, 80, 140, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 12px;
  border-radius: 6px;
  backdrop-filter: blur(3px);
}

.tstr-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
}

.tstr-form label {
  color: #fff;
}

.tstr-form input {
  width: 100%;
  height: 30px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 3px;
}

.tstr-captcha {
  margin-top: 8px;
  color: #fff;
}

.tstr-captcha-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.tstr-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  cursor: pointer;
  border-radius: 4px;
  color: #fff;
}

.tstr-icon.active {
  background: #18c3f3;
}

.tstr-error {
  color: red;
  display: none;
  margin-top: 5px;
}

.tstr-submit {
  margin-top: 10px;
  padding: 8px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.tstr-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .tstr-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    gap: 15px;
  }

  .tstr-left {
    width: 100%;
  }

  .tstr-right {
    display: none;
  }
}

@media (min-width: 992px) {
  .header-main .main-menu ul li .submenu {
    min-width: 550px;
  }
}

.main-menu ul li a i.fa-chevron-down {
  margin-left: 6px;
  font-size: 12px;
}

.str-marquee {
  background: #0b2c5f;
  color: #fff;
  overflow: hidden;
  padding: 12px 0;
}

.str-marquee-track {
  display: flex;
  width: max-content;
  animation: str-scroll 30s linear infinite;
}

.str-marquee-content {
  display: flex;
  gap: 70px;
  padding-right: 70px;
  white-space: nowrap;
}

.str-marquee-content span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.str-marquee-content i {
  color: #fb5b02;
}

@keyframes str-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.str-services {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 60px 20px;
  background: #f5f7fa;
  flex-wrap: wrap;
}

.str-service-box {
  width: 270px;
  padding: 30px 20px;
  border-radius: 16px;
  background: #fff;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.str-service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #fb5b02;
}

.str-service-box:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #0b2c5f, #123d82);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.str-icon-box {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(251, 91, 2, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}

.str-icon-box i {
  font-size: 26px;
  color: #fb5b02;
  transition: 0.35s;
}

.str-service-box:hover .str-icon-box {
  background: #fff;
}

.str-service-box:hover .str-icon-box i {
  color: #fb5b02;
}

.str-service-box h4 {
  color: #0b2c5f;
  margin: 12px 0;
  font-size: 18px;
  transition: 0.3s;
}

.str-service-box p {
  font-size: 14px;
  color: #555;
  transition: 0.3s;
}

.str-service-box:hover h4,
.str-service-box:hover p {
  color: #fff;
}

.str-service-box:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(251, 91, 2, 0.25);
  pointer-events: none;
}

.service-image img {
  width: 220px !important;
  height: 220px !important;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.service-image {
  text-align: center;
  overflow: hidden;
}

.work-process-section .row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
}

.work-process-box-items {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 60px 25px 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.work-process-box-items .top-shape {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: #fb6344;
  border-radius: 50%;
  opacity: 0.12;
  transition: 0.4s ease;
}

.work-process-box-items .icon {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.work-process-box-items .icon i {
  font-size: 22px;
  color: #fb6344;
  transition: 0.4s ease;
}

.work-process-box-items h4 {
  font-size: 14px;
  color: #fb6344;
  margin-top: 10px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.work-process-box-items h3 {
  font-size: 18px;
  color: #243555;
  margin: 10px 0;
  font-weight: 600;
}

.work-process-box-items p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.work-process-box-items:hover {
  transform: translateY(-8px);
  background: #243555;
  box-shadow: 0 15px 35px rgba(36, 53, 85, 0.25);
}

.work-process-box-items:hover .top-shape {
  transform: translateX(-50%) scale(1.1);
  opacity: 0.08;
}

.work-process-box-items:hover h3,
.work-process-box-items:hover p {
  color: #ffffff;
}

.work-process-box-items:hover .icon {
  background: #243555;
  border: 2px solid #fb6344;
}

.work-process-box-items:hover .icon i {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .work-process-section .row {
    flex-direction: column;
  }
}

.image-section {
  width: 100%;
  line-height: 0;
}

.full-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .faq-wrapper {
    padding: 5px;
  }
}

.faq-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.faq-section {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-section:hover {
  box-shadow: 0 30px 55px -15px rgba(0, 0, 0, 0.2);
}

.faq-header {
  background: linear-gradient(135deg, #042f62 0%, #0a3d7a 50%, #0c4a8a 100%);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  animation: subtleShift 20s ease infinite;
}

@keyframes subtleShift {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(5%, 5%);
  }

  100% {
    transform: translate(0, 0);
  }
}

.faq-header h2 {
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
  position: relative;
  animation: fadeInDown 0.6s ease-out;
}

.faq-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
  position: relative;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffd7b5;
  letter-spacing: 0.5px;
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: white;
}

.faq-item {
  border-bottom: 1px solid #eff3f9;
  border-right: 1px solid #eff3f9;
  transition: all 0.3s ease;
  background: white;
}

.faq-item:hover {
  background: #fefaf7;
}

.faq-item:nth-child(even) {
  border-right: none;
}

.faq-item:last-child,
.faq-item:nth-last-child(2) {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.8rem;
  cursor: pointer;
  background: transparent;
  transition: all 0.25s ease;
  gap: 16px;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a2f3c;
  margin: 0;
  flex: 1;
  letter-spacing: -0.2px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-question:hover h3 {
  color: #fb5b02;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f2f6fc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  flex-shrink: 0;
}

.faq-question:hover .faq-icon {
  background: #fb5b02;
  transform: rotate(90deg);
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fb5b02;
  stroke-width: 2.2;
  fill: none;
  transition: all 0.3s ease;
}

.faq-question:hover .faq-icon svg {
  stroke: white;
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.33, 1, 0.68, 1);
  background: #fafdff;
  border-top: 1px solid transparent;
}

.faq-answer.open {
  max-height: 300px;
  border-top: 1px solid #eef2fa;
}

.faq-answer p {
  padding: 1rem 1.8rem 1.5rem 1.8rem;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #2c4b5c;
  animation: fadeSlideIn 0.3s ease-out;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-cta {
  background: #fff8f3;
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid #ffe6d5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.faq-cta p {
  color: #1a2f3c;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.faq-cta p span {
  color: #fb5b02;
  font-weight: 700;
}

.cta-button {
  background: #fb5b02;
  color: white;
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.cta-button:hover {
  background: #e04e00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251, 91, 2, 0.3);
}

.cta-button:active {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 1.1rem 1.5rem;
  }

  .faq-answer p {
    padding: 0.9rem 1.5rem 1.2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    border-right: none;
  }

  .faq-item:nth-last-child(2) {
    border-bottom: 1px solid #eff3f9;
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-question {
    padding: 1rem 1.2rem;
  }

  .faq-question h3 {
    font-size: 0.92rem;
  }

  .faq-answer p {
    padding: 0.7rem 1.2rem 1rem 1.2rem;
    font-size: 0.85rem;
  }

  .faq-header {
    padding: 1.8rem 1.2rem 1.5rem;
  }

  .faq-header h2 {
    font-size: 1.5rem;
  }

  .faq-header p {
    font-size: 0.85rem;
  }

  .company-badge {
    font-size: 0.65rem;
    padding: 0.3rem 1rem;
  }

  .faq-cta {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
  }

  .faq-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .faq-header h2 {
    font-size: 1.3rem;
  }

  .faq-question h3 {
    font-size: 0.85rem;
  }

  .cta-button {
    padding: 0.6rem 1.4rem;
    font-size: 0.8rem;
  }
}

::-webkit-scrollbar {
  width: 6px;
  background: #e4eaef;
}

::-webkit-scrollbar-thumb {
  background: #fb5b02;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e04e00;
}

.team-section,
.team-section {
  color: #fff;
}

.team-box-items .team-image .content {
  background-color: #fb5b02 !important;
}

.team-box-items {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
}

.team-box-items img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-image {
  position: relative;
}

.team-image .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px;
  background: linear-gradient(to top, rgb(4 47 98), transparent);
  color: #fff;
}

.team-image .content h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.team-image .content p {
  font-size: 13px;
  margin: 8px 0 10px;
  color: #fff;
  line-height: 1.6;
}

.team-image .content a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.client-logo-section {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  position: relative;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 45px;
  width: max-content;
  animation: marqueeMove 28s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  position: relative;
  padding: 14px;
}

.logo-card {
  width: 220px;
  height: 120px;
  background: #ffffff;
  border-radius: 22px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.logo-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #e8e8e8;
  border-radius: 22px;
  top: 10px;
  right: -10px;
  z-index: -1;
}

.logo-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #d7d7d7;
  border-radius: 22px;
  top: 18px;
  right: -18px;
  z-index: -2;
}

.logo-card img {
  max-width: 150px;
  max-height: 70px;
  object-fit: contain;
  transition: 0.4s ease;
}

.logo-card:hover {
  transform: translateY(-8px);
}

.logo-card:hover img {
  transform: scale(1.05);
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .logo-track {
    gap: 30px;
  }

  .logo-card {
    width: 190px;
    height: 105px;
  }

  .logo-card img {
    max-width: 130px;
  }
}

@media (max-width: 768px) {
  .client-logo-section {
    padding: 40px 0;
  }

  .logo-track {
    gap: 22px;
  }

  .logo-card {
    width: 165px;
    height: 95px;
    border-radius: 18px;
  }

  .logo-card::before {
    top: 8px;
    right: -8px;
    border-radius: 18px;
  }

  .logo-card::after {
    top: 14px;
    right: -14px;
    border-radius: 18px;
  }

  .logo-card img {
    max-width: 110px;
    max-height: 55px;
  }
}

@media (max-width: 480px) {
  .logo-card {
    width: 140px;
    height: 85px;
  }

  .logo-card img {
    max-width: 90px;
  }
}


/*about.php --> Css*/

 .contact-section-3 {
  padding-bottom: 20px;
}

.contact-section-3 .contact-wrapper-3 .contact-content .feature-box-items-3 {
  max-width: 800px;
  width: 800px;
  margin-top: 20px !important;
}

.contact-section-3
  .contact-wrapper-3
  .contact-content
  .feature-box-items-3
  .row {
  --bs-gutter-x: 5px;
  --bs-gutter-y: 5px;
}

.contact-glass {
  margin: 2px 5px 5px 5px;
  border-radius: 0 0 50px 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-left: 2px solid rgba(255, 255, 255, 0.3);
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  border-top: none;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


  
