.service-card {
  transition: transform 0.3s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.benefit-icon {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 1rem;
}
.approach-step {
  border-left: 3px solid #0d6efd;
  padding-left: 20px;
  margin-bottom: 30px;
}
.step-number {
  background-color: #0d6efd;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.hero-section {
  background: var(--gradient);
  background-size: cover;
  padding: 60px 0;
  color: white;
}
.hero-section h1,
.hero-section p {
  position: relative;
  z-index: 332;
}
.page-title {
  font-size: 5.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #aa9e7e;
  width: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, #b69d5a, #9a895a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
}
/*.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #007bff;
}*/
.service-card {
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #007bff;
}
.feature-icon {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 15px;
}
.bg-light-blue {
  background-color: #f8f9fa;
}
.contact-cta {
  background: var(--gradient),
    url("https://placehold.co/1920x400/2c3e50/ecf0f1?text=Secure+Your+Business")
      no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  color: white;
}
.display-4 {
  color: #fff;
}

.benefit-card {
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary);
  font-size: 32px;
}

.component-item {
  padding: 20px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.component-item:hover {
  transform: translateY(-5px);
}

.component-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.use-case-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  height: 100%;
}

.use-case-card:hover {
  transform: translateY(-5px);
}

.trend-item {
  padding: 20px;
  border-left: 4px solid var(--secondary);
  background: #f8f9fa;
  margin-bottom: 20px;
  border-radius: 4px;
}

.btn-primary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.highlight {
  color: var(--secondary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }

  .display-4 {
    font-size: 2.5rem;
  }
}

.project-card {
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .project-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .tech-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .client-logo {
            height: 40px;
            margin-right: 15px;
            /*filter: grayscale(100%);*/
            opacity: 0.7;
            transition: all 0.3s;
        }
        
        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        .btn-primary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .stats-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .stats-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        .partnership-card {
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .partnership-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .icon-container {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--secondary);
            font-size: 32px;
        }
        
        .benefit-item {
            padding: 20px;
            border-radius: 8px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
            transition: transform 0.3s;
            height: 100%;
        }
        
        .benefit-item:hover {
            transform: translateY(-5px);
        }
        
        .btn-primary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .partner-logo {
            height: 60px;
            margin: 20px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        
        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        .capability-badge {
            background: var(--light);
            color: var(--primary);
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            display: inline-block;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .capability-badge:hover {
            background: var(--secondary);
            color: white;
        }
        
        .quote-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 80px 0;
            margin: 50px 0;
        }
        .quote-section h2{
            color:#fff;
        }
        .partnership-image {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s;
        }
        
        .partnership-image:hover {
            transform: scale(1.02);
        }
        
        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(44, 62, 80, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .image-container:hover .image-overlay {
            opacity: 1;
        }
         .value-card {
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .icon-container {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--secondary);
            font-size: 32px;
        }
        
        .btn-primary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .company-image {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s;
        }
        
        .company-image:hover {
            transform: scale(1.02);
        }
        
        .stats-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 80px 0;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .content-block {
            margin-bottom: 40px;
        }
        
        .expertise-badge {
            background: var(--light);
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 20px;
            margin: 8px;
            display: inline-block;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .expertise-badge:hover {
            background: var(--secondary);
            color: white;
        }
         .ceo-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }
        
        /*.ceo-portrait {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            margin: 0 auto;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: var(--primary);
        }*/
        .ceo-portrait {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    background: #f8f9fa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
        .message-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .message-content>p{
            text-align:justify;
        }
        .quote-section {
            border-left: 4px solid var(--secondary);
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: var(--primary);
        }
        
        .values-section {
            background: var(--light);
            border-radius: 8px;
            padding: 30px;
        }
        
        .value-item {
            text-align: center;
            padding: 20px;
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--secondary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 28px;
        }
        
        .signature {
            font-family: 'Segoe Script', cursive;
            font-size: 1.8rem;
            color: var(--primary);
            margin-top: 30px;
        }
        
        .timeline-section {
            position: relative;
            padding: 40px 0;
        }
        
        .timeline-section:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--secondary);
            left: 50%;
            margin-left: -1px;
        }
        
        .timeline-item {
            margin-bottom: 40px;
            position: relative;
            width: 50%;
            padding-right: 40px;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 40px;
            padding-right: 0;
        }
        
        .timeline-content {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .timeline-item:before {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background: var(--secondary);
            border-radius: 50%;
            top: 20px;
            right: -8px;
        }
        
        .timeline-item:nth-child(even):before {
            left: -8px;
            right: auto;
        }
        
        @media (max-width: 768px) {
            .timeline-section:before {
                left: 30px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 0;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
                padding-left: 70px;
            }
            
            .timeline-item:before {
                left: 22px;
                right: auto;
            }
            
            .timeline-item:nth-child(even):before {
                left: 22px;
            }
        }
.certifications-section {
            padding: 80px 0;
            background: white;
        }
        
        
        
        .certification-card {
            transition: all 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .certification-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .certification-image {
            height: 200px;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .certification-logo {
            max-width: 100%;
            max-height: 120px;
            object-fit: contain;
        }
        
        .certification-body {
            padding: 25px;
            text-align: center;
        }
        
        .certification-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .certification-description {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .btn-certificate {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-certificate:hover {
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }
        
        .btn-certificate i {
            margin-right: 8px;
        }
        
        .certification-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .certifications-section {
                padding: 50px 0;
            }
        }