 /* === Basic Typography === */
h1 {
  font-size: 50px;
}

/* === Animation === */
.text-center {
  animation: slideIn 1s ease-out forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* === Utility Classes === */
.hidden {
  display: none;
}

/* === Layout Fixes === */
.col-lg-6 {
  float: right;
}

.post-boxed.d-xl-inline-block {
  text-align: center;
}

/* === Hero / Swiper Slider === */
.hero-slider,
.swiper-container,
.swiper-slide {
  height: 100vh;
  position: relative;
}

.slide-video,
.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 1;
}

.swiper-slide-caption {
  position: relative;
  z-index: 2;
}

/* === Buttons (About Section) === */
.abt .button {
  padding: 0.6em 1.5em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  color: #000;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  outline: 2px solid #000;
  transition: all 1s;
}

.abt button:hover {
  color: #fff;
  transform: scale(1.1);
  outline: 2px solid #70bdca;
  box-shadow: 4px 5px 17px -4px #268391;
}

.abt button::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #000;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1s;
}

.abt button:hover::before {
  width: 250%;
}

/* === Our Works Section === */
.our-works-section {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

/* === Works Grid === */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  justify-items: center;
}

/* === Work Card === */
.work-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
}

.work-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* === Work Image === */
.work-img,
.image-wrap {
  position: relative;
  overflow: hidden;
}

.work-img img,
.image-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #f0f0f0;
  transition: transform 0.6s ease;
}

.work-card:hover img {
  transform: scale(1.1);
}

/* === Overlay === */
.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 53, 90, 0.9);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease;
}

.work-card:hover .work-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* === Work Card Text === */
.work-card h5 {
  margin: 15px 0;
  font-weight: 600;
  font-size: 18px;
}

.work-card h5 a {
  text-decoration: none;
  color: #19355a;
  transition: color 0.3s;
}

.work-card:hover h5 a {
  color: #ffaa00;
}

/* === Text Content in Work Cards === */
.content {
  padding: 20px;
}

.content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #007bff;
  margin-bottom: 10px;
}

.content h4 a {
  color: inherit;
  text-decoration: none;
}

.content p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

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

  .content h4 {
    font-size: 18px;
  }

  .content p {
    font-size: 14px;
  }
}
.what-we-do h3 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.what-we-do ul li {
  margin-bottom: 10px;
}

.what-we-do img {
  max-width: 90%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.what-we-do img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .what-we-do {
    text-align: center;
  }
  .what-we-do ul {
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
  }
}/* === Testimonials Section (Light Theme, Seamless Scroll) === */
.testimonials-section {
  background: linear-gradient(to right, #f0efefff, #f7f8fa);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.testimonials-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
  text-align: center;
}

/* === Testimonial Row === */
.testimonial-row {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 40px;
  position: relative;
}

/* Create infinite seamless scroll */
.testimonial-track {
  display: inline-flex;
  gap: 30px;
  animation: scroll-left 50s linear infinite;
}

.right-to-left .testimonial-track {
  animation: scroll-right 50s linear infinite;
}

/* Duplicate the content once to make seamless loop */
.testimonial-track::after {
  content: "";
  display: inline-flex;
  width: 100%;
}

/* === Testimonial Card === */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  width: 320px;
  max-height:290px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eaeaea;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  height: 60%;
  margin-bottom: 20px;
  font-style: italic;
  white-space: normal; 
  overflow-wrap: break-word; 
  word-break: break-word; 
  overflow: hidden;
}

/* === Client Info === */
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 30%;
}

.client-info img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  
}

.client-info h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.client-info span {
  font-size: 14px;
  color: #777;
}

/* === Animation Keyframes (Seamless Loop) === */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* === Hover Pause === */
.testimonial-row:hover .testimonial-track {
  animation-play-state: paused;
}

/* === Responsive === */
@media (max-width: 768px) {
  .testimonial-card {
    width: 260px;
    padding: 20px;
  }
  .testimonials-section h3 {
    font-size: 2rem;
  }
}

.mintopic{
  font-size: 16px;
  line-height: 6px;
  color: white;
  margin-top: 25px;
}
.clients-section .swiper {
  width: 100%;
  padding: 20px 0; /* reduce vertical padding */
}

.clients-section .swiper-wrapper {
  align-items: center;
}

.clients-section .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: auto !important; /* override Swiper’s auto height for rows */
  min-height: 140px; /* keeps things aligned without too much height */
  transition: transform 0.3s ease;
}
.clients-section .swiper-wrapper {
  display: flex;
  flex-wrap: wrap; /* allow slides to wrap into multiple rows */
}

.clients-section .swiper-slide {
  flex: 0 0 auto;
  margin-bottom: 20px; /* spacing between rows */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.clients-section .swiper-slide:hover {
  transform: scale(1.05);
}

.clients-section .client-logo {
  max-height: 60px; /* reduce logo height */
  margin-bottom: 8px;
  object-fit: contain;
}

.clients-section p {
  margin: 0;
  font-size: 14px;
  color: #333;
}
@media (min-width: 992px) {
  .clients-section .swiper {
    padding: 10px 0;
  }
  .clients-section .swiper-slide {
    min-height: 120px;
  }
  .clients-section .client-logo {
    max-height: 50px;
  }
}
/* Default logo image styling (as before) */
.clients-section .client-logo {
  max-height: 70px;
  margin-bottom: 8px;
  object-fit: contain;
}

/* Text-based logo styling */
.clients-section .client-text-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* width: 130px; */
  height: 70px;
  background: linear-gradient(135deg, #d37b08ff, #ec7607ff);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
}

.clients-section .client-text-logo:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #005eff, #00b4ff);
}
