/*   ABOUT PAGE STYLES
------------------------------ */
body {
  font-family: 'Montserrat', sans-serif;
}
/* ======= Banner ======= */
.about-banner {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

/* Background image with opacity using ::before */
.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://manakanalytics.com/smartphone-6701409_1280.jpg') center/cover no-repeat;
  opacity: 0.5; /* adjust opacity here (0 = fully transparent, 1 = fully visible) */
  z-index: 0;   /* behind the text and floating circles */
}

/* Floating circles animations */
.about-banner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  top: -50px;
  left: -50px;
  z-index: 1; /* above background but behind text */
}

.about-banner .circle-2 {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite reverse;
  bottom: -60px;
  right: -60px;
  z-index: 1; /* above background but behind text */
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.about-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  color: #e30613; /* Red matching the logo */
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5); /* makes it pop over the image */
}

.about-banner p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  color: #ffffff; /* White text for paragraph */
  text-shadow: 1px 1px 6px rgba(0,0,0,0.4); /* subtle shadow for readability */
}

/* ======= About Content ======= */
main {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

main h2 {
  color: #0b2c6b;
  font-weight: 700;
  margin-bottom: 20px;
}

main p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

/* ======= Mission & Vision Section ======= */
.mission-vision {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  background: #f8f9fb;
}

.mission-text {
  flex: 1 1 450px;
  padding: 10px;
}

.mission-text h2 {
  color: #0b2c6b;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.mission-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e30613;
  margin: 10px auto 0;
}

.mission-text p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.mission-image {
  flex: 1 1 400px;
  text-align: center;
}

.mission-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ======= Responsive Design ======= */
@media (max-width: 992px) {
  .about-banner h1 {
    font-size: 38px;
  }
  .about-banner p {
    font-size: 16px;
  }
  .mission-vision {
    flex-direction: column;
    text-align: center;
  }
  .mission-text h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .about-banner {
    padding: 70px 15px;
  }
  .about-banner h1 {
    font-size: 30px;
  }
  .about-banner p {
    font-size: 14px;
  }
}

/* ========== Stats Section ========== */
.stats-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left Image */
.stats-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-image img {
  width: 100%;
  max-width: 600px;
  height: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(188, 11, 11, 0.1);
  transition: transform 0.4s ease;
}

.stats-image img:hover {
  transform: scale(1.03);
}

/* Right Side Stats */
.stats-content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: center;
}

/* Cards */
.stats-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgb(214, 8, 8);
  padding: 25px;
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Inside Card */
.stats-item {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(35, 31, 31, 0.116);
  transition: transform 0.3s ease, background 0.3s ease;
}

.stats-item:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.stats-icon {
  margin-bottom: 15px;
}

.stats-icon i {
  font-size: 60px;
  color: #e30613;
  transition: color 0.3s ease, transform 0.3s ease;
}

.stats-item:hover .stats-icon i {
  color: #000000;
  transform: scale(1.1);
}

.stats-number {
  font-size: 48px;
  font-weight: 700;
  color: #e30613;
  margin-bottom: 8px;
}

.stats-label {
  font-size: 16px;
  color: #333;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .stats-container {
    flex-direction: column;
    text-align: center;
  }

  .stats-image {
    order: -1;
    width: 100%;
    margin-bottom: 40px;
  }

  .stats-image img {
    max-width: 450px;
    height: auto;
  }

  .stats-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .stats-image img {
    max-width: 400px;
  }

  .stats-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-number {
    font-size: 40px;
  }

  .stats-icon i {
    font-size: 50px;
  }
}

@media (max-width: 576px) {
  .stats-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-image img {
    max-width: 350px;
  }

  .stats-number {
    font-size: 34px;
  }

  .stats-icon i {
    font-size: 45px;
  }
}


.expertise-section {
  background: linear-gradient(135deg, #fff6f6, #ffffff);
  padding: 80px 16px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ff4b2b;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}

.section-header h2 span {
  color: #ff4b2b;
}

.section-header p {
  max-width: 650px;
  margin: auto;
  font-size: 16px;
  color: #555;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.expertise-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  opacity: 0;
  transition: 0.35s ease;
  z-index: 0;
}

.expertise-card:hover::before {
  opacity: 1;
}

.expertise-card:hover {
  transform: translateY(-10px);
}

.expertise-card .icon {
  width: 64px;
  height: 64px;
  margin: auto;
  border-radius: 50%;
  background: rgba(255, 75, 43, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ff4b2b;
  position: relative;
  z-index: 1;
  transition: 0.35s ease;
}

.expertise-card h3 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  position: relative;
  z-index: 1;
  transition: 0.35s ease;
}

.expertise-card:hover .icon {
  background: #fff;
  color: #ff4b2b;
}

.expertise-card:hover h3 {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }
}


/* ========== Our Solutions Section ========== */
.solutions-section {
  background-color: #fafafa;
  padding: 60px 0;
  text-align: center;
}

.solutions-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-subtitle {
  color: #e30613;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.solutions-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e30613;
  margin: 10px auto 0;
}

.solutions-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b2c6b;
  margin-bottom: 40px;
}

/* ====== Cards Grid ====== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
  align-items: stretch;
}

/* ====== Solution Card ====== */
.solution-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  text-align: center;
  padding: 60px 30px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  height: 100%;
}

.solution-card .solution-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.solution-card .solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-image img {
  transform: scale(1.1);
}

.solution-card h3,
.solution-card p {
  position: relative;
  z-index: 1;
  color: #fff;
}

.solution-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Hover Effects ===== */
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .solutions-title {
    font-size: 30px;
  }

  .solution-card {
    padding: 50px 25px;
  }
}

@media (max-width: 575px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solutions-title {
    font-size: 26px;
  }

  .solution-card {
    padding: 45px 20px;
  }
}

/* ===== Brochure Section ===== */
.brochure-section {
  background: linear-gradient(135deg, #0b2c6b 0%, #e30613 100%);
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.brochure-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

/* Text Content */
.brochure-content {
  flex: 1;
  min-width: 300px;
}

.brochure-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.brochure-text {
  font-size: 18px;
  color: #f5f5f5;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 500px;
}

/* Download Button */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #e30613;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.download-btn:hover {
  background: #e30613;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Image Section */
.brochure-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.brochure-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.brochure-image img:hover {
  transform: scale(1.05);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .brochure-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .brochure-image img {
    max-width: 400px;
  }

  .brochure-title {
    font-size: 30px;
  }

  .brochure-text {
    font-size: 16px;
    margin: 0 auto 25px;
  }

  .download-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .brochure-image img {
    max-width: 320px;
  }

  .brochure-title {
    font-size: 26px;
  }

  .brochure-text {
    font-size: 15px;
  }
}
/* ===== Our Process Section ===== */
.process-section {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 80px 0;
  text-align: center;
}

.process-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
.process-subtitle {
  color: #e30613;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.process-title {
  color: #0b2c6b;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* Steps Layout */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Individual Step */
.process-step {
  flex: 1 1 calc(25% - 30px);
  text-align: left;
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

/* Image */
.process-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.process-step:hover .process-img img {
  transform: scale(1.1);
}

/* Content */
.process-content h3 {
  color: #0b2c6b;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-content h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #e30613;
  margin-top: 6px;
  border-radius: 2px;
}

.process-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .process-steps {
    gap: 30px;
  }

  .process-step {
    flex: 1 1 calc(50% - 20px);
  }

  .process-title {
    font-size: 30px;
  }

  .process-img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .process-step {
    flex: 1 1 100%;
    text-align: center;
  }

  .process-content h3::after {
    margin: 8px auto;
  }

  .process-img {
    height: 160px;
  }

  .process-content h3 {
    font-size: 20px;
  }

  .process-content p {
    font-size: 14px;
  }
}

    .testimonial-section {
      padding: 80px 0;
      text-align: center;
    }

    .testimonial-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 50px;
      color: #000;
    }

    .swiper {
      width: 100%;
      padding-bottom: 50px;
    }

    .testimonial-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
      padding: 30px;
      text-align: left;
      transition: transform 0.3s ease;
      height: 100%;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
    }

    .stars {
      color: #f9a825;
      margin-bottom: 15px;
    }

    .testimonial-text {
      font-size: 15px;
      line-height: 1.7;
      color: #444;
      margin-bottom: 25px;
      min-height: 120px;
    }

    .user-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .user-info img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }

    .user-details h5 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
      color: #000;
    }

    .user-details p {
      margin: 0;
      font-size: 14px;
      color: #666;
    }

    @media (max-width: 768px) {
      .testimonial-card {
        padding: 20px;
      }
      .testimonial-section h2 {
        font-size: 2rem;
      }
    }