.about-us-banner {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .banner-image {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease-in-out;
  }
  
  .about-us-banner:hover .banner-image {
    transform: scale(1.05);
  }
  
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(42, 61, 124, 0.8) 0%, rgba(42, 61, 124, 0.6) 50%, rgba(42, 61, 124, 0) 100%);
  }
  
  .banner-content {
    position: relative;
    z-index: 2;
    padding-left: 5%;
  }
  
  .banner-content h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .animated-text {
    display: inline-block;
    animation: fadeInUp 1s ease-out, subtle-wave 3s ease-in-out infinite;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes subtle-wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  
  .floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  
  .floating-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    animation: float 8s infinite;
  }
  
  .floating-icons i:nth-child(1) { top: 20%; left: 10%; font-size: 24px; animation-delay: 0s; }
  .floating-icons i:nth-child(2) { top: 60%; left: 20%; font-size: 20px; animation-delay: 1s; }
  .floating-icons i:nth-child(3) { top: 40%; left: 30%; font-size: 28px; animation-delay: 2s; }
  .floating-icons i:nth-child(4) { top: 80%; left: 40%; font-size: 22px; animation-delay: 3s; }
  .floating-icons i:nth-child(5) { top: 30%; left: 60%; font-size: 26px; animation-delay: 4s; }
  .floating-icons i:nth-child(6) { top: 70%; left: 70%; font-size: 18px; animation-delay: 5s; }
  .floating-icons i:nth-child(7) { top: 50%; left: 80%; font-size: 30px; animation-delay: 6s; }
  .floating-icons i:nth-child(8) { top: 10%; left: 90%; font-size: 24px; animation-delay: 7s; }
  
  @keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-10px, 10px); }
    50% { transform: translate(0, 20px); }
    75% { transform: translate(10px, 10px); }
  }
  
  @media screen and (max-width: 768px) {
    .about-us-banner {
      height: 200px;
      justify-content: center;
    }
  
    .banner-content {
      text-align: center;
      padding-left: 0;
    }
  
    .banner-content h1 {
      font-size: 2rem;
      position: relative;
      left: 0;
      top: 41px;
    }
  
    .banner-overlay {
      background: rgba(42, 61, 124, 0.6);
    }
  
    .floating-icons i {
      font-size: 16px;
    }
  }
  :root {
    --primary-color:  #3a4d8c;
    --secondary-color: #2c3e50;
    --accent-color: #e93a7a;
    --text-color: #333;
    --bg-color: #ecf0f1;
  }
  
  .about-us {
    background-color: var(--bg-color);
    padding: 5rem 0;
    overflow: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  
  .image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
  }
  
  .image-container:hover {
    transform: perspective(1000px) rotateY(0);
  }
  
  .about-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(44, 62, 80, 0.8));
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .image-container:hover .image-overlay {
    opacity: 1;
  }
  
  .image-container:hover .about-image {
    transform: scale(1.1);
  }
  
  .content-container {
    flex: 1;
  }
  
  .about-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }
  
  .about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ff6e05;
    transition: width 0.3s ease;
  }
  
  .about-title:hover::after {
    width: 100%;
  }
  
  .timeline {
    position: relative;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
  }
  
  .timeline-item {
    margin-bottom: 2rem;
    padding-left: 30px;
    position: relative;
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .timeline-item:hover::before {
    transform: scale(1.2);
    background-color: #ff6e05;
  }
  
  .timeline-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .timeline-content p {
    color: var(--text-color);
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      padding: 0 1rem;
    }
  
    .image-container, .content-container {
      flex: none;
      width: 100%;
    }
  
    .image-container {
      margin-bottom: 2rem;
    }
  }
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

  .solutions {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
    padding: 5rem 0;
    font-family: 'Poppins', sans-serif;
    color: #3a4d8c;
    position: relative;
    overflow: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
  }
  
  .solutions-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    color: #3a4d8c;
  }
  
  .solutions-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #ff6e05;
  }
  
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .solution-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(58, 77, 140, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .solution-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(58, 77, 140, 0.2);
  }
  
  .solution-item i {
    font-size: 2.5rem;
    color:#ff6e05;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
  }
  
  .solution-item:hover i {
    transform: scale(1.2) rotate(5deg);
  }
  
  .solution-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #3a4d8c;
  }
  
  /* Background Animations */
  .background-animations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
  }
  
  .wifi-symbol, .smartphone, .laptop, .satellite-dish {
    position: absolute;
    opacity: 0.15;
    animation: float 20s infinite;
  }
  
  .wifi-symbol {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 15px solid #3a4d8c;
    border-top: 15px solid transparent;
    top: 10%;
    left: 10%;
  }
  
  .smartphone {
    width: 60px;
    height: 100px;
    background: #e93a7a;
    border-radius: 10px;
    bottom: 20%;
    right: 10%;
    animation-delay: -5s;
  }
  
  .smartphone::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 80px;
    background: #f0f4ff;
    top: 10px;
    left: 5px;
    border-radius: 5px;
  }
  
  .laptop {
    width: 150px;
    height: 100px;
    background: #3a4d8c;
    border-radius: 10px 10px 0 0;
    top: 50%;
    left: 50%;
    animation-delay: -10s;
  }
  
  .laptop::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 15px;
    background: #e93a7a;
    bottom: -15px;
    left: -15px;
    border-radius: 0 0 10px 10px;
  }
  
  .satellite-dish {
    width: 100px;
    height: 50px;
    background: #e93a7a;
    border-radius: 100px 100px 0 0;
    bottom: 10%;
    left: 20%;
    animation-delay: -15s;
  }
  
  .satellite-dish::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 40px;
    background: #3a4d8c;
    bottom: 0;
    left: 40px;
  }
  
  @keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 50px) rotate(5deg); }
    50% { transform: translate(100px, 0) rotate(-5deg); }
    75% { transform: translate(50px, -50px) rotate(5deg); }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .solution-item {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
  }
  
  .solution-item:nth-child(1) { animation-delay: 0.1s; }
  .solution-item:nth-child(2) { animation-delay: 0.2s; }
  .solution-item:nth-child(3) { animation-delay: 0.3s; }
  .solution-item:nth-child(4) { animation-delay: 0.4s; }
  .solution-item:nth-child(5) { animation-delay: 0.5s; }
  .solution-item:nth-child(6) { animation-delay: 0.6s; }
  .solution-item:nth-child(7) { animation-delay: 0.7s; }
  .solution-item:nth-child(8) { animation-delay: 0.8s; }
  
  @media (max-width: 1024px) {
    .solutions-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .solutions-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .solutions-grid {
      grid-template-columns: 1fr;
    }
  }

.tech-impact {
  position: relative;
  height: 600px;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
}

.tech-impact .container {
  position: relative;
  height: 100%;
  display: flex;
}

.image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-wrapper {
  position: relative;
  width: 50%;
  margin-left: auto;
  padding: 4rem 2rem;
  z-index: 3;
}

.text-content {
  max-width: 90%;
}

.text-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  animation: fadeInDown 0.8s ease-out;
}

.text-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  animation: fadeInRight 0.8s ease-out;
}

.contact-btn {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  background-color: #f7941d;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.contact-btn:hover {
  background-color: #e78200;
  transform: translateY(-3px);
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: linear-gradient(to left, rgba(58, 77, 140, 0.9), rgba(58, 77, 140, 0.7), rgba(58, 77, 140, 0.0));
  z-index: 2;
}

 

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(247, 148, 29, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(247, 148, 29, 0);
  }
}

@media (max-width: 768px) {
  .tech-impact {
    height: auto;
  }
  
  .content-wrapper {
    width: 100%;
    padding: 2rem 1rem;
    /* background: rgba(58, 77, 140, 0.8); */
  }
  
  .overlay {
    width: 100%;
  }
}