/* ======================================
   AIVIO - AI Startup Template
   Version: 1.0.0
   ====================================== */

/* ======= Base Styles ======= */
:root {
  --primary-color: #6c5ce7;
  --primary-light: #a29bfe;
  --primary-dark: #4834d4;
  --secondary-color: #0abde3;
  --tertiary-color: #ff6b6b;
  --dark-color: #2d3436;
  --light-color: #f5f6fa;
  --gray-color: #636e72;
  --text-color: #2d3436;
  --body-bg: #ffffff;

  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);

  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 2rem;

  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);

  --transition: all 0.3s ease;
}

body {
  font-family: "Exo 2", Sans-serif;
  color: var(--text-color);
  background-color: var(--body-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* ======= Utility Classes ======= */
.section-padding {
  padding: 20px 0;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title-sm {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.section-subtitle {
  display: inline-block;
  background: var(--primary-light);
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.link-arrow {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.link-arrow i {
  transition: var(--transition);
  margin-left: 5px;
}

.link-arrow:hover i {
  transform: translateX(5px);
}

/* ======= Buttons ======= */
.btn {
  padding: 12px 24px;
  font-weight: 500;
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.125rem;
}

.btn-rounded {
  border-radius: 50px;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
  transform: translateY(-3px);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* ======= Navigation ======= */
.navbar {
  transition: var(--transition);
  padding: 10px 0;
  background-color: #ffffff;
}

.navbar.navbar-scrolled {
  padding: 10px 0;
  background-color: #fff;
  box-shadow: var(--box-shadow);
}

.navbar-brand {
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.navbar-nav .nav-item {
  margin: 0 5px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-color);
  padding: 8px 15px;
  position: relative;
}

.navbar-nav .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
  width: 30px;
}

.navbar-toggler {
  padding: 0;
  border: none;
  color: var(--primary-color);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* ======= Hero Section ======= */
.hero-section {
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
  background-color: #f8f9fc;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--gray-color);
}

.hero-buttons {
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(110% + 1.3px);
  height: 110px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

/* ======= Clients Section ======= */
.clients-section {
  background-color: #fff;
}

.client-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: var(--transition);
}

.client-logo:hover {
  opacity: 1;
}

.client-logo img {
  max-height: 100px;
}

/* ======= Services Section ======= */
.services-section {
  padding: 20px 0;
  background-color: #f8f9fc;
}

.service-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 25px;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* ======= Features Section ======= */
.features-section {
  padding: 20px 0;
}

.features-image {
  position: relative;
  padding: 20px;
}

.features-content {
  padding: 20px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  margin-right: 20px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-info h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* ======= Solutions Section ======= */
.solutions-section {
  padding: 20px 0;
  background-color: #f8f9fc;
}

.solution-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.solution-image {
  height: 220px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.solution-card:hover .solution-image img {
  transform: scale(1.1);
}

.solution-content {
  padding: 25px;
  text-align: center;
}

.solution-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.solution-content p {
  margin-bottom: 20px;
}

/* ======= Use Cases Section ======= */
.use-cases-section {
  padding: 20px 0;
}

.case-study-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.case-study-image {
  height: 100%;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content {
  padding: 20px;
}

.case-study-category {
  display: inline-block;
  background: var(--primary-light);
  color: #fff;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.case-study-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* ======= Data Visualization Section ======= */
.data-visualization-section {
  padding: 20px 0;
  background-color: #f8f9fc;
}

.visualization-container {
  padding: 20px;
}

.visualization-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.visualization-card h3 {
  margin-bottom: 20px;
  text-align: center;
}

.chart-container {
  position: relative;
  height: 300px;
  width: 100%;
}

/* ======= Testimonials Section ======= */
.testimonials-section {
  padding: 20px 0;
}

.testimonial-item {
  padding: 30px;
}

.testimonial-content {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-info h4 {
  margin-bottom: 5px;
  font-size: 1.125rem;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--gray-color);
}

/* ======= Pricing Section ======= */
.pricing-section {
  padding: 20px 0;
  background-color: #f8f9fc;
}

.pricing-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-color);
}

.pricing-features {
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.pricing-features li i {
  color: var(--primary-color);
  margin-right: 8px;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-color);
  color: #fff;
  padding: 5px 40px;
  font-size: 0.875rem;
  font-weight: 500;
  transform: rotate(45deg);
}

/* ======= Blog Section ======= */
.blog-section {
  padding: 20px 0;
}

.blog-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.blog-image {
  height: auto;
  overflow: hidden;
}

.blog-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.blog-hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
}

.blog-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.blog-image img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  transition: var(--transition);
  border-radius: 20px;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-content span {
  color: #0f172a
}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.875rem;
  color: var(--gray-color);
}

.blog-meta span {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.blog-meta span i {
  margin-right: 5px;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

/* ======= Contact Section ======= */
.contact-section {
  padding: 20px 0;
  background-color: #f8f9fc;
}

.contact-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  color: #fff;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  height: 50px;
  padding: 10px 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid #ddd;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

textarea.form-control {
  height: 180px;
  resize: none;
}

/* ======= Footer ======= */
.footer-section {
  background-color: #2c3e50;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 10px;
  transition: var(--transition);
}

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

.footer-section h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-contact-info li i {
  margin-right: 10px;
  color: var(--primary-light);
}

.footer-bottom {
  padding: 25px 0;
}

.copyright {
  margin: 0;
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}

.footer-bottom-links li {
  margin-left: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.back-to-top:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
}

/* ======= Media Queries ======= */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: var(--box-shadow);
  }

  .hero-section {
    padding: 150px 0 100px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons .btn {
    margin-bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-section {
    padding: 130px 0 80px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .pricing-card.featured {
    transform: none;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .footer-section {
    padding-top: 50px;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 50px 0;
  }

  .hero-section {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Contact Page Specific Styles */
.contact-hero {
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://source.unsplash.com/random/1600x900/?contact,technology') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.contact-container {
  padding: 80px 0;
}

.contact-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  height: auto;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: #f5f7fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a6cf7;
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info-content h4 {
  margin-bottom: 5px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.contact-form .form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #e1e5ee;
  padding: 10px 15px;
}

.contact-form textarea.form-control {
  height: auto;
  min-height: 150px;
}

.form-success {
  display: none;
  padding: 15px;
  margin-bottom: 20px;
  background: #e6f7ee;
  color: #28a745;
  border-radius: 5px;
}

.office-hours {
  background: #f9fbfe;
  padding: 20px;
  border-radius: 5px;
  margin-top: 30px;
}

.office-hours h5 {
  margin-bottom: 15px;
}

.office-hours ul {
  list-style: none;
  padding: 0;
}

.office-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.office-hours li:last-child {
  border-bottom: none;
}

.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .contact-info-item {
    flex-direction: column;
  }

  .contact-info-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}


/* Additional styles for About page */
.about-hero {
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  padding: 120px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://source.unsplash.com/random/1600x900/?ai,technology') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.mission-vision-section {
  padding: 100px 0;
  background-color: #f9fbfe;
}

.mv-card {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  font-size: 30px;
  margin: auto;
}

.team-section {
  padding: 100px 0;
}

.team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-img {
  height: 350px;
  object-fit: cover;
  width: 100%;
}

.team-info {
  padding: 25px;
}

.team-social {
  margin-top: 15px;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f5f7fe;
  border-radius: 50%;
  color: #4a6cf7;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #4a6cf7;
  color: white;
}

.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  color: white;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-title {
  font-size: 18px;
  opacity: 0.9;
}

.values-section {
  padding: 100px 0;
  background-color: #f9fbfe;
}

.value-card {
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 40px;
  color: #4a6cf7;
  margin-bottom: 20px;
}

/* Terms Page Specific Styles */
.terms-hero {
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  margin-top: 5%;
  padding: 60px;
  color: white;
  text-align: center;
}

.terms-container {
  padding: 60px 0;
}

.terms-content {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  padding: 50px;
}

.terms-section {
  margin-bottom: 40px;
}

.terms-section h2 {
  color: #4a6cf7;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.terms-section h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.terms-section p,
.terms-section ul {
  margin-bottom: 15px;
  line-height: 1.7;
}

.terms-section ul {
  padding-left: 20px;
}

.highlight-box {
  background: #f9fbfe;
  border-left: 4px solid #4a6cf7;
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 5px 5px 0;
}

@media (max-width: 768px) {
  .terms-content {
    padding: 30px;
  }
}

/* Blog Detail Specific Styles */
.blog-hero {
  background: var(--gradient-primary);
  padding: 120px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://source.unsplash.com/random/1600x900/?ai,technology,future') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.blog-container {
  padding: 60px 0;
}

.blog-content {
  max-width: 100%;
  margin: 0 auto;
}

.blog-header {
  margin-bottom: 40px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  color: #6c757d;
}

.blog-meta span {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.blog-meta i {
  margin-right: 5px;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 30px;
}

.blog-image {
  border-radius: 10px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: auto;
  max-height: 340px;
  display: block;
}

.blog-image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 10px;
}

.blog-body {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #343a40;
}

.blog-body h2 {
  font-size: 1.8rem;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #212529;
}

.blog-body h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #212529;
}

.blog-body p {
  margin-bottom: 25px;
}

.blog-body ul,
.blog-body ol {
  margin-bottom: 25px;
  padding-left: 30px;
}

.blog-body li {
  margin-bottom: 10px;
}

.highlight-box {
  background: #f9fbfe;
  border-left: 4px solid #4a6cf7;
  padding: 25px;
  margin: 30px 0;
  border-radius: 0 5px 5px 0;
}

.quote-box {
  border-left: 4px solid #6e8efb;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #495057;
}

.quote-author {
  font-weight: 600;
  margin-top: 10px;
  font-style: normal;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
}

.tag {
  background: #f1f3f5;
  color: #495057;
  padding: 5px 15px;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #4a6cf7;
  color: white;
  text-decoration: none;
}

.author-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 60px 0;
  display: flex;
  align-items: center;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 30px;
  flex-shrink: 0;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  color: #6c757d;
  margin-bottom: 15px;
}

.author-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f5f7fe;
  border-radius: 50%;
  color: #4a6cf7;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.author-social a:hover {
  background: #4a6cf7;
  color: white;
}

.related-posts {
  padding: 60px 0;
  background: #f9fbfe;
}

.related-post-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.related-post-card:hover {
  transform: translateY(-10px);
}

.related-post-image {
  height: 340px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.05);
}

.related-post-content {
  padding: 20px;
}

.related-post-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.related-post-meta {
  color: #6c757d;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 2rem;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .author-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* .blog-meta span {
  color: #fff;
} */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Animated background particles */
.preloader::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: backgroundShift 10s ease-in-out infinite;
}

@keyframes backgroundShift {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.preloader-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ai-loader {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 40px;
}

/* Rotating hexagon rings */
.hex-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexRotate 8s linear infinite;
}

.hex-ring:nth-child(2) {
  width: 150px;
  height: 150px;
  border-color: rgba(255, 255, 255, 0.3);
  animation-duration: 6s;
  animation-direction: reverse;
}

.hex-ring:nth-child(3) {
  width: 180px;
  height: 180px;
  border-color: rgba(255, 255, 255, 0.2);
  animation-duration: 10s;
}

@keyframes hexRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Circuit lines with glow */
.circuit-line {
  position: absolute;
  background: linear-gradient(90deg,
      transparent,
      rgba(59, 130, 246, 0.5),
      #3b82f6,
      rgba(59, 130, 246, 0.5),
      transparent);
  filter: drop-shadow(0 0 6px #3b82f6);
}

.circuit-line:nth-child(4) {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  animation: lineGlow 2s infinite;
}

.circuit-line:nth-child(5) {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  animation: lineGlow 2s infinite 0.5s;
}

@keyframes lineGlow {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* Core with multiple layers */
.ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 3px solid #3b82f6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: corePulse 2s ease-in-out infinite;
  box-shadow:
    0 0 20px rgba(59, 130, 246, 0.5),
    inset 0 0 20px rgba(59, 130, 246, 0.2);
}

@keyframes corePulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 20px rgba(59, 130, 246, 0.5),
      inset 0 0 20px rgba(59, 130, 246, 0.2);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow:
      0 0 40px rgba(59, 130, 246, 0.8),
      inset 0 0 30px rgba(59, 130, 246, 0.4);
  }
}

.ai-middle-ring {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(139, 92, 246, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: middleRingPulse 2s ease-in-out infinite 0.3s;
}

@keyframes middleRingPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.ai-inner-core {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  filter: drop-shadow(0 0 15px #3b82f6);
  animation: innerCorePulse 1.5s ease-in-out infinite;
  position: relative;
}

@keyframes innerCorePulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px #3b82f6);
  }

  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 25px #3b82f6) drop-shadow(0 0 35px #8b5cf6);
  }
}

/* Orbiting particles */
.orbit-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 10px #3b82f6;
}

.orbit-particle:nth-child(6) {
  top: 50%;
  left: 50%;
  animation: orbit1 3s linear infinite;
}

.orbit-particle:nth-child(7) {
  top: 50%;
  left: 50%;
  animation: orbit2 3s linear infinite;
}

.orbit-particle:nth-child(8) {
  top: 50%;
  left: 50%;
  animation: orbit3 3s linear infinite;
}

@keyframes orbit1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(60px) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(60px) rotate(-360deg);
  }
}

@keyframes orbit2 {
  0% {
    transform: translate(-50%, -50%) rotate(120deg) translateX(60px) rotate(-120deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(480deg) translateX(60px) rotate(-480deg);
  }
}

@keyframes orbit3 {
  0% {
    transform: translate(-50%, -50%) rotate(240deg) translateX(60px) rotate(-240deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(600deg) translateX(60px) rotate(-600deg);
  }
}

/* Text styling */
.loading-text {
  color: #e2e8f0;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(59, 130, 246, 0.5);
  animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {

  0%,
  100% {
    opacity: 0.8;
    text-shadow: 0 2px 10px rgba(59, 130, 246, 0.5);
  }

  50% {
    opacity: 1;
    text-shadow: 0 2px 20px rgba(59, 130, 246, 0.8);
  }
}

.loading-dots {
  display: inline-block;
  width: 30px;
  text-align: left;
}

.loading-dots::after {
  content: '...';
  animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
  0% {
    content: '.';
  }

  33% {
    content: '..';
  }

  66% {
    content: '...';
  }

  100% {
    content: '.';
  }
}

/* Progress bar */
.progress-container {
  width: 300px;
  height: 4px;
  background: rgba(226, 232, 240, 0.2);
  border-radius: 10px;
  margin: 25px auto 0;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
  background-size: 200% 100%;
  border-radius: 10px;
  animation: progressMove 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

@keyframes progressMove {
  0% {
    width: 0%;
    background-position: 0% 50%;
  }

  50% {
    width: 70%;
    background-position: 100% 50%;
  }

  100% {
    width: 100%;
    background-position: 0% 50%;
  }
}

/* Percentage text */
.percentage {
  color: rgba(226, 232, 240, 0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

@keyframes circuitPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

@keyframes corePulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes innerCorePulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes dotPulse {
  0% {
    content: '.';
  }

  33% {
    content: '..';
  }

  66% {
    content: '...';
  }
}

.mission-vision-section h3 {
  text-align: center;
  margin-top: 15px;
}

/* Blog Listing */
.blog-listing {
  padding: 80px 0;
}

.blog-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  background: white;
}

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

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #777;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.blog-card-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

.blog-card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--dark-color);
  text-decoration: none;
  transition: var(--transition);
}

.blog-card-title a:hover {
  color: var(--primary-color);
}

.blog-card-excerpt {
  margin-bottom: 20px;
  color: #666;
}

.read-more {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--secondary-color);
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Sidebar */
.sidebar-widget {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.widget-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.widget-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.search-form {
  position: relative;
}

.search-form input {
  width: 100%;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  transition: var(--transition);
}

.search-form input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(78, 84, 200, 0.2);
  outline: none;
}

.search-form button {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.search-form button:hover {
  transform: translateY(-50%) scale(1.05);
}

.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.categories-list li:last-child {
  border-bottom: none;
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.categories-list a:hover {
  color: var(--primary-color);
}

.categories-list span {
  background: #f5f5f5;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.recent-post {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 15px;
}

.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1.4;
}

.recent-post-content a {
  color: var(--dark-color);
  text-decoration: none;
  transition: var(--transition);
}

.recent-post-content a:hover {
  color: var(--primary-color);
}

.recent-post-meta {
  font-size: 0.8rem;
  color: #777;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud a {
  background: #f5f5f5;
  color: var(--text-color);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.tags-cloud a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

/* Pagination */
.pagination {
  margin-top: 50px;
  justify-content: center;
}

.page-link {
  margin: 0 5px;
  border-radius: 50% !important;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.page-link:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: transparent;
  color: white;
}

.page-item.active .page-link {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: transparent;
}

/* Careers Page Specific Styles */
.careers-hero {
  background: linear-gradient(135deg, #0a2463 0%, #3a86ff 100%);
  color: white;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.job-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.job-tag {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
}

.culture-section {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.culture-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.culture-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3a86ff 0%, #0a2463 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.benefits-section {
  padding: 100px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #f0f5ff;
  color: #3a86ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 20px;
}

.application-process {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 30px;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -30px;
  width: 60px;
  height: 2px;
  background: #3a86ff;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #3a86ff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .process-step:not(:last-child)::after {
    display: none;
  }

  .careers-hero {
    padding: 130px 0 80px;
  }
}

.team-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  margin-bottom: 30px;
}

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

.team-img {
  height: 350px;
  object-fit: cover;
  width: 100%;
}

.team-info {
  padding: 25px;
}

.team-social {
  margin-top: 15px;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f5ff;
  color: var(--primary);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.department-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.values-section {
  padding: 100px 0;
}

.value-card {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.cta-section {
  background: linear-gradient(135deg, #0a2463 0%, #3a86ff 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.team-hero {
  background: linear-gradient(135deg, #0a2463 0%, #3a86ff 100%);
  color: white;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.team-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2Utb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNIDAgMCBMIDYwIDYwIE0gNjAgMCBMIDAgNjAiLz48L2c+PC9zdmc+') repeat;
  opacity: 0.1;
}

.section-title {
  position: relative;
  margin-bottom: 40px;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 2px;
}

/* Additional CSS for new sections */
.features-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card h4 {
  text-align: center;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;

}

.feature-icon i {
  font-size: 28px;
  color: white !important;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.feature-card p {
  margin: auto;
}


.testimonial-content p {
  color: var(--text-color);
}

.testimonials-section {
  padding: 100px 0;
  background-color: #0f172a;
  color: white;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  margin: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 450px;
}

.testimonial-content {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  margin-bottom: 5px;
  font-weight: 600;
}

.testimonial-info p {
  margin: 0;
  opacity: 0.8;
  font-size: 14px;
}

.rating {
  color: #ffc107;
  margin-top: 5px;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.contact-info-content p {
  margin-bottom: 0px;
}

.contact-info-content .mb-3 {
  margin-bottom: 0px;
}

#contactForm .form-group {
  margin-bottom: 0px !important;
}

.blog-detail {
  max-width: 540px !important;
  margin: auto;
}

/* Additional styles specific to ML page */
.ml-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 150px 0 50px;
  position: relative;
  overflow: hidden;
}

.ml-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="white" opacity="0.1"></path></svg>');
  background-size: cover;
  background-position: center;
}

.ml-process {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.ml-use-cases {
  padding: 100px 0;
}

.use-case-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.use-case-img {
  height: 250px;
  overflow: hidden;
}

.use-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.use-case-card:hover .use-case-img img {
  transform: scale(1.1);
}

.ml-technologies {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.tech-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tech-logo img {
  max-height: 100%;
  max-width: 100%;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.tech-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.ml-call-to-action {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #667eea;
  text-decoration: none;
}

.nlp-hero {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 150px 0 50px;
  position: relative;
  overflow: hidden;
}

.nlp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="white" opacity="0.1"></path></svg>');
  background-size: cover;
  background-position: center;
}

.nlp-capabilities {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.capability-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 50%;
  font-size: 32px;
  margin-bottom: 25px;
}

.nlp-workflow {
  padding: 100px 0;
}

.workflow-step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  bottom: -40px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #f093fb, #f5576c);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.nlp-applications {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.application-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  background: white;
}

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

.application-img {
  height: 250px;
  overflow: hidden;
}

.application-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-card:hover .application-img img {
  transform: scale(1.1);
}

.nlp-technologies {
  padding: 100px 0;
}

.nlp-call-to-action {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #f5576c;
  text-decoration: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
  margin: auto;
  margin-bottom: 20px;
}

.benefit-content {
  flex: 1;
}

.nlp-hero .img-fluid {
  border-radius: 50px;
}


/* Additional styles specific to CV page */
.cv-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 150px 0 50px;
  position: relative;
  overflow: hidden;
}

.cv-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="white" opacity="0.1"></path></svg>');
  background-size: cover;
  background-position: center;
}

.cv-capabilities {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.capability-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  border-radius: 50%;
  font-size: 32px;
  margin-bottom: 25px;
}

.cv-workflow {
  padding: 100px 0;
}

.workflow-step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  bottom: -40px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #4facfe, #00f2fe);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.cv-applications {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.application-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  background: white;
}

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

.application-img {
  height: 200px;
  overflow: hidden;
}

.application-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-card:hover .application-img img {
  transform: scale(1.1);
}

.cv-technologies {
  padding: 100px 0;
}




.cv-call-to-action {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #4facfe;
  text-decoration: none;
}



.demo-showcase {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 80px 0;
  border-radius: 15px;
  margin: 50px 0;
}

.demo-item {
  text-align: center;
  padding: 30px;
}

.demo-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.demo-stats {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cvicon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Additional styles specific to Data Analytics page */
.da-hero {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}

.da-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="white" opacity="0.1"></path></svg>');
  background-size: cover;
  background-position: center;
}

.da-capabilities {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.capability-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  border-radius: 50%;
  font-size: 32px;
  margin-bottom: 25px;
}

.da-workflow {
  padding: 100px 0;
}

.workflow-step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  bottom: -40px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #43e97b, #38f9d7);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.da-applications {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.application-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  background: white;
}

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

.application-img {
  height: 200px;
  overflow: hidden;
}

.application-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-card:hover .application-img img {
  transform: scale(1.1);
}

.da-technologies {
  padding: 100px 0;
}



.da-call-to-action {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #43e97b;
  text-decoration: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}


.demo-showcase {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  padding: 80px 0;
  border-radius: 15px;
  margin: 50px 0;
}

.demo-item {
  text-align: center;
  padding: 30px;
}

.demo-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.demo-stats {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.insight-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.insight-icon {
  font-size: 40px;
  color: #4781e6;
  margin-bottom: 20px;
}


/* Additional styles specific to Predictive Modeling page */
.pm-hero {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.pm-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="white" opacity="0.1"></path></svg>');
  background-size: cover;
  background-position: center;
}

.pm-capabilities {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.capability-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  border-radius: 50%;
  font-size: 32px;
  margin-bottom: 25px;
}

.pm-workflow {
  padding: 100px 0;
}

.workflow-step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  bottom: -40px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #ff9a9e, #fecfef);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.pm-applications {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.application-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  background: white;
}

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

.application-img {
  height: 200px;
  overflow: hidden;
}

.application-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-card:hover .application-img img {
  transform: scale(1.1);
}

.pm-technologies {
  padding: 100px 0;
}



.pm-call-to-action {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #ff9a9e;
  text-decoration: none;
}


.demo-showcase {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  padding: 80px 0;
  border-radius: 15px;
  margin: 50px 0;
}

.demo-item {
  text-align: center;
  padding: 30px;
}

.demo-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.demo-stats {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.model-type-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.model-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.model-icon {
  font-size: 40px;
  color: #ff9a9e;
  margin-bottom: 20px;
}

.accuracy-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 15px;
}


/* Additional styles specific to AI Security page */
.security-hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.security-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="white" opacity="0.1"></path></svg>');
  background-size: cover;
  background-position: center;
}

.security-capabilities {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.capability-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  border-radius: 50%;
  font-size: 32px;
  margin-bottom: 25px;
}

.security-workflow {
  padding: 100px 0;
}

.workflow-step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  bottom: -40px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #1e3c72, #2a5298);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.security-applications {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.application-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  background: white;
}

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

.application-img {
  height: 290px;
  overflow: hidden;
}

.application-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-card:hover .application-img img {
  transform: scale(1.1);
}

.security-technologies {
  padding: 100px 0;
}


.security-call-to-action {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #1e3c72;
  text-decoration: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}


.demo-showcase {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 80px 0;
  border-radius: 15px;
  margin: 50px 0;
}

.demo-item {
  text-align: center;
  padding: 30px;
}

.demo-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.demo-stats {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.threat-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  border-left: 4px solid #1e3c72;
}

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

.threat-icon {
  font-size: 40px;
  color: #1e3c72;
  margin-bottom: 20px;
}

.severity-badge {
  display: inline-block;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 15px;
}

.severity-high {
  background: #dc3545;
}

.severity-medium {
  background: #ffc107;
  color: #212529;
}

.severity-low {
  background: #28a745;
}

.security-layers {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 80px 0;
  border-radius: 15px;
}

.layer-item {
  text-align: center;
  padding: 30px 20px;
}

.layer-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.layer-number {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.benefit-item h4 {
  text-align: center;
}

.benefit-item p {
  text-align: center;
}

.aicard .benefit-icon {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%)
}

.swiper-slide {
  width: 33%;
}

.pm-hero .img-fluid {
  border-radius: 50px;
}

.pmcard .benefit-icon {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.step-numberml {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
}

.feature-card p {
  text-align: center;
}

.submitbtn {
  margin-top: 25px;
}

#testimonials .testimonial-card {
  min-height: 320px;
}

@media (max-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 760px;
  }
}