*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #1e0650, #2b0a61);
    
}

html, body {
    width: 100%;
    overflow-x: hidden; /* 🚫 Prevent horizontal scroll */
  }
  
  h1, h2, h3 {
    font-family: 'poppins', sans-serif; 
  }
  
  p {
    font-family: 'roboto', sans-serif; 
  }
  
  button {
    font-family: 'Roboto', sans-serif; 
    font-weight: 500; 
  }

  /* Header */
header {
  background-color: #f9f9ff;
  padding: 0 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
 
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}
 
/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}
 
.logo img {
  width: 124px;
  height: auto;
}
 
.logo-text {
  background: linear-gradient(45deg, #4285f4, #ea4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 24px;
  font-weight: bold;
}
 
.logo-subtitle {
  color: #666;
  font-size: 14px;
  font-weight: normal;
  margin-left: 5px;
}
 
/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
 
.nav-item {
  position: relative;
}
 
.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}
 
.nav-link:hover {
  color: #4285f4;
}
 
.nav-link.active {
  color: #333;
  font-weight: 500;
}
 
/* Dropdown Arrow */
.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}
 
.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}
 
/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
}
 
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
 
.dropdown-item {
  list-style: none;
}
 
.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
 
.dropdown-link:hover {
  background-color: #f8f9ff;
  color: #4285f4;
  padding-left: 25px;
}
 
/* Contact Button */
.contact-btn {
  background: transparent;
  border: 2px solid #4285f4;
  color: #4285f4;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
 
.contact-btn:hover {
  background-color: #4285f4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}
 
/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
 
.hamburger {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
 
.mobile-toggle.active .hamburger:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
 
.mobile-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}
 
.mobile-toggle.active .hamburger:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
 
/* Tablet Responsive - 768px to 1024px */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .nav-menu {
      gap: 20px;
  }
  
  .nav-link {
      font-size: 15px;
  }
  
  .logo img {
      width: 110px;
  }
  
  .contact-btn {
      padding: 8px 20px;
      font-size: 13px;
  }
}
 
/* Mobile and Small Tablet Responsive - up to 768px */
@media screen and (max-width: 768px) {
  body {
      padding-top: 70px;
  }
  
  header {
      padding: 0 15px;
  }
  
  .mobile-toggle {
      display: flex;
  }
 
  .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: white;
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
      padding: 20px 0;
      gap: 0;
      z-index: 999;
      max-height: calc(100vh - 70px);
      overflow-y: auto;
  }
 
  .nav-menu.active {
      left: 0;
  }
 
  .nav-item {
      width: 100%;
      margin: 10px 0;
  }
 
  .nav-link {
      padding: 15px 20px;
      justify-content: center;
      border-bottom: 1px solid #f0f0f0;
  }
 
  .dropdown {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      background: #f8f9ff;
      margin-top: 10px;
      border-radius: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
  }
 
  .nav-item.dropdown-open .dropdown {
      max-height: 300px;
  }
 
  .nav-item:hover .dropdown {
      max-height: 0;
  }
 
  .nav-item.dropdown-open:hover .dropdown {
      max-height: 300px;
  }
 
  .dropdown-link {
      padding: 10px 40px;
      font-size: 14px;
  }
 
  .dropdown-link:hover {
      padding-left: 40px;
      background-color: #f0f0ff;
  }
 
  .contact-btn {
      margin: 20px auto 10px auto;
      padding: 14px 40px;
      font-size: 16px;
      display: block;
      text-align: center;
      width: fit-content;
      min-width: 140px;
  }
  
  .logo img {
      width: 100px;
  }
  
  .logo-text {
      font-size: 20px;
  }
  
  .logo-subtitle {
      font-size: 12px;
  }
}
 
/* Small Mobile - up to 480px */
@media screen and (max-width: 480px) {
  body {
      padding-top: 60px;
  }
  
  header {
      padding: 0 15px;
  }
 
  nav {
      height: 60px;
  }
 
  .nav-menu {
      top: 60px;
      max-height: calc(100vh - 60px);
  }
  
  .logo img {
      width: 80px;
  }
  
  .logo-text {
      font-size: 18px;
  }
  
  .logo-subtitle {
      display: none;
  }
  
  .nav-link {
      font-size: 16px;
      padding: 12px 15px;
  }
  
  .contact-btn {
      padding: 12px 35px;
      font-size: 15px;
      margin: 15px auto 5px auto;
      display: block;
      width: fit-content;
      min-width: 120px;
  }
}
 
/* Very Small Screens - up to 360px */
@media screen and (max-width: 360px) {
  header {
      padding: 0 10px;
  }
  
  .logo img {
      width: 70px;
  }
  
  .logo-text {
      font-size: 16px;
  }
  
  .hamburger {
      width: 20px;
      height: 2px;
  }
}
 
/* Landscape Mobile Optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .nav-menu {
      padding: 10px 0;
      max-height: calc(100vh - 50px);
  }
  
  .nav-link {
      padding: 10px 20px;
  }
  
  .nav-item {
      margin: 5px 0;
  }
}
 
/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo img {
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
  }
}
 
/* Focus States for Accessibility */
.nav-link:focus,
.dropdown-link:focus,
.contact-btn:focus,
.mobile-toggle:focus {
  outline: 2px solid #4285f4;
  outline-offset: 2px;
}
 
/* Print Styles */
@media print {
  header {
      position: static;
      box-shadow: none;
  }
  
  .mobile-toggle {
      display: none;
  }
  
  .nav-menu {
      position: static;
      flex-direction: row;
      gap: 20px;
      padding: 0;
  }
}
 

  /* Hero Section */
  .hero-content {
    max-width: 800px;
    margin: 200px auto 0;
    padding: 0 20px;
    align-items: center;
  }
  .gradient-text {
    font-size: 42px;
    background: linear-gradient(26deg, #fff, #71717a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    text-align: center;
  }
  .hero-content p {
    font-size: 16px;
    color: #ffffff;
    margin: 20px 0;
    
  }
  .cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #09090B;
    color: #A1A1AA;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
  }
  .cta-btn:hover { opacity:0.8; }

  .code-regime-hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    display:block;
    border-radius:20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  /* Responsive */
  @media (max-width:768px) {
    .nav-links.desktop, .contact-btn.desktop-contact { display:none; }
    .hamburger { display:flex; }
    .hero-content { margin-top: 150px; }
    .gradient-text { font-size: 28px; }
  }
  @media (max-width:480px) {
    .gradient-text { font-size: 22px; }
    .hero-content p { font-size:14px; }
    .cta-btn { font-size:14px; padding:10px 20px; }
  }
  
  

 /* Why Choose Section Styles */
 .why-choose-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-heading {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.section-subheading {
    margin-bottom: 40px;
    font-size: 16px;
    opacity: 0.8;
    color: #fff;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: #16162e;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #1e1e3a;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Hover Effects */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 255, 0.1);
    border-color: #3a3a8c;
    background-color: #3a3a8c;
}

.feature-card:hover .feature-icon {
    background-color: #2a2a4d;
    transform: scale(1.1);
}

.feature-card:hover .feature-title {
    color: #8a8aff;
}

.feature-card:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4a4aff, #8a8aff);
}

.feature-icon {
    background-color: #222233;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-icon img {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon img {
    transform: rotate(10deg);
}

.feature-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    color: #fff;
}

.feature-description {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.5;
    transition: opacity 0.3s ease;
    color: #fff;
}

.feature-card:hover .feature-description {
    opacity: 0.9;
}

/* Second row styling */
.features-grid-second-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid, .features-grid-second-row {
        grid-template-columns: 1fr;
    }
}

 /* Enterprise Applications Section */
 .enterprise-applications-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Headings */
.section-heading {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #fff;
}

.section-subheading {
    font-size: 14px;
    color: #b8b8d4;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.5;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Application Card */
.application-card {
    background-color: #121224;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Hover Effects */
.application-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 255, 0.15);
    background-color: #17172d;
}

.application-card:hover .application-title {
    color: #5d9cec;
}

.application-card:hover .application-image {
    transform: scale(1.05);
}

.application-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #5d9cec, #4a68b3);
}

/* Image */
.application-image-container {
    height: 180px;
    overflow: hidden;
    background-color: #18182e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.application-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Content */
.application-content {
    padding: 20px;
    flex-grow: 1;
}

.application-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    color: #fff;
}

.application-description {
    font-size: 14px;
    color: #b8b8d4;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.application-card:hover .application-description {
    color: #ddd;
}

/* ===================== */
/* RESPONSIVE STYLES */
/* ===================== */

/* Large screens (desktop default) */
@media (min-width: 1025px) {
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .applications-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    .section-heading { font-size: 24px; }
    .section-subheading { font-size: 13px; }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section-heading { font-size: 22px; text-align: center; }
    .section-subheading { 
        font-size: 12px; 
        text-align: center; 
        margin: 0 auto 30px; 
    }
    .application-title { font-size: 15px; }
    .application-description { font-size: 13px; }
    .application-image-container { height: 160px; }
}

/* Extra Small Devices (below 480px) */
@media (max-width: 480px) {
    .section-heading { font-size: 20px; }
    .section-subheading { font-size: 12px; }
    .application-title { font-size: 14px; }
    .application-description { font-size: 12px; }
    .application-image-container { height: 140px; }
}


/* Main Container */
.industries-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Header Section */
.industries-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
}

.industries-header p {
    color: #b8b8d4;
    font-size: 14px;
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Grid Layout */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Card Styling */
.industry-card {
    background: linear-gradient(135deg, rgba(20, 30, 70, 0.8), rgba(10, 15, 40, 0.9));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s, box-shadow 0.4s;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 100, 255, 0.2);
}

/* Card Image */
.industry-image {
    height: 210px;
    position: relative;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.industry-card:hover .industry-image img {
    transform: scale(1.05);
}

/* Card Content */
.industry-content {
    padding: 20px;
}

.industry-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.industry-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b8b8d4;
}

/* Specific Card Positioning */
.healthcare {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.insurance {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.asset-management {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.logistics {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

.hospitality {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* 3D Hover Effect */
.industry-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}

@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .healthcare, .insurance, .asset-management {
        grid-column: auto;
        grid-row: auto;
    }
    
    .logistics {
        grid-column: 1 / 3;
    }
    
    .hospitality {
        grid-column: 1 / 3;
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .logistics, .hospitality {
        grid-column: 1;
    }
}

.enterprise-section {
    
    color: var(--text-color);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.content-container {
    max-width: 50%;
    z-index: 1;
    margin-left: 60px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.main-heading span {
    color: #d1d1d1;
    font-weight: 500;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #b8b8d4;
}

.image-container {
    width: 45%;
    text-align: center;
    z-index: 1;
}

.enterprise-image {
    max-width: 80%;
    height: auto;
}



.benefits-section {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 5rem;
    min-height: 220px;
}

.image-container {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-image {
    max-width: 100%;
    height: auto;
}

.content-container {
    width: 60%;
    padding-left: 1rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-heading span {
    color: #a98ebd;
}

.section-text {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 90%;
    color: #b8b8d4;
}/* ===== Enterprise Section ===== */
.enterprise-section {
    color: var(--text-color);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    gap: 2rem;
}

.content-container {
    max-width: 50%;
    z-index: 1;
    margin-left: 60px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.main-heading span {
    color: #d1d1d1;
    font-weight: 500;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #b8b8d4;
}

.image-container {
    width: 45%;
    text-align: center;
    z-index: 1;
}

.enterprise-image {
    max-width: 80%;
    height: auto;
}

/* ===== Benefits Section ===== */
.benefits-section {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 5rem;
    min-height: 220px;
    gap: 2rem;
}

.benefits-section .image-container {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-image {
    max-width: 100%;
    height: auto;
}

.benefits-section .content-container {
    width: 60%;
    padding-left: 1rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-heading span {
    color: #a98ebd;
}

.section-text {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 90%;
    color: #b8b8d4;
}

/* ===================== */
/* RESPONSIVE STYLES */
/* ===================== */

/* Large screens (default desktop) */
@media (min-width: 1025px) {
    .enterprise-section,
    .benefits-section {
        flex-direction: row;
        text-align: left;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .enterprise-section,
    .benefits-section {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .content-container,
    .image-container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .main-heading,
    .section-heading {
        font-size: 2rem;
    }

    .description,
    .section-text {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .enterprise-image,
    .benefits-image {
        max-width: 70%;
    }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
    .enterprise-section,
    .benefits-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .main-heading,
    .section-heading {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .description,
    .section-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .enterprise-image,
    .benefits-image {
        max-width: 85%;
    }
}

/* Extra Small Devices (below 480px) */
@media (max-width: 480px) {
    .main-heading,
    .section-heading {
        font-size: 1.6rem;
    }

    .description,
    .section-text {
        font-size: 0.8rem;
    }

    .enterprise-image,
    .benefits-image {
        max-width: 100%;
    }
}


/* Base styles */
.enterprise-benefits-section {
    color: white;
    padding: 60px 40px;
    min-height: 100vh;
    box-sizing: border-box;
}

.enterprise-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.enterprise-benefits-header {
    margin-bottom: 40px;
}

.enterprise-benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.enterprise-benefits-title span {
    color: #a5a5a5; /* Gray color for "Services" */
}

.enterprise-benefits-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.enterprise-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.enterprise-benefit-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    position: relative;
}

.enterprise-benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    gap: 15px;
}

.enterprise-benefit-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    width: 30px;
}

.enterprise-benefit-title-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.enterprise-benefit-title {
    font-size: 1.6rem;
    font-weight: 700;
    word-wrap: break-word;
    hyphens: auto;
}

.enterprise-benefit-content {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 45px;
    padding-bottom: 15px;
    margin-top: 10px;
}

.enterprise-benefit-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.enterprise-benefit-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.enterprise-benefit-item.active .enterprise-benefit-toggle {
    background-color: rgba(255, 255, 255, 0.1);
}

.enterprise-benefit-item.active .enterprise-benefit-toggle svg {
    transform: rotate(180deg);
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .enterprise-benefits-section {
        padding: 80px 60px;
    }
    
    .enterprise-benefits-title {
        font-size: 3rem;
    }
    
    .enterprise-benefits-subtitle {
        font-size: 1.125rem;
        max-width: 700px;
    }
    
    .enterprise-benefit-title {
        font-size: 1.8rem;
    }
    
    .enterprise-benefit-content {
        font-size: 1.125rem;
        padding-left: 50px;
    }
    
    .enterprise-benefits-list {
        gap: 25px;
    }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .enterprise-benefits-section {
        padding: 70px 50px;
    }
    
    .enterprise-benefits-title {
        font-size: 2.75rem;
    }
    
    .enterprise-benefit-title {
        font-size: 1.7rem;
    }
    
    .enterprise-benefit-content {
        font-size: 1.0625rem;
    }
}

/* Large Tablet (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .enterprise-benefits-section {
        padding: 60px 40px;
    }
    
    .enterprise-benefits-container {
        max-width: 960px;
    }
    
    .enterprise-benefits-title {
        font-size: 2.25rem;
    }
    
    .enterprise-benefits-subtitle {
        font-size: 0.9375rem;
        max-width: 550px;
    }
    
    .enterprise-benefit-title {
        font-size: 1.5rem;
    }
    
    .enterprise-benefit-content {
        font-size: 0.9375rem;
        padding-left: 40px;
    }
    
    .enterprise-benefit-number {
        font-size: 1.1rem;
        width: 25px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .enterprise-benefits-section {
        padding: 50px 30px;
    }
    
    .enterprise-benefits-container {
        max-width: 720px;
    }
    
    .enterprise-benefits-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .enterprise-benefits-subtitle {
        font-size: 0.9375rem;
        max-width: 500px;
    }
    
    .enterprise-benefits-header {
        margin-bottom: 35px;
    }
    
    .enterprise-benefit-header {
        padding: 12px 0;
        gap: 12px;
    }
    
    .enterprise-benefit-title {
        font-size: 1.375rem;
    }
    
    .enterprise-benefit-content {
        font-size: 0.9375rem;
        padding-left: 37px;
        line-height: 1.5;
    }
    
    .enterprise-benefit-number {
        font-size: 1rem;
        width: 22px;
    }
    
    .enterprise-benefit-toggle {
        width: 36px;
        height: 36px;
    }
    
    .enterprise-benefit-toggle svg {
        width: 18px;
        height: 18px;
    }
    
    .enterprise-benefits-list {
        gap: 18px;
    }
}

/* Large Mobile (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .enterprise-benefits-section {
        padding: 40px 25px;
        min-height: auto;
    }
    
    .enterprise-benefits-container {
        max-width: 540px;
    }
    
    .enterprise-benefits-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .enterprise-benefits-subtitle {
        font-size: 0.875rem;
        max-width: 100%;
    }
    
    .enterprise-benefits-header {
        margin-bottom: 30px;
    }
    
    .enterprise-benefit-header {
        padding: 10px 0;
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .enterprise-benefit-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .enterprise-benefit-content {
        font-size: 0.875rem;
        padding-left: 32px;
        line-height: 1.5;
        padding-bottom: 12px;
    }
    
    .enterprise-benefit-number {
        font-size: 0.9375rem;
        width: 20px;
    }
    
    .enterprise-benefit-toggle {
        width: 32px;
        height: 32px;
        border-width: 1.5px;
    }
    
    .enterprise-benefit-toggle svg {
        width: 16px;
        height: 16px;
    }
    
    .enterprise-benefits-list {
        gap: 16px;
    }
    
    .enterprise-benefit-item {
        padding-bottom: 16px;
    }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    .enterprise-benefits-section {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .enterprise-benefits-container {
        max-width: 100%;
    }
    
    .enterprise-benefits-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .enterprise-benefits-subtitle {
        font-size: 0.875rem;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .enterprise-benefits-header {
        margin-bottom: 25px;
    }
    
    .enterprise-benefit-header {
        padding: 8px 0;
        gap: 8px;
        align-items: flex-start;
    }
    
    .enterprise-benefit-title {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    
    .enterprise-benefit-content {
        font-size: 0.8125rem;
        padding-left: 28px;
        line-height: 1.5;
        padding-bottom: 10px;
    }
    
    .enterprise-benefit-number {
        font-size: 0.875rem;
        width: 18px;
        margin-top: 2px;
    }
    
    .enterprise-benefit-toggle {
        width: 28px;
        height: 28px;
        border-width: 1.5px;
        margin-top: 2px;
    }
    
    .enterprise-benefit-toggle svg {
        width: 14px;
        height: 14px;
        stroke-width: 2.5;
    }
    
    .enterprise-benefits-list {
        gap: 14px;
    }
    
    .enterprise-benefit-item {
        padding-bottom: 14px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .enterprise-benefits-section {
        padding: 25px 15px;
    }
    
    .enterprise-benefits-title {
        font-size: 1.375rem;
    }
    
    .enterprise-benefits-subtitle {
        font-size: 0.8125rem;
    }
    
    .enterprise-benefit-title {
        font-size: 1rem;
    }
    
    .enterprise-benefit-content {
        font-size: 0.8125rem;
        padding-left: 25px;
    }
    
    .enterprise-benefit-number {
        font-size: 0.8125rem;
        width: 16px;
    }
    
    .enterprise-benefit-toggle {
        width: 26px;
        height: 26px;
    }
    
    .enterprise-benefit-toggle svg {
        width: 12px;
        height: 12px;
    }
}

/* Hover effects for larger screens only */
@media (min-width: 768px) {
    .enterprise-benefit-header:hover .enterprise-benefit-toggle {
        border-color: rgba(255, 255, 255, 0.5);
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .enterprise-benefit-header:hover .enterprise-benefit-title {
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .enterprise-benefit-toggle,
    .enterprise-benefit-toggle svg {
        transition: none;
    }
}

/* Focus states for keyboard navigation */
.enterprise-benefit-header:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print styles */
@media print {
    .enterprise-benefits-section {
        color: black;
        background: white;
        padding: 20px;
    }
    
    .enterprise-benefit-toggle {
        display: none;
    }
    
    .enterprise-benefit-content {
        display: block !important;
        padding-left: 0;
    }
}

.integration-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.integration-container {
    background-color: #141420; /* Dark background */
    border-radius: 20px;
    padding: 40px;
    color: white;
    overflow: hidden;
}

.integration-header {
    text-align: center;
    margin-bottom: 25px;
}

.integration-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.integration-subtitle {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto;
}

.integration-image-container {
    width: 100%;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

.integration-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.integration-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.integration-feature {
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.integration-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(87, 30, 177, 0.2), rgba(32, 9, 70, 0.2));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.integration-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.integration-feature:hover::before {
    opacity: 1;
}

.integration-feature:hover .feature-icon {
    color: #ff3e8a; /* Pink highlight on hover */
    transform: scale(1.2);
}

.integration-feature:hover .feature-title {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.feature-icon {
    margin-bottom: 15px;
    color: white;
}

.feature-icon img {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .integration-features {
        grid-template-columns: 1fr;
    }
    
    .integration-container {
        padding: 25px;
    }
    
    .integration-title {
        font-size: 24px;
    }
}

/* FAQ Section */
.faq-section {
    color: #ffffff;
    padding: 60px 20px;
    max-width: 100%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 600;
}

.faq-description {
    text-align: center;
    margin-bottom: 60px;
    color: #d1d1d1;
    font-size: 16px;
    text-align: left;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.faq-question::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px 0 0;
    color: #d1d1d1;
    margin-top: 10px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 15px;
}

/* Media Queries */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 15px;
    }
}

/* footer section*/
/* Footer Styles */
.footer {
    background-color: #f8f9ff;
    padding: 60px 0 30px 0;
    color: #333;
  }
   
  .footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
  }
   
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
  }
   
  /* Company Info Section */
  .footer-company {
    grid-column: span 1;
  }
   
  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }
   
  .footer-logo img {
    width: 120px;
    height: auto;
    margin-right: 10px;
  }
   
  .company-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
   
  /* Social Media Icons */
  .social-media {
    display: flex;
    gap: 15px;
    align-items: center;
  }
   
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    color: white;
  }
   
  .social-icon.linkedin {
    background-color: #0077b5;
  }
   
  .social-icon.twitter {
    background-color: #000;
  }
   
  .social-icon.facebook {
    background-color: #1877f2;
  }
   
  .social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  }
   
  .social-icon.threads {
    background-color: #000;
  }
   
  .social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
   
  /* Footer Sections */
  .footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
   
  .footer-links {
    list-style: none;
  }
   
  .footer-links li {
    margin-bottom: 12px;
  }
   
  .footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
  }
   
  .footer-links a:hover {
    color: #4285f4;
    padding-left: 5px;
  }
   
  /* Contact Section */
  .contact-infos {
    list-style: none;
  }
   
  .contact-infos li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #666;
    font-size: 15px;
  }
   
  .contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    color: #4285f4;
  }
   
  .contact-text {
    line-height: 1.5;
  }
   
  /* Footer Bottom */
  .footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    text-align: center;
  }
   
  .copyright {
    color: #666;
    font-size: 14px;
    font-weight: 500;
  }
   
  /* Tablet Styles */
  @media screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
   
    .footer-company {
        grid-column: span 1;
    }
   
    .footer-container {
        padding: 0 30px;
    }
  }
   
  /* Mobile Styles */
  @media screen and (max-width: 768px) {
    .footer {
        padding: 40px 0 20px 0;
    }
   
    .footer-container {
        padding: 0 20px;
    }
   
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
   
    .footer-company {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 20px;
    }
   
    .company-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
   
    .social-media {
        justify-content: center;
    }
   
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }
   
    .footer-links a {
        font-size: 14px;
    }
   
    .contact-infos li {
        font-size: 14px;
        margin-bottom: 15px;
    }
   
    .contact-icon {
        width: 18px;
        height: 18px;
    }
  }
   
  /* Small Mobile Styles */
  @media screen and (max-width: 480px) {
    .footer {
        padding: 30px 0 15px 0;
    }
   
    .footer-container {
        padding: 0 15px;
    }
   
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
   
    .footer-company {
        grid-column: span 1;
        margin-bottom: 15px;
    }
   
    .footer-logo img {
        width: 100px;
    }
   
    .company-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
   
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
   
    .footer-section {
        text-align: center;
    }
   
    .footer-links a {
        padding: 8px 0;
    }
   
    .contact-infos li {
        justify-content: flex-start;
        text-align: left;
    }
   
    .copyright {
        font-size: 13px;
        padding: 0 10px;
    }
  }
   
  /* Very Small Screens */
  @media screen and (max-width: 360px) {
    .footer-container {
        padding: 0 10px;
    }
   
    .social-media {
        gap: 10px;
    }
   
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
   
    .contact-infos li {
        margin-bottom: 12px;
    }
  }
   
  /* Landscape Mobile */
  @media screen and (max-height: 500px) and (orientation: landscape) {
    .footer {
        padding: 20px 0 10px 0;
    }
   
    .footer-content {
        margin-bottom: 15px;
    }
   
    .footer-section h3 {
        margin-bottom: 15px;
    }
  }
