     /* Rest of your existing CSS remains unchanged */
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      max-width: 100%;
      overflow-x: hidden;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f5f5f5;
    }

    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.8);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 40px;
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 1000;
    }

    .navbar .logos img {
      height: 50px;
    }

    .navbar ul {
      list-style: none;
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .navbar ul li a {
      text-decoration: none;
      color: #000;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .navbar ul li:last-child a {
      border: 2px solid #000;
    }

    .navbar ul li a:hover {
      color: #00bcd4;
      background: #f1f1f1;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      width: 30px;
      height: 24px;
      justify-content: space-between;
      z-index: 1001;
    }

    .menu-toggle div {
      height: 3px;
      width: 100%;
      background-color: #000;
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .menu-toggle.open div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.open div:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.open div:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: rgba(255, 255, 255, 0.97);
      min-width: 220px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      border-radius: 8px;
      z-index: 1001;
      padding: 10px 0;
      top: 100%;
      left: 0;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }

    .dropdown-content a {
      color: #333;
      padding: 10px 20px;
      text-decoration: none;
      display: block;
      transition: all 0.2s;
      font-size: 0.95rem;
    }

    .dropdown-content a:hover {
      background-color: #f1f1f1;
      color: #00bcd4;
      padding-left: 25px;
    }

    .dropdown:hover .dropdown-content {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    .dropdown > a::after {
      content: "▾";
      margin-left: 5px;
      font-size: 0.9em;
      display: inline-block;
      transition: transform 0.3s ease;
    }

    .dropdown:hover > a::after {
      transform: rotate(180deg);
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: flex;
      }

      .navbar {
        padding: 12px 20px;
      }

      .navbar ul {
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        background-color: white;
        width: 80%;
        height: 100vh;
        padding-top: 80px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.15);
        transition: left 0.3s ease;
        z-index: 999;
      }

      .navbar ul.active {
        left: 0;
      }

      .navbar ul li {
        margin: 15px 0;
        text-align: center;
        width: 100%;
      }

  .navbar ul li a {
    display: block;
    font-size: 1.1rem;
    padding: 2px 0;
  }

  .navbar ul li:last-child a {
    border: 2px solid #000;
    width: fit-content;
    margin: 10px auto;
    padding: 8px 20px;
    border-radius: 6px;
  }



      .dropdown-content {
        display: none !important;
        position: static;
        background: #f0f0f0;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        transform: none;
        border-radius: 0;
      }

      .dropdown.active .dropdown-content {
        display: block !important;
      }

      .dropdown > a::after {
        display: none;
      }

      .navbar .logos {
        order: -1;
      }
    }

    .hero {
      height: 100vh;
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-position: center center;
      animation: slideBackground 15s infinite;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 20px;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3));
      z-index: 1;
    }

    .hero > * {
      position: relative;
      z-index: 2;
    }

    @keyframes slideBackground {
      0%   { background-image: url('image/team2.JPEG'); }
      33%  { background-image: url('image/groupteam.jpeg'); }
      66%  { background-image: url('image/teamg.JPEG'); }
      100% { background-image: url('image/team3.JPEG'); }
    }

    .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 2.8rem;
      font-weight: 900;
      margin-bottom: 1rem;
      margin-top: -30px;
      letter-spacing: 1px;
      color: white;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    }

    .typewriter {
      font-size: 1.8rem;
      white-space: nowrap;
      overflow: hidden;
      border-right: 4px solid white;
      width: 0;
      margin-top: -10px;
      animation: typing 4s steps(30, end) forwards, blink .8s step-end infinite;
      color: white;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    }

    @keyframes typing {
      from { width: 0; }
      to { width: 290px; }
    }

    @keyframes blink {
      50% { border-color: transparent; }
    }
/* About Us Section */
.about-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 90px;
  background-color: #fff;
}

.about-container {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  color: #fff;
  max-width: 1500px;
  border-radius: 12px;
  padding: 40px 50px 50px;
  box-shadow: 0 0 25px rgba(0,0,0,0.7);
  overflow: hidden;
}

.about-container > h1 {
  margin: 0 0 35px;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 1.1px;
  border-bottom: 2px solid #00bcd4;
  padding-bottom: 10px;
  user-select: none;
  color: #fff;
}

.content-wrapper {
  position: relative;
  min-height: 180px;
}

.content-subheading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #00bcd4;;
}

.content-text {
  font-size: 1.3rem;
  line-height: 1.65;
  color: #ddd;
  white-space: pre-wrap;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-right {
  animation: fadeInRight 0.6s ease forwards;
}

.arrows {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  user-select: none;
}

.arrow-btn {
  cursor: pointer;
  color: #00b4d8;
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 26px;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: color 0.25s ease;
}

.arrow-btn:hover, .arrow-btn:focus {
  color: #90e0ef;
  outline: none;
}

.separator {
  width: 2px;
  height: 38px;
  background: #00b4d8;
  opacity: 0.85;
}

/* Media Queries for Responsive Layout */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px;
  }

  .navbar ul {
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.97);
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 100px;
    text-align: center;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .navbar ul.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar ul li a {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .typewriter {
    font-size: 1.2rem;
  }

  .about-wrapper {
    padding: 60px 20px;
  }

  .about-container {
    padding: 30px 25px;
  }

  .about-container > h1 {
    font-size: 1.7rem;
  }

  .content-subheading {
    font-size: 1.2rem;
  }

  .content-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .typewriter {
    font-size: 1rem;
  }

  .about-wrapper {
    padding: 40px 15px;
  }

  .about-container {
    padding: 25px 20px;
  }

  .arrow-btn {
    font-size: 22px;
    width: 34px;
    height: 34px;
  }

  .separator {
    height: 34px;
  }
}


/* Main Content Section */
.section {
    min-height: 100vh;
    padding: 80px 120px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

.section-content {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    color: #fff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    width: 65%;
}


.section-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: #00bcd4;
    margin-bottom: 20px;
}

.section-content p {
    font-size: 14px;
    font-weight: 350;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 15px;
}


/* Icons Container */
.icons-container {
    display: none;
    position: fixed;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 1000;
}

.icon-wrapper {
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.icon-wrapper.active {
    opacity: 1;
}

/* Tablet Devices */
@media (max-width: 1200px) {
    .section {
        padding: 60px 40px;
        min-height: auto;
    }

    .section-content {
        width: 100%;
    }

    .icons-container {
        position: relative;
        display: block !important;
        width: 300px;
        height: 300px;
        margin: 40px auto;
        transform: none;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 20px;
    }

    .welcome-section h1 {
        font-size: 30px;
    }

    .section {
        padding: 40px 20px;
    }

    .section-content h2 {
        font-size: 24px;
    }

    .section-content p {
        font-size: 16px;
    }

    .ct-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .icons-container {
        width: 250px;
        height: 250px;
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {
    .welcome-section h1 {
        font-size: 24px;
    }

    .section-content h2 {
        font-size: 20px;
    }

    .section-content p {
        font-size: 15px;
    }

    .icons-container {
        width: 200px;
        height: 200px;
    }
}
.client-heading {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  color: #2c3e50;
  margin-top: 60px;
  margin-bottom: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

.client-heading::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #3498db;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 35px;
  padding: 10px 20px;
  background-color: #fff;
}

.logo {
  width: 140px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

/* -------- Responsive Styles -------- */
@media (max-width: 768px) {
  .client-heading {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
  }

  .client-heading::after {
    width: 60px;
    height: 3px;
  }

  .client-logos {
    gap: 30px;
    padding: 40px 10px;
  }

  .logo {
    width: 140px;
    height: 100px;
  }

  .logo img {
    max-height: 80px;
  }
}

@media (max-width: 480px) {
  .client-heading {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 14px;
  }

  .client-heading::after {
    width: 50px;
    height: 3px;
  }

  .client-logos {
    gap: 10px;
    padding: 30px 10px;
  }

  .logo {
    width: 80px;
    height: 70px;
  }

  .logo img {
    max-height: 70px;
  }
}
/* What Makes Us Unique – Stylish, Creative & Responsive */


/*   <!--     user review --> */
    .testimonial-section {
      background: #fff;
      padding: 60px 20px;
      text-align: center;
    }

    .testimonial-section h2 {
      font-size: 2rem;
      color: #003366;
      margin-bottom: 40px;
    }

    .carousel-container {
      max-width: 960px; /* Reduced from 1200px */
      margin: auto;
      overflow: hidden;
      position: relative;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.6s ease;
    }

    .testimonial-card {
      flex: 0 0 33.3333%;
      box-sizing: border-box;
      padding: 15px;
    }

    .card-inner {
      background: #f8f9fa;
      padding: 25px;
      border-radius: 12px;
      min-height: 250px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
      border: 3px solid #2e86de;
    }

    .name {
      font-weight: 600;
      color: #003366;
      margin-bottom: 4px;
    }

    .role {
      color: #777;
      font-size: 0.9rem;
      margin-bottom: 10px;
    }

    .text {
      font-size: 0.95rem;
      color: #333;
    }

    .dots {
      text-align: center;
      margin-top: 25px;
    }

    .dot {
      display: inline-block;
      height: 12px;
      width: 12px;
      margin: 0 6px;
      background-color: #ccc;
      border-radius: 50%;
      cursor: pointer;
    }

    .dot.active {
      background-color: #2e86de;
    }

    @media (max-width: 900px) {
      .testimonial-card {
        flex: 0 0 50%;
      }
    }

    @media (max-width: 600px) {
      .testimonial-card {
        flex: 0 0 100%;
      }
    }
/* servies style */

  .services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.section-heading{
            background: black;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 10px;
        }

        .section-heading h1 {
            font-size: 42px;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            
        }

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    width: 200px;
    height: 200px;
    background: rgba(0, 188, 212, 0.1);
    transform: translateX(-50%);
    border-radius: 50%;
    filter: blur(40px);
}

.section p {
    font-size: 1.1rem;
    color: black;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    animation: cardEntrance 0.6s ease-out forwards;
    animation-delay: 1s; /* Start animation after 1 sec */
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00bcd4, #006699);
    z-index: -1;
    opacity: 0.3; /* Slightly visible always */
    animation: rotateGradient 3s linear infinite;
    border-radius: 20px;
}
.card:hover::before {
    opacity: 1;
    animation: rotateGradient 3s linear infinite;
}

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

.card h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
}

.card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    background: none;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    transform: none;
    animation: none;
}

.card:hover h3 {
    color: #00bcd4;
}

/* Staggered Card Animations */
.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }
.card:nth-child(3) { animation-delay: 0.6s; }

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes rotateGradient {
    0% { transform: rotate(0deg) scale(1.02); }
    100% { transform: rotate(360deg) scale(1.02); }
}

@media (max-width: 768px) {
    .section-heading h1 {
        font-size: 2.5rem;
    }
    
    .card {
        padding: 2rem;
    }
}
/* service b2b b2c b2g */
.dynamic-solutions {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sectn-heding {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  color: #2c3e50;
  margin-top: 6px;
  margin-bottom: 5px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

.sectn-heding::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #3498db;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.solution-container {
    max-width: 950px;
    margin: 0 auto;
   
}

.solution-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.solution-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: #003366;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
}

.solution-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #00bcd4;
    transition: width 0.3s ease;
}

.solution-btn.active::after {
    width: 100%;
}

.solution-btn.active {
    color: #00bcd4;
}

.solution-content {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.solution-panel {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.solution-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #111; /* dark content box */
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.gradient-heading {
    color: #00bcd4;
}

.animated-list {
    list-style: none;
    padding: 0;
}

.animated-list li {
    font-size: 1.1rem;
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(0, 188, 212, 0.1);
    border-left: 4px solid #00bcd4;
    border-radius: 8px;
    transform: translateX(-20px);
    opacity: 0;
    animation: listEntry 0.6s forwards;
    color: #fff;
}

@keyframes listEntry {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.panel-lottie {
    width: 100%;
    height: 300px;
}

@media (max-width: 768px) {
    .panel-content {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .solution-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .solution-btn {
        width: 100%;
    }
}

/* Extra Responsive Enhancements */
@media (max-width: 1024px) {
  .panel-content {
    padding: 2rem;
    gap: 1.5rem;
  }

  .solution-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .sectn-heding {
    font-size: 28px;
    margin-top: 40px;
  }

  .solution-btn {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .panel-content {
    padding: 1.5rem;
  }

  .panel-lottie {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .dynamic-solutions {
    padding: 2rem 1rem;
  }

  .sectn-heding {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .solution-btn {
    font-size: 0.95rem;
  }

  .panel-content {
    padding: 1rem;
  }

  .animated-list li {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .panel-lottie {
    height: 200px;
  }
}
/* network */
/* network */
  .emporis-stats-small {
    background: #f7f9fc;
    padding: 40px 15px;
    font-family: 'Segoe UI', sans-serif;
  }

  .emporis-stats-small .main-title {
    font-size: 1.4rem;
    text-align: center;
    color: #0d47a1;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .emporis-stats-small .image-banner {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .emporis-stats-small .image-banner img {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  }

  .emporis-stats-small .stat-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: auto;
  }

  .emporis-stats-small .stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .emporis-stats-small .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  }

  .emporis-stats-small .stat-number {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0d47a1;
    margin-bottom: 8px;
  }

  .emporis-stats-small .stat-description {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.4;
  }

  @media (max-width: 600px) {
    .emporis-stats-small .main-title {
      font-size: 1.2rem;
    }

    .emporis-stats-small .stat-number {
      font-size: 1.4rem;
    }

    .emporis-stats-small .stat-description {
      font-size: 0.8rem;
    }
  }
/*   carear */
   
/* gallery sryle */
/* Gallery container */
.gallery-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

/* Background image */
.gallery-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/gallery8.jpg') center/cover no-repeat;
  filter: blur(0px);
  transition: filter 1s ease-in-out;
  z-index: 0;
}

.gallery-container.blurred::before {
  filter: blur(10px);
}

/* Fullscreen center image */
.center-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 1s ease, filter 1s ease;
}

.center-image.zoom {
  transform: scale(1.1);
  filter: blur(5px);
}

/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  transition: transform 1s ease;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

/* Image styles */
.image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeIn 1s ease forwards;
  animation-play-state: paused;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
  filter: brightness(1.2);
}

/* Staggered animation delays */
.image:nth-child(1) { animation-delay: 0.2s; }
.image:nth-child(2) { animation-delay: 0.4s; }
.image:nth-child(3) { animation-delay: 0.6s; }
.image:nth-child(4) { animation-delay: 0.8s; }
.image:nth-child(5) { animation-delay: 1s; }
.image:nth-child(6) { animation-delay: 1.2s; }
.image:nth-child(7) { animation-delay: 1.4s; }
.image:nth-child(8) { animation-delay: 1.6s; }
.image:nth-child(9) { animation-delay: 1.8s; }

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

/* ✅ Responsive Grid: Tablet and Phone */
@media (max-width: 992px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .image {
    height: 180px;
  }
}

/* Footer styles */
.simple-footer {
  background-color: #222;
  color: #ddd;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  box-shadow: 0 -1px 5px rgba(0,0,0,0.3);
  user-select: none;
}


/* careers at emporis */
body {
      margin: 0;
      padding: 0;
      font-family: "Segoe UI", sans-serif;
      background-color: #f7f9fc;
    }

    .containercareer {
      max-width: 900px;
      margin: 50px auto;
      padding: 0 20px;
      text-align: center;
    }

    h1 {
      font-size: 2.5rem;
      color: #0b2c4d;
      margin-bottom: 40px;
    }

    .job-card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #ffffff;
      padding: 24px 30px;
      margin: 16px 0;
      border-radius: 14px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid #e4e8ee;
    }

    .job-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      border-color: #cfd8e3;
    }

    .job-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #0b2c4d;
      text-align: left;
    }

    .arrow-icon {
      width: 24px;
      height: 24px;
      fill: #0077ff;
      transition: transform 0.2s;
    }

    .job-card:hover .arrow-icon {
      transform: translateX(4px);
    }

    @media (max-width: 600px) {
      .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px;
      }

      .job-title {
        font-size: 1.1rem;
      }
    }

    /* Career Journey Graph Styles */
    .roadmap-section {
      max-width: 1200px;
      margin: 80px auto 40px;
      padding: 0 20px;
    }

    .section-title {
      text-align: center;
      font-size: 2.1rem;
      color: #003366;
      margin-bottom: 60px;
      font-weight: 500;
    }

    .career-graph {
      display: flex;
      justify-content: space-around;
      align-items: flex-end;
      position: relative;
      flex-wrap: wrap;
    }

    .career-graph::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 5%;
      width: 90%;
      height: 6px;
      background: linear-gradient(to right, #00bcd4, #0077cc);
      border-radius: 6px;
      z-index: 0;
      transform: translateY(-50%);
    }

    .graph-step {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(6px);
      border-radius: 20px;
      padding: 20px;
      width: 180px;
      text-align: center;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
      position: relative;
      z-index: 1;
      transition: transform 0.3s ease;
      margin: 20px 10px;
    }

    .graph-step:hover {
      transform: translateY(-10px) scale(1.03);
    }

    .graph-step::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 18px;
      height: 18px;
      background: #0077cc;
      border: 3px solid #fff;
      border-radius: 50%;
      box-shadow: 0 0 0 6px rgba(0, 119, 204, 0.25);
      z-index: 2;
    }

    .graph-step h4 {
      margin: 10px 0 5px;
      font-size: 1.1rem;
      color: #0b2c4d;
      font-weight: 600;
    }

    .graph-step small {
      display: block;
      font-size: 0.85rem;
      color: #888;
      margin-bottom: 10px;
    }

    .graph-step p {
      font-size: 0.85rem;
      color: #444;
      line-height: 1.4;
    }

    @media (max-width: 900px) {
      .career-graph {
        flex-direction: column;
        align-items: center;
      }

      .career-graph::before {
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 100%;
      }

      .graph-step {
        margin-bottom: 60px;
      }

      .graph-step::after {
        top: 50%;
        left: -15px;
        bottom: auto;
        transform: translateY(-50%);
      }
    }
    /* Footer styles */
footer {
      background: black;
      color: white;
      padding: 60px 0 30px;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }

    .footer-column h3 {
      color: var(--accent);
      margin-bottom: 20px;
      font-size: 1.3rem;
    }

    .footer-column p {
      color: #aaa;
      margin-bottom: 20px;
      line-height: 1.7;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column li {
      margin-bottom: 12px;
      line-height: 1.6;
    }

    .footer-column a {
      color: #ddd;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-column a:hover {
      color: var(--accent);
      padding-left: 5px;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }

    .copyright {
      text-align: center;
      padding-top: 30px;
      margin-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #888;
      font-size: 0.9rem;
    }

