/* About Section Styles */

body {
  font-family: 'Inter', sans-serif !important;
}

.section-content {
  font-family: 'Inter', sans-serif !important;
}
.about-hero {
  padding: 8rem 0;
  background-color: var(--color-black);
  /* border-radius: 20px; */
  margin-top: -80px;
}

.about-headline h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 2rem;
  font-family: 'Inter' !important;
  color: #fff;
  margin-left: 25px;
}

.text-gradient {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.text-gradient::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.about-headline h1:hover .text-gradient::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Animation classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-headline h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 5rem 0;
  }
  .about-headline h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .about-headline h1 {
    font-size: 1.8rem;
  }
}

.about-container h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
  margin-left: 40px;
}

.welcome-container p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: #000;
  max-width: 500px;
  margin: 2rem 0 0 0;
  text-align: left;
}
/* Base styles for all sections */
.content-section {
  background: white;
  min-height: 100vh;
  padding: 60px 0;
  display: flex;
  align-items: center;
  margin-top: 100px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.text-column,
.image-column {
  width: 100%;
  padding: 0 15px;
}

.section-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 70px;
  height: 5px;
  /* background: linear-gradient(90deg, #00c6ff, #0072ff); */
  align-items: left;
  border-radius: 10px;
}



.section-content {
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.8;
  color: #333;
  text-align: justify;
  margin: 1.5rem 0;
}

.img-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.img-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-container:hover img {
  transform: scale(1.03);
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .content-section {
    padding: 40px 0;
    min-height: auto;
  }

  .container {
    padding: 0 15px;
  }

  .section-grid {
    flex-direction: column;
  }

  .text-column,
  .image-column {
    width: 100%;
    padding: 0;
  }

  .section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 20px;
  }

  .section-title:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .section-content {
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.7;
    margin: 1rem 0 2rem;
  }

  .img-container {
    margin: 20px 0;
    border-radius: 8px;
  }

  .img-container:after {
    display: none; /* Remove decorative border on mobile */
  }

  /* Specific adjustments for mission section */
  .mission-image {
    order: -1; /* Move image to top on mobile */
  }
}

@media (max-width: 576px) {
  .content-section {
    padding: 30px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .section-content {
    font-size: 1rem;
    line-height: 1.6;
  }

  .img-container {
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
}

/* Desktop styles */
@media (min-width: 992px) {
  .text-column {
    width: 58.33%; /* Equivalent to col-md-7 */
  }

  .image-column {
    width: 41.67%; /* Equivalent to col-md-5 */
  }

  .img-container {
    margin-left: 60px;
  }

  .img-container:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #0072ff;
    border-radius: 10px;
    opacity: 0.3;
    z-index: -1;
  }
}

/* Floating elements container */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Shapes - default styles */
.floating-elements span {
  position: absolute;
  display: block;
  opacity: 0.25;
  filter: blur(0.5px);
  animation: floatUp 10s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
}

/* Circle */
.floating-elements .circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, #00c9ff, #005bea);
  top: 15%;
  left: 12%;
  animation-delay: 0s;
}

/* Triangle */
.floating-elements .triangle {
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 60px solid #ff6bcb;
  top: 55%;
  left: 75%;
  animation-delay: 2s;
  transform-origin: center;
}

/* Another triangle with variation */
.floating-elements .triangle:nth-of-type(2) {
  top: 70%;
  left: 25%;
  border-bottom-color: #8e44ad;
  animation-delay: 4s;
}

/* Optional glowing square (if you re-enable) */
.floating-elements .square {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #f093fb, #f5576c);
  top: 35%;
  left: 50%;
  animation-delay: 6s;
  border-radius: 6px;
}

/* Floating upward motion */
@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-40px) rotate(180deg) scale(1.2);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0) rotate(360deg) scale(1);
    opacity: 0.3;
  }
}

/* Glowing pulsing effect */
@keyframes glowPulse {
  0%,
  100% {
    /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.2),
      0 0 20px rgba(255, 255, 255, 0.1); */
  }
  50% {
    /* box-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
      0 0 40px rgba(255, 255, 255, 0.4); */
  }
}


/* ===== Footer Section ===== */
.footer-section {
  background: #f8f9fa;
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

/* Floating Elements */
.footer-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.footer-float-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 198, 255, 0.1);
  animation: float 15s ease-in-out infinite;
}

.element-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 15%;
  animation-delay: 3s;
}

.element-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 10%;
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, 20px) rotate(5deg);
  }
  50% {
    transform: translate(0, 40px) rotate(0deg);
  }
  75% {
    transform: translate(-20px, 15px) rotate(-5deg);
  }
}

/* Left Column Styles */
.footer-contact {
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-lets-talk {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 1.5rem;
  /* text-transform: uppercase; */
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.contact-info a {
  font-size: 1.2rem;
  color: #555;
  /* margin-bottom: 1rem; */
  /* line-height: 1.6; */
  text-decoration: none;
}

.contact-email {
  font-weight: 600;
}

.social-links {
  margin-top: 26rem;
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  color: #000;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #0077b6;
}

/* Right Column Styles */
.footer-right-content {
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap */
  gap: 1.5rem 2rem; /* Vertical and horizontal gap */
  margin-bottom: 3rem;
  padding: 0;
  list-style: none;
  width: 100%; /* Ensure full width */
  margin-left: 33px !important;
}

/* Make each item take up 1/3 of the width */
.footer-nav ul li {
  flex: 0 0 calc(50% - 0.5rem); /* Account for gap */
  max-width: calc(50% - 1.5rem);
}

.footer-nav a {
  color: #111;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #0077b6;
}

/* Badges Section */
.footer-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
    gap: 2rem;
    justify-items: center; /* center logos horizontally */
    align-items: center;   /* center logos vertically */
    margin-bottom: 3rem;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px; /* all badges same height */
    padding: 0.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.badge-item img {
    max-width: 200px; /* same size for all logos */
    max-height: 140px;
    width: auto;
    height: auto;
}


.badge-item:hover {
    transform: translateY(-3px);
}

/* Remove unnecessary margin hack */
.teech {
    margin-left: -60px !important;
}

/* Legal Section */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 90px;
}

.copyright {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: #666;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #0077b6;
}

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

  .footer-nav ul {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 4rem 0 2rem;
  }

  .teech {
    margin-left: 0 !important;
  }

  .footer-contact,
  .footer-right-content {
    padding: 0 1rem;
  }


  .footer-badges {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .legal-links {
    justify-content: center;
  }

  .footer-nav ul {
    flex-direction: column;
  }
  .footer-nav ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .badge-item {
    align-items: center;
  }

  .clutch-badge {
    margin-left: -40px !important;
  }
   .badge-designrush {
    max-width: 200px; /* adjust size as needed */
    margin: 0 auto;   /* center it */
    margin-left: -30px !important;
  }

    .footer-nav a {
    margin-left: -35px !important;
  }

  .footer-nav {
    margin-top: 60px;
  }
}


.associated-companies {
  background: #f9f9f9;
}

.section-title-ac {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}

.section-subtitle-ac {
  color: #666;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.company-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 120px;
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.company-logo {
  max-height: 90px;
  object-fit: contain;
}

.mission-video {
  max-width: 550px;   /* Reduce overall width */
  margin: 0 auto;     /* Center it */
  border-radius: 12px; /* Optional rounded corners */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* Nice subtle shadow */
}

.mission-video video {
  width: 100%;
  height: auto;
  display: block;
}

.badge-item img {
    max-width: 200px; /* same size for all logos */
    max-height: 140px;
    width: auto;
    height: auto;
}

.values-bottom-image {
  max-width: 1500px;
    width: 100%;
    margin-top: 50px; /* optional spacing from values section */
}

.values-bottom-image img.full-width-img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover; /* ensures image covers width nicely */
    margin-bottom: -85px !important;
}


/* Client Testimonials Section */
.client-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 80px;
    text-align: right;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f1f2e !important;
    position: relative;
    display: inline-block;
    align-items: left !important;
    text-align: left !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4F46E5, #8B5CF6);
    border-radius: 2px;
    align-items: left !important;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
}

.carousel-track {
    display: flex;
    overflow: hidden;
    position: relative;
    height: 400px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-item.active {
    opacity: 1;
    z-index: 1;
}

.testimonial-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    display: flex;
    gap: 30px;
}

.user-avatar {
    width: 120px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f3f4ff;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.2);
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 160px;
}

.user-details h4 {
    margin: 15px 0 5px;
    font-size: 1.2rem;
    color: #1f1f2e;
}

.user-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.rating {
    margin: 10px 0;
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonial-text {
    flex: 1;
    padding-left: 30px;
    border-left: 1px solid #eee;
}

.testimonial-text p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.message-time {
    font-size: 0.8rem;
    color: #adb5bd;
    text-align: right;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #4F46E5;
    z-index: 2;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: #4F46E5;
    color: white;
}

.carousel-control.prev {
    left: -25px;
}

.carousel-control.next {
    right: -25px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: #4F46E5;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .testimonial-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
    }
    
    .testimonial-text {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    
    .carousel-track {
        height: 500px;
    }
}

@media (max-width: 767px) {
    
    .testimonial-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  
   .testimonial-text {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }
    .client-testimonials {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial-carousel {
        padding: 0 30px;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-control.prev {
    left: 5px;
  }
    
   .carousel-control.next {
    right: 5px;
  }
    
  .user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 0;
    object-fit: cover;
    margin: 20px 0;
}


}

@media (max-width: 480px) {
    .client-testimonials {
        padding: 180px 0 160px; /* More space top and bottom */
    }

    .section-title {
        font-size: 1.0rem; /* Slightly larger for readability */
        text-align: center;
    }

    .testimonial-carousel {
        padding: 0 10px;
    }

    .carousel-control {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .carousel-control.prev {
        left: -10px;
    }

    .carousel-control.next {
        right: -10px;
    }

   .user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 0;
    object-fit: cover;
    margin: 20px 0;
}



    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial-author {
        font-size: 0.9rem;
        margin-top: 10px;
    }
}

.section-title {
    position: relative; /* make sure the parent is positioned */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 60px; /* move 20px from the left edge */
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4F46E5, #8B5CF6);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section-title::after {
        left: 40px; /* reduce left on mobile */
    }

    .section-content {
      text-align: justify;
    }
}

.who-we-are-video {
    width: 100%;          /* full width of parent */
    max-width: auto;     /* optional max width */
    height: 600px;        /* reduced height */
    overflow: hidden;     /* hide overflow */
    border-radius: 8px;   /* optional rounded corners */
    position: relative;
}

.who-we-are-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* maintain aspect ratio and fill container */
    display: block;
}


.footer-contact {
  display: flex;
  flex-direction: column;
}

@media (max-width: 576px) {
  .social-links {
    order: 2;  /* move to bottom */
    margin-top: 1.5rem; /* spacing */
  }
}

@media (max-width: 576px) {
  .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 10px 20px; /* row-gap, col-gap */
    padding: 0;
    margin-top: 10px ;
    list-style: none;
  }

  .footer-nav li {
    margin: 0; /* reset margins */
  }

  .footer-nav {
    margin-top: 30px; /* adjust spacing if needed */
  }
}
/* Mobile only */
@media (max-width: 768px) {
  .footer-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 15px; /* space between items */
    justify-items: center;
  }

  .footer-badges .badge-item {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .pill-btn {
    /* background: #ffffff !important;  keep white background */
    color: #000000 !important;       /* force black text */
    font-size: 5rem;                 /* slightly larger for readability */
    padding: 0.75rem 1rem;           /* add horizontal padding */
    display: inline-block;           /* ensure text shows properly */
  }

  .pill-btn:hover,
  .pill-btn:focus {
    background: #000000 !important;
    /* color: #ffffff !important; */
  }
}