/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


/* Red Top Contact Navbar */
.top-red-navbar {
  background: linear-gradient(135deg, #94cdeb 0%, #75bfe2 100%);
  color: black;
  padding: 8px 0;
  font-size: 13px;
  position: static;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.top-navbar-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.top-navbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-navbar-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 5px;
  color: black;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-info:hover {
  opacity: 0.8;
  color:black;
}

.contact-info i {
  font-size: 12px;
  margin-right: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: BLACK;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.social-links a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  color: white;
}


/* Responsive Design for Red Navbar */
@media (max-width: 768px) {
 
  .top-navbar-content {
    flex-direction: column;
    gap: 10px;
    padding: 8px 15px;
    z-index: 100;
  }
  
  .top-navbar-left,
  .top-navbar-right {
    gap: 15px;
  }
  
  .contact-info {
    font-size: 12px;
  }
  
  .social-links a {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  
}

@media (max-width: 480px) {
  .top-navbar-left {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contact-info {
    font-size: 11px;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .top-navbar-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

#header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  position: sticky;
  top: 0;
  left: 0;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
  width: 100%;
  background-color: white;
  border-bottom: 3px solid #2563EB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  
}

.navbar-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 40px;
  position: relative;
}

.logo {
  position: absolute;
  left: 50px;
  width: 20px;
}

.logo img {
  height: 40px;
  display: block;
  margin-left: 30px;
  width: 150px;
  
}

/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
}

.nav-center {
  text-align: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 6px 10px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #2563EB;
}

.nav-links li a.active {
  color: #2563EB;
}

.carousel-caption-left.erp-slide {
  position: absolute;
  top: 30%;
  left: 6%;
  text-align: left;
  z-index: 10;
  width: 45%;
  color: white;
}

.carousel-caption-left h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #537fdd;
  margin-bottom: 15px;
}

.carousel-caption-left p {
  font-size: 1.4rem;
  color: black;
  margin-bottom: 25px;
}

/* Button styling */
.carousel-caption-left .btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
}

/* Animation keyframes */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  opacity: 0;
  animation: slideUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.8s; }
.delay-3 { animation-delay: 1.3s; }



@media (max-width: 960px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgb(153, 214, 225);
    border-top: 1px solid #ccc;
    padding: 15px 0;
    z-index: 10;
  }

  .nav-center.active .nav-links {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}


/* New Popup Styling */
.custom-popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(224, 225, 225, 0.626);
  z-index : 9999;
}

.custom-popup-box {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  margin: 10% auto;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 20px rgb(194, 215, 225);
  animation: fadeInScale 0.3s ease-in-out;
}

.custom-popup-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
}

.custom-popup-box input,
.custom-popup-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.custom-popup-box button {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-popup-box button:hover {
  background: #0056b3;
}

.custom-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* About Us Section */
.about-prosys {
  background: url("images/aboutusBG.jpg") center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  color: white;
}

.about-overlay {
  background-color: #b4d5eb; /*ABOUT US BG*/
  padding: 60px 40px;
  width: 100%;
  max-width: 1200px;
  border-radius: 12px;
  margin: auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.about-left {
  flex: 1 1 500px;
}

.about-left h2 {
  font-size: 40px;
  margin-bottom: 20px;
  border-left: 6px solid #ffa31a;
  padding-left: 15px;
  color: BLACK;
}

.about-left p {
  font-size: 17px;
  margin-bottom: 25px;
  color: BLACK;
  line-height: 1.8;
}

.btn-view {
  background-color: #ffa31a;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-view:hover {
  background-color: #e09000;
  color: BLACK;
}

.about-right {
  flex: 1 1 400px;
}

.about-right h3 {
  font-size: 24px;
  color: black;
  margin-bottom: 20px;
}

.service-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.service-box i {
  font-size: 28px;
  color: black;
  margin-top: 5px;
}

.service-box h4 {
  margin: 0;
  font-size: 18px;
  color: black;
}

.service-box p {
  margin: 5px 0 0;
  font-size: 14px;
  color: black;
}
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-left h2 {
    font-size: 28px;
    border-left: none;
    padding-left: 0;
  }

  .about-right {
    margin-top: 30px;
  }

  .service-box {
    justify-content: center;
  }
}

/* headings */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}


.section-heading h2 {
  font-size: 40px;
  font-weight: bold;
  margin: 0;
}

.black-text {
  color: #000;
}

.red-text {
  color: #399fbedb; 
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.modules-section {
            padding: 60px 20px;
            background-color: #f8f9fa;
            text-align: center;
        }

        .section-heading h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .black-text {
            color: #000;
        }

        .red-text {
            color: #399fbedb;
        }

        .modules-carousel-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .modules-carousel-wrapper {
            overflow: hidden;
            border-radius: 15px;
        }

        .modules-carousel-track {
            display: flex;
            transition: transform 0.8s ease-in-out;
            gap: 30px;
            padding: 20px 0;
        }

        .module-card {
            flex: 0 0 calc(33.333% - 20px);
            background: white;
            border-radius: 15px;
            padding: 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            min-height: 450px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .module-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .module-header {
            background: linear-gradient(135deg, #9dbee9 0%, #8db2d3 100%);
            padding: 25px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid #e0e0e0;
        }

        .module-icon {
            flex-shrink: 0;
        }

        .module-icon img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .module-card h3 {
            font-size: 18px;
            color: #2c3e50;
            margin: 0;
            font-weight: 600;
            line-height: 1.3;
        }

        .module-content {
            padding: 25px 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .module-content h4 {
            font-size: 16px;
            color: #34495e;
            margin: 0 0 15px 0;
            font-weight: 600;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
            flex-grow: 1;
        }

        .feature-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            font-size: 14px;
            color: #555;
            line-height: 1.4;
        }

        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
            font-size: 14px;
        }

        .module-btn {
            background-color: transparent;
            color: #66CCEE;
            text-decoration: none;
            padding: 8px 0;
            border: 2px solid #66CCEE;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            display: inline-block;
            margin-top: auto;
            letter-spacing: 0.5px;
        }

        .module-btn:hover {
            background-color: #66ccee;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.9);
            border: 2px solid #66CCEE;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .nav-btn:hover {
            background-color: #66CCEE;
            color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }
        
        .nav-btn svg {
            width: 24px;
            height: 24px;
            fill: #66CCEE;
            transition: fill 0.3s ease;
        }
        
        .nav-btn:hover svg {
            fill: white;
        }
        
        .prev-btn {
            left: -25px;
        }
        
        .next-btn {
            right: -25px;
        }

        /* Dots Navigation */
        .modules-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .dot.active {
            background-color: rgb(72, 71, 71);
        }

        /* Responsive Design for Modules */
        @media (max-width: 1024px) {
            .module-card {
                flex: 0 0 calc(50% - 15px);
                min-height: 420px;
            }
        }

        @media (max-width: 768px) {
            .modules-carousel-container {
                padding: 0 15px;
            }
            
            .module-card {
                flex: 0 0 calc(100% - 30px);
                min-height: 400px;
                margin: 0 15px;
            }
            
            .modules-carousel-track {
                gap: 0;
                padding: 20px 0;
            }
            
            .module-header {
                padding: 20px 15px;
            }
            
            .module-content {
                padding: 20px 15px;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
            }
            
            .nav-btn svg {
                width: 20px;
                height: 20px;
            }
            
            .prev-btn {
                left: 10px;
            }
            
            .next-btn {
                right: 10px;
            }
        }

        @media (max-width: 480px) {
            .module-card h3 {
                font-size: 16px;
            }
            
            .feature-list li {
                font-size: 13px;
            }
            
            .nav-btn {
                width: 35px;
                height: 35px;
            }
            
            .nav-btn svg {
                width: 18px;
                height: 18px;
            }
            
            .prev-btn {
                left: 5px;
            }
            
            .next-btn {
                right: 5px;
            }
        }




/* industries */
 .industries-section {
      padding: 80px 20px;
      background: rgb(254, 254, 254);
      position: relative;
      overflow: hidden;
    }

    .industries-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 80%, rgba(255, 163, 26, 0.05) 0%, transparent 50%),
                  radial-gradient(circle at 80% 20%, rgba(10, 25, 47, 0.05) 0%, transparent 50%);
    }
        .industries-showcase {
            font-family: Arial, sans-serif;
            background: transparent;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .industries-showcase * {
            box-sizing: border-box;
        }

        .industries-showcase .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 1200px;
            width: 100%;
        }

        .industries-showcase .card {
            background: transparent;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            padding: 30px 20px;
            color: #333;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .industries-showcase .card.expanded {
          transform: translateY(-10px) scale(1.05);
          z-index: 10;
          border-color: #007bff;
          }

        .industries-showcase .card.expanded .card-details {
            opacity: 1;
            max-height: 200px;
            margin-top: 15px;
          }

          .industries-showcase .card.expanded .explore-btn {
              opacity: 1;
              transform: translateY(0);
              transition-delay: 0.2s;
          }


        /* .industries-showcase .card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            z-index: 10;
            border-color: #007bff;
        } */

        .industries-showcase .card-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }
          
        /* .industries-showcase .card:hover .card-icon {
            transform: scale(1.2) rotate(5deg);
        } */

        .industries-showcase .card-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .industries-showcase .card-details {
            opacity: 0;
            max-height: 0;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        /* .industries-showcase .card:hover .card-details {
            opacity: 1;
            max-height: 200px;
            margin-top: 15px;
        } */

        .industries-showcase .card-details ul {
            list-style: none;
            text-align: left;
            margin: 0;
            padding: 0;
        }

        .industries-showcase .card-details li {
            padding: 5px 0;
            font-size: 0.9rem;
            opacity: 0.9;
            margin: 0;
        }

        .industries-showcase .card-details li::before {
            content: "• ";
            color: #666;
            margin-right: 8px;
        }

        .industries-showcase .explore-btn {
            background: rgba(0, 123, 255, 0.1);
            border: 2px solid #007bff;
            color: #007bff;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0;
            transform: translateY(10px);
            text-decoration: none;
            display: inline-block;
        }

        /* .industries-showcase .card:hover .explore-btn {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        } */

        .industries-showcase .explore-btn:hover {
            background: #007bff;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }

        .industries-showcase .explore-btn:active {
            transform: translateY(0);
        }

        /* Responsive Design - All prefixed with .industries-showcase */
        @media (max-width: 1024px) {
            .industries-showcase .container {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 18px;
                padding: 0 10px;
            }
            
            .industries-showcase .card {
                padding: 25px 18px;
                min-height: 140px;
            }
            
            .industries-showcase .card-icon {
                font-size: 2.2rem;
                margin-bottom: 12px;
            }
            
            .industries-showcase .card-title {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .industries-showcase .container {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                gap: 15px;
                padding: 0 15px;
            }
            
            .industries-showcase .card {
                padding: 20px 15px;
                min-height: 130px;
            }
            
            .industries-showcase .card-icon {
                font-size: 2rem;
                margin-bottom: 10px;
            }
            
            .industries-showcase .card-title {
                font-size: 1rem;
                margin-bottom: 8px;
            }
            
            .industries-showcase .card-details li {
                font-size: 0.8rem;
                padding: 3px 0;
            }
            
            .industries-showcase .explore-btn {
                padding: 6px 12px;
                font-size: 0.75rem;
                margin-top: 12px;
            }
            
            .industries-showcase .card:hover {
                transform: translateY(-5px) scale(1.02);
            }
        }

        @media (max-width: 480px) {
            .industries-showcase {
                padding: 10px;
            }
            
            .industries-showcase .container {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 12px;
                padding: 0 5px;
            }
            
            .industries-showcase .card {
                padding: 18px 12px;
                min-height: 120px;
            }
            
            .industries-showcase .card-icon {
                font-size: 1.8rem;
                margin-bottom: 8px;
            }
            
            .industries-showcase .card-title {
                font-size: 0.9rem;
                margin-bottom: 6px;
            }
            
            .industries-showcase .card-details {
                margin-top: 10px;
            }
            
            .industries-showcase .card-details li {
                font-size: 0.75rem;
                padding: 2px 0;
            }
            
            .industries-showcase .explore-btn {
                padding: 5px 10px;
                font-size: 0.7rem;
                margin-top: 8px;
                letter-spacing: 0.3px;
            }
            
            .industries-showcase .card:hover {
                transform: translateY(-3px) scale(1.01);
            }
        }

        @media (max-width: 360px) {
            .industries-showcase .container {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .industries-showcase .card {
                padding: 15px 10px;
                min-height: 110px;
            }
            
            .industries-showcase .card-icon {
                font-size: 1.5rem;
                margin-bottom: 6px;
            }
            
            .industries-showcase .card-title {
                font-size: 0.85rem;
                margin-bottom: 5px;
            }
            
            .industries-showcase .explore-btn {
                padding: 4px 8px;
                font-size: 0.65rem;
                margin-top: 6px;
            }
        }
  
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
      .industries-tabs {
        flex-direction: column;
      }

      .industry-tab {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .industry-tab:last-child {
        border-bottom: none;
      }

      .tab-icon {
        font-size: 1.5rem;
      }

      .tab-title {
        font-size: 0.8rem;
      }

      .industries-content {
        padding: 20px;
      }

      .content-header {
        flex-direction: column;
        text-align: center;
      }

      .content-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
      }

      .content-info h3 {
        font-size: 1.5rem;
      }

      .content-features {
        grid-template-columns: 1fr;
      }

      .industries-title {
        font-size: 2rem;
      }
    }

    /* Demo styles *
        body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #f8f9fa;
    } */


/* slider.css */
/* FIXED PROFESSIONAL CLIENT SLIDER CSS - Add this to your style.css */
    .client-showcase {
      padding: 80px 20px;
      background: #ffffff;
      position: relative;
    }

    .client-showcase::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
      opacity: 0.7;
    }

    .client-title {
      font-size: 2.5rem;
      color: #0a192f;
      text-align: center;
      margin-bottom: 20px;
      font-weight: 600;
      position: relative;
      z-index: 2;
    }

    .client-subtitle {
      text-align: center;
      color: #6c757d;
      font-size: 1.1rem;
      margin-bottom: 60px;
      font-weight: 400;
      position: relative;
      z-index: 2;
    }

    .client-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .client-grid-wrapper {
      background: white;
      border-radius: 12px;
      padding: 40px 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
      border: 1px solid rgba(10, 25, 47, 0.08);
      position: relative;
      overflow: hidden;
    }

    .client-grid-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #0a192f 0%, #ffa31a 50%, #0a192f 100%);
    }

    .client-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .client-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 8px;
      padding: 25px 20px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .client-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 163, 26, 0.02) 0%, rgba(10, 25, 47, 0.02) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 8px;
    }

    .client-card:hover::before {
      opacity: 1;
    }

    .client-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      border-color: rgba(255, 163, 26, 0.3);
    }

    /* FIXED: Removed grayscale filter - logos now show in full color */
    .client-card img {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      transition: all 0.3s ease;
      /* Removed: filter: grayscale(100%) brightness(0.8); */
    }

    .client-card:hover img {
      transform: scale(1.05);
      /* Removed: filter: grayscale(0%) brightness(1); */
    }

    /* Navigation dots */
    .client-navigation {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 40px;
    }

    .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(10, 25, 47, 0.2);
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .nav-dot.active {
      background: #ffa31a;
      border-color: #0a192f;
    }

    .nav-dot:hover {
      background: #ffa31a;
      transform: scale(1.2);
    }

    /* REMOVED: Progress indicator completely */

    /* Different grid layouts for rotation */
    .client-grid.layout-2 {
      animation-delay: 0.2s;
    }

    .client-grid.layout-3 {
      animation-delay: 0.4s;
    }

    /* Mobile responsive */
    @media (max-width: 992px) {
      .client-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
      }
    }

    @media (max-width: 768px) {
      .client-showcase {
        padding: 60px 15px;
      }

      .client-title {
        font-size: 2rem;
      }

      .client-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
      }

      .client-grid-wrapper {
        padding: 30px 20px;
      }

      .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .client-card {
        height: 100px;
        padding: 20px 15px;
      }

      .client-card img {
        max-height: 60px;
      }
    }

    @media (max-width: 480px) {
      .client-title {
        font-size: 1.8rem;
      }

      .client-grid-wrapper {
        padding: 25px 15px;
      }

      .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .client-card {
        height: 80px;
        padding: 15px 10px;
      }

      .client-card img {
        max-height: 45px;
      }
    }


/* mobile app */

    .mobile-hero {
  background: linear-gradient(135deg, #08789d, #0dcaf0);
  color: white;
  padding: 60px 20px;
}

.mobile-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.mobile-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.mobile-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  display: inline-block;
}

.mobile-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.mobile-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.mobile-image img {
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.mobile-image img:hover {
  transform: scale(1.05);
}

.app-image img {
  max-width: 350px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.app-image img:hover {
  transform: scale(1.05);
}


@media (max-width: 768px) {
  .mobile-container {
    flex-direction: column;
  }
  .mobile-text, .mobile-image {
    text-align: center;
  }
  .mobile-image img {
    max-width: 80%;
  }
}
.btn-view1 {
  background-color: #ffa31a;
  color: #000;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  transition: background 0.3s ease;
  margin-bottom: 10px;
}

.btn-view1:hover {
  background-color: #e09000;
  color: BLACK;
}



/* FAQ'S CSS  */
.faq-hover-layout {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 10px;
  font-family: 'Poppins', sans-serif;
}
.faq-container {
  max-width: 1200px;  
  margin: 0 auto;     
  padding: 40px 20px; 
}


.faq-hover-layout > h2 {
  text-align: center;
  color: #452c8a;
  font-size: 2em;
  margin-bottom: 1rem;
}

.faq-hover-layout > h6 {
  text-align: center;
  color: #452c8a;
  margin-bottom: 2rem;

}

.faq-wrapper {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.faq-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.faq-image {
  width: 300px;
  flex-shrink: 0;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.accordion .item {
  margin-bottom: 1em;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
}

.item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.item label {
  background: linear-gradient(135deg, #f0f4ff, #e0e8ff);
  padding: 18px 20px;
  font-size: 1.1em;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s, color 0.5s;
}

.item label:hover {
  background: linear-gradient(135deg, #e0e8ff, #c2d4ff);
}

.item label::after {
  content: '+';
  font-size: 1.4em;
  color: #666;
  transition: transform 0.5s, color 0.5s;
}

.item input:checked + label::after {
  content: '−';
  color: #452c8a;
  transform: scale(1.2);
}

.panel {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.item input:checked + label + .panel {
  max-height: 200px;
  padding: 15px 20px 20px;
}

.panel p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

.read-more2 {
  display: inline-block;
  background-color: #0082E6;
  color: #fff;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  margin-top: 20px;
  transition: background 0.3s ease, opacity 0.2s;
  align-self: flex-start;
}

.read-more2:hover {
  background-color: #0369cef0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .faq-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .faq-image {
    width: 100%;
    max-width: 300px;
  }

  .read-more2 {
    align-self: center;
  }
}


/* contact us */
 .modern-contact-section {
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-glass-card {
  background: rgba(228, 226, 226, 0.852);
  backdrop-filter: blur(4px);
  max-width: 900px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  color: black;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.contact-glass-card h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-glass-card p {
  font-size: 16px;
  margin-bottom: 25px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.modern-contact-form {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modern-contact-form input,
.modern-contact-form textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: black;
}

.modern-contact-form input::placeholder,
.modern-contact-form textarea::placeholder {
  color: #0e0e0e;
}

.modern-contact-form button {
  background-color: #ff8000;
  padding: 12px;
  border: none;
  border-radius: 8px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.modern-contact-form button:hover {
  background-color: #e67300;
}

.modern-contact-info {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 15px;
}

.modern-contact-info i {
  color: #ff9900;
  margin-right: 10px;
}
.stacked-info {
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}



/* satisfied clients */
.statistics-section {
  background: white; /*satisfied clients bg color*/
  padding: 80px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.statistics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="600" r="200" fill="url(%23a)"/></svg>') no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.statistics-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.statistics-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.stats-left h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  color: rgb(37, 34, 34);
}

.highlight {
  color: #ffa31a;
}

.stats-left p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: rgb(71, 65, 65);
}

.know-more-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ffa31a, #e09000);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.know-more-btn:hover {
  background: linear-gradient(45deg, #e09000, #cc7a00);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 163, 26, 0.4);
  color: white;
  text-decoration: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-card {
  background: #f7f7f7;
  backdrop-filter: blur(10px);
  border: 1px solid #f7f7f7;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffa31a, #e09000, #cc7a00);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffa31a, #e09000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.plus, .percent {
  font-size: 2.5rem;
  color: #ffa31a;
  font-weight: 700;
}

.stat-description {
  font-size: 0.95rem;
  color: rgb(66, 61, 61);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  opacity: 0.3;
}

.stat-icon i {
  font-size: 2rem;
  color: #ffa31a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .statistics-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .stats-left h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .statistics-section {
    padding: 60px 20px;
  }
  
  .stats-left h2 {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-card {
    padding: 24px 20px;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .plus, .percent {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .stats-left h2 {
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2.4rem;
  }
  
  .stat-description {
    font-size: 0.9rem;
  }
}

/* Footer */

 footer {  
            background-color: #fcf4f4ca;
            color: black;
            padding: 40px 20px 20px;
            font-family: 'Poppins', sans-serif;
        }

        /* Footer Columns */
        .footer-columns {
            background-color: #b4d5eb;
            color: black;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            padding: 20px;
            text-align: left;
        }

        .footer-columns div {
            flex: 1 1 200px;
            min-width: 180px;
        }

        .footer-columns h4 {
            font-size: 18px;
            margin-bottom: 10px;
            width: fit-content;
            font-weight: bold;
            justify-content: center;
            
        }

        /* .com1{
            padding-left: 30px;
            font-weight: bold;
            
        }

        .com2{
            padding-left: 100px;
            font-weight: bold;
        }

        .com3{
            padding-left:100px;
            font-weight: bold;
        }

        .com4{
            padding-left: 100px;
            font-weight: bold;
        }   */

        .footer-columns ul {
            list-style: none;
            padding: 0;
        }

        .footer-columns ul li {
            margin: 6px 0;
            font-size: 14px;
        }

        .footer-columns ul li a {
            color: black;
            text-decoration: none;
        }

        .footer-columns ul li a:hover {
            text-decoration: underline;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 10px;
            padding-left: 0px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 18px;
            color: #fff;
            transition: all 0.3s ease;
        }

        /* Brand Colors */
        .social-icons a.linkedin {
            background: #0077b5;
        }
        .social-icons a.facebook {
            background: #1877f2;
        }
        .social-icons a.youtube {
            background: #ff0000;
        }
        .social-icons a.instagram {
            background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
        }

        /* Hover Effect */
        .social-icons a:hover {
            transform: translateY(-3px) scale(1.1);
            opacity: 0.9;
        }

        .footer-columns p {
            margin-top: 10px;
            font-size: 14px;
        }

        /* Footer Bottom */
        .footer-bottom {
            background-color: #b4d5eb;
            border-top: 1px solid #444;
            color: black;
            text-align: center;
            font-size: 14px;
            padding: 15px;
        }

        .footer-bottom a {
            color: black;
            margin: 0 8px;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            footer {
                text-align: center;
                padding: 20px 10px 10px;
            }
            
            .footer-columns {
                flex-direction: column;
                gap: 15px;
                padding: 15px;
                justify-content: flex-start;
            }

            .footer-columns div {
                flex: none;
                min-width: auto;
                width: 100%;
                margin-bottom: 10px;
            }
                 

               
            .com1, .com2, .com3, .com4 {
                padding-left: 100px;
                padding-right: 0;
                font-weight: bold;
            }

            .footer-columns h4 {
                font-size: 16px;
                margin-bottom: 8px;
                margin-right: 0;
            }

            .footer-columns ul li {
                font-size: 13px;
                margin: 4px 0;
            }

            .footer-columns p {
                font-size: 13px;
                margin-top: 5px;
            }

            .social-icons {
                gap: 12px;
                justify-content: flex-start;
                padding-left: 80px;
            }

            .social-icons a {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .footer-bottom {
                padding: 12px;
                font-size: 12px;
            }

            .footer-bottom div {
                margin-top: 5px;
            }
        }

        /* Extra small mobile devices */
        @media (max-width: 480px) {
            .footer-columns {
                padding: 10px;
                gap: 10px;
            }

            .footer-columns div {
                margin-bottom: 5px;
            }

            .footer-columns h4 {
                font-size: 15px;
                margin-bottom: 6px;
            }

            .social-icons {
                gap: 10px;
            }

            .social-icons a {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
        }





/* pop up  */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.4s ease;
}

.popup-overlay.show {
  visibility: visible;
  opacity: 1;
}

.popup-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}

.popup-content h3 {
  font-size: 16px;
  color: rgb(80, 76, 76);
  margin-bottom: 15px;
}

.popup-content input, .popup-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.popup-content button {
  background-color: orange;
  color:black;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup-content button:hover {
  background-color: orange;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}




/* === Carousel Responsive Fix === */
@media (max-width: 992px) {
  .carousel-caption-left.erp-slide {
    top: 20%;
    width: 70%;
  }

  .carousel-caption-left h2 {
    font-size: 2.2rem;
  }

  .carousel-caption-left p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    height: 500px;
  }

  .carousel-caption-left.erp-slide {
    top: 15%;
    width: 90%;
    left: 5%;
    text-align: center;
  }

  .carousel-caption-left h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .carousel-caption-left p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .carousel-caption-left .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    height: 280px;
  }

  .carousel-caption-left h2 {
    font-size: 1.5rem;
  }

  .carousel-caption-left p {
    font-size: 0.95rem;
  }

  .carousel-caption-left .btn {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
}


/* industry */
/* Tablet: 2 cards per row */
@media (max-width: 1024px) {
  .industries-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 card per row */
@media (max-width: 600px) {
  .industries-cards {
    grid-template-columns: 1fr;
  }
}

/* contact */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form-box,
  .contact-info-box {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .contact-container h1 {
    font-size: 28px;
  }

  .contact-container p {
    font-size: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
  }
}

/* footer */
@media (max-width: 768px) {
  .subscribe-form {
    flex-direction: column;
    align-items: center;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-columns div {
    margin-bottom: 20px;

  }
  .footer-columns h4{
    margin-left: 30px;
  }
}