/* Itqan Global - Company Specific Styles */
/* Colors: Blue/Purple for Technology - Matching index.html Style */

:root {
  /* Brand Colors - Itqan Blue/Purple Theme */
  --itqan-primary: #4a90e2; /* Primary Blue */
  --itqan-secondary: #6c5ce7; /* Purple */
  --itqan-accent: #74b9ff; /* Light Blue */
  --itqan-dark: #2d3436; /* Dark Gray */
  --itqan-light: #e8f4f8; /* Light Background */
  --itqan-white: #ffffff; /* White */
  --itqan-gradient: linear-gradient(135deg, #2d3436 0%, #4a90e2 50%, #6c5ce7 100%);
  --itqan-gradient-light: linear-gradient(135deg, rgba(45, 52, 54, 0.1) 0%, rgba(74, 144, 226, 0.1) 50%, rgba(108, 92, 231, 0.1) 100%);
  
  /* RGB values for rgba() usage */
  --itqan-primary-rgb: 74, 144, 226;
  --itqan-secondary-rgb: 108, 92, 231;
  --itqan-dark-rgb: 45, 52, 54;
  
  /* Font Variables - Matching index.html */
  --default-font: "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "IBM Plex Sans Arabic", sans-serif;
  --nav-font: "IBM Plex Sans Arabic", sans-serif;
}

/* Global Font - IBM Plex Sans Arabic for All Text */
.itqan-global-page,
.itqan-global-page * {
  font-family: var(--default-font) !important;
}

.itqan-global-page {
  background: #f8f9fa;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.company-page .main {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  display: block;
}

/* إخفاء عناصر موبايل افتراضياً على الشاشات الكبيرة */
.company-page .mobile-nav-toggle {
  display: none;
}

.company-page .mobile-nav-menu {
  display: none;
}

/* ============================================
   HEADER & NAVBAR - Premium Professional Design
   ============================================ */
.company-page .header {
  background: transparent;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.company-page .header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.company-page .header .header-big-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 244, 248, 0.95) 100%);
  border-radius: 16px;
  padding: 12px 25px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(var(--itqan-primary-rgb), 0.1);
  position: relative;
  overflow: visible;
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}

.company-page .header .header-big-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(var(--itqan-primary-rgb), 0.3) 20%, 
    rgba(var(--itqan-primary-rgb), 0.5) 50%, 
    rgba(var(--itqan-primary-rgb), 0.3) 80%, 
    transparent 100%);
  border-radius: 16px 16px 0 0;
}

.company-page .header .header-big-container::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(var(--itqan-primary-rgb), 0.08) 10%, 
    rgba(var(--itqan-primary-rgb), 0.15) 50%, 
    rgba(var(--itqan-primary-rgb), 0.08) 90%, 
    transparent 100%);
  transform: translateY(-50%);
  pointer-events: none;
}

.company-page .header.scrolled .header-big-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(232, 244, 248, 0.98) 100%);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(var(--itqan-primary-rgb), 0.15);
}

/* Navmenu - Desktop Style */
@media (min-width: 1200px) {
  .company-page .navmenu {
    padding: 0;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
  }

  /* Company Logo - Far Left (First Element) */
  .company-page .navmenu .logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    flex-shrink: 0;
    padding: 8px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(var(--itqan-primary-rgb), 0.1);
    box-shadow: 
      0 2px 8px rgba(0, 0, 0, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    order: 1;
    margin: 0;
  }

  .company-page .navmenu .logo::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(var(--itqan-primary-rgb), 0.2), rgba(var(--itqan-secondary-rgb), 0.1));
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }

  .company-page .navmenu .logo:hover::before {
    opacity: 1;
  }

  .company-page .navmenu .logo img {
    height: 65px;
    max-height: 65px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
  }

  .company-page .navmenu .logo:hover {
    transform: translateY(-2px);
    box-shadow: 
      0 6px 20px rgba(var(--itqan-primary-rgb), 0.2),
      0 2px 8px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(var(--itqan-primary-rgb), 0.25);
  }

  .company-page .navmenu .logo:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(var(--itqan-primary-rgb), 0.3));
  }

  /* Erasa Group Logo - Far Right */
  .company-page .navmenu .erasa-group-logo {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 10px;
  transition: all 0.3s ease;
    z-index: 1002;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    order: 4;
    margin-left: auto;
  }

  .company-page .navmenu .erasa-group-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .company-page .navmenu .erasa-group-logo img {
    height: 45px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
  transition: all 0.3s ease;
}

  .company-page .navmenu .erasa-group-logo:hover img {
    transform: scale(1.05);
  }

  .company-page .navmenu > ul:first-of-type,
  .company-page .navmenu > ul.justify-content-start {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    flex: 0 1 auto;
    padding-left: 0;
    z-index: 1002;
    position: relative;
    padding-right: 20px;
    order: 2;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .company-page .navmenu > ul:first-of-type::after,
  .company-page .navmenu > ul.justify-content-start::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, 
      transparent 0%, 
      rgba(var(--itqan-primary-rgb), 0.2) 20%, 
      rgba(var(--itqan-primary-rgb), 0.3) 50%, 
      rgba(var(--itqan-primary-rgb), 0.2) 80%, 
      transparent 100%);
  }

  .company-page .navmenu > ul:first-of-type li,
  .company-page .navmenu > ul.justify-content-start li {
    list-style: none;
    margin: 0;
  }

  /* Company Name - Premium Style */
  .company-page .navmenu > ul:first-of-type .company-name,
  .company-page .navmenu > ul.justify-content-start .company-name {
    color: var(--itqan-dark);
    padding: 14px 20px;
    font-size: 17px;
    font-weight: 600;
    font-family: var(--nav-font);
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    z-index: 1002;
    border-radius: 10px;
    background: rgba(var(--itqan-primary-rgb), 0.03);
    border: 1px solid rgba(var(--itqan-primary-rgb), 0.08);
  }

  .company-page .navmenu > ul:first-of-type .company-name::before,
  .company-page .navmenu > ul.justify-content-start .company-name::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--itqan-primary-rgb), 0.1) 0%, rgba(var(--itqan-secondary-rgb), 0.05) 100%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }

  .company-page .navmenu > ul:first-of-type .company-name:hover,
  .company-page .navmenu > ul.justify-content-start .company-name:hover {
  color: var(--itqan-primary);
    border-color: rgba(var(--itqan-primary-rgb), 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--itqan-primary-rgb), 0.15);
  }

  .company-page .navmenu > ul:first-of-type .company-name:hover::before,
  .company-page .navmenu > ul.justify-content-start .company-name:hover::before {
    opacity: 1;
  }


  /* Header List 2 - Navigation Links - Center/Right */
  .company-page .header-list-2 {
  margin-right: 0 !important;
    padding-right: 25px !important;
    padding-left: 25px !important;
  display: flex !important;
  align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  width: auto !important;
    flex: 1 1 auto;
  z-index: 1002;
    position: relative;
    order: 3;
    flex-shrink: 0;
    min-width: 0;
  }

  .company-page .header-list-2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, 
      transparent 0%, 
      rgba(var(--itqan-primary-rgb), 0.2) 20%, 
      rgba(var(--itqan-primary-rgb), 0.3) 50%, 
      rgba(var(--itqan-primary-rgb), 0.2) 80%, 
      transparent 100%);
  }

  .company-page .header-list-2 li {
  list-style: none;
    margin: 0;
  }

  .company-page .header-list-2 .nav-link {
    padding: 12px 20px;
    position: relative;
    z-index: 1002;
    color: #555555;
    font-size: 16.5px;
    font-weight: 500;
    font-family: var(--nav-font);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    background: rgba(var(--itqan-primary-rgb), 0.02);
    border: 1px solid transparent;
  }

  .company-page .header-list-2 .nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--itqan-primary-rgb), 0.08) 0%, rgba(var(--itqan-secondary-rgb), 0.04) 100%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }

  .company-page .header-list-2 .nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--itqan-primary), transparent);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .company-page .header-list-2 .nav-link:hover::before,
  .company-page .header-list-2 .nav-link.active::before {
    opacity: 1;
  }

  .company-page .header-list-2 .nav-link:hover::after,
  .company-page .header-list-2 .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
  }

  .company-page .header-list-2 .nav-link:hover,
  .company-page .header-list-2 .nav-link.active {
    color: var(--itqan-primary);
    border-color: rgba(var(--itqan-primary-rgb), 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--itqan-primary-rgb), 0.12);
  }
}

/* Tablet and Medium Screens */
@media (min-width: 992px) and (max-width: 1199px) {
  .company-page .header .header-big-container {
    width: 95%;
    margin: 0 auto;
    padding: 10px 20px;
  }

  .company-page .navmenu {
    gap: 15px;
  }

  .company-page .navmenu > ul:first-of-type,
  .company-page .navmenu > ul.justify-content-start {
    gap: 12px;
    padding-left: 15px;
    padding-right: 12px;
  }

  .company-page .navmenu > ul:first-of-type .company-name,
  .company-page .navmenu > ul.justify-content-start .company-name {
    font-size: 14px;
    padding: 10px 15px;
    max-width: 220px;
  }

  .company-page .navmenu .logo {
    margin: 0 20px;
    padding: 6px 15px;
  }

  .company-page .navmenu .logo img {
    height: 55px;
    max-height: 55px;
  }

  .company-page .header-list-2 .nav-link {
    padding: 10px 14px;
    font-size: 14.5px;
  }

  .company-page .header-list-2 {
    gap: 5px !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}

/* Large Screens Optimization */
@media (min-width: 1400px) {
  .company-page .header .header-big-container {
    width: 1200px;
  }

  .company-page .navmenu > ul:first-of-type .company-name,
  .company-page .navmenu > ul.justify-content-start .company-name {
    max-width: 320px;
    font-size: 18px;
  }

  .company-page .header-list-2 .nav-link {
    padding: 12px 22px;
    font-size: 17px;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  /* Remove default margins and paddings on mobile */
  html,
  body,
  .company-page,
  .itqan-global-page {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
  }

  .company-page .main {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden;
  }

  /* Hide desktop navigation elements */
  .company-page .navmenu > ul.justify-content-start,
  .company-page .navmenu > ul.header-list-2 {
    display: none !important;
  }

  /* Company Logo - Mobile (Left) */
  .company-page .navmenu .logo {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 10px;
    z-index: 9999;
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(var(--itqan-primary-rgb), 0.1);
    flex-shrink: 0;
    order: 1;
    margin: 0;
  }

  .company-page .navmenu .logo img {
    height: 50px;
    max-height: 50px;
    width: auto;
  }

  /* Erasa Group Logo - Mobile (Right) */
  .company-page .navmenu .erasa-group-logo {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 9999;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    order: 4;
  }

  .company-page .navmenu .erasa-group-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .company-page .navmenu .erasa-group-logo img {
    height: 40px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
  }

  /* Show mobile toggle button */
  .company-page .mobile-nav-toggle {
    display: block !important;
    color: #333;
    font-size: 28px;
    cursor: pointer;
    z-index: 10000;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }

  .company-page .mobile-nav-toggle:hover {
    color: var(--itqan-primary);
    transform: translateY(-50%) scale(1.1);
  }

  /* Logo - Centered on Mobile */
  .company-page .header .logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: auto;
    height: auto;
    top: 50%;
    z-index: 9999;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .company-page .header .logo::before {
    display: none;
  }
  
  .company-page .header .logo img {
    height: 60px;
    max-height: 60px;
    width: auto;
  }

  /* Mobile menu container */
  .company-page .navmenu {
    position: relative;
    width: 100%;
    min-height: 70px;
    justify-content: center;
    align-items: center;
  }

  /* Ensure header container works on mobile */
  .company-page .header .header-big-container {
    padding: 10px 15px;
    min-height: 70px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 10px;
  }

  /* Header padding on mobile */
  .company-page .header {
    padding: 15px 0;
  }

  /* Mobile navigation menu - Hidden by default */
  .company-page .navmenu .mobile-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9998;
    padding-top: 80px;
    overflow-y: auto;
  }

  .company-page .navmenu .mobile-nav-menu.active {
    display: block;
  }

  /* Mobile menu items */
  .company-page .navmenu .mobile-nav-menu ul {
    list-style: none;
    padding: 20px;
    margin: 0;
  }

  .company-page .navmenu .mobile-nav-menu li {
    margin-bottom: 10px;
  }

  .company-page .navmenu .mobile-nav-menu .mobile-company-name {
    font-size: 20px;
    font-weight: 700;
  color: var(--itqan-dark);
    padding: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(var(--itqan-primary-rgb), 0.2);
    font-family: var(--nav-font);
  }

  .company-page .navmenu .mobile-nav-menu .nav-link {
    display: block;
    padding: 18px 25px;
    color: #333;
  font-size: 18px;
    font-weight: 500;
    font-family: var(--nav-font);
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 8px;
    background: rgba(var(--itqan-primary-rgb), 0.05);
    border: 1px solid rgba(var(--itqan-primary-rgb), 0.1);
  transition: all 0.3s ease;
}

  .company-page .navmenu .mobile-nav-menu .nav-link:hover,
  .company-page .navmenu .mobile-nav-menu .nav-link.active {
    background: rgba(var(--itqan-primary-rgb), 0.1);
  color: var(--itqan-primary);
    border-color: rgba(var(--itqan-primary-rgb), 0.3);
    transform: translateX(-5px);
  }

  /* Close button */
  .company-page .mobile-nav-menu .mobile-close-btn {
    position: fixed;
    top: 18px;
    left: 20px;
    font-size: 26px;
    color: var(--itqan-dark);
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--itqan-primary-rgb), 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .company-page .mobile-nav-menu .mobile-close-btn:hover {
    background: rgba(var(--itqan-primary-rgb), 0.2);
    color: var(--itqan-primary);
    transform: rotate(90deg);
  }
}

/* ============================================
   HERO SECTION - Premium Luxury Design
   ============================================ */
.company-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.pexels.com/photos/1181244/pexels-photo-1181244.jpeg?auto=compress&cs=tinysrgb&w=2000');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: heroBackgroundZoom 20s ease-in-out infinite alternate;
}

@keyframes heroBackgroundZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 52, 54, 0.85) 0%,
    rgba(74, 144, 226, 0.75) 50%,
    rgba(108, 92, 231, 0.8) 100%
  );
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(108, 92, 231, 0.1) 50%, transparent 70%);
  z-index: 1;
  opacity: 0.6;
  animation: patternMove 15s ease-in-out infinite;
}

@keyframes patternMove {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, -20px);
  }
}

.company-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}


.company-hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 
    2px 2px 10px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(74, 144, 226, 0.3);
  font-family: var(--heading-font);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.company-hero p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--default-font);
  line-height: 1.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-btns {
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.know-more,
.contact-us {
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  font-family: var(--nav-font);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.know-more {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.know-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.know-more:hover::before {
  left: 100%;
}

.know-more:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--itqan-primary);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.know-more i {
  transition: transform 0.3s ease;
}

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

.contact-us {
  background: linear-gradient(135deg, var(--itqan-secondary), var(--itqan-primary));
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.contact-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-accent));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}

.contact-us:hover::before {
  opacity: 1;
}

.contact-us span,
.contact-us i {
  position: relative;
  z-index: 1;
}

.contact-us:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(108, 92, 231, 0.6);
}

.contact-us i {
  transition: transform 0.3s ease;
}

.contact-us:hover i {
  transform: scale(1.2);
}

/* Hero Stats - Premium Luxury Design */
.hero-stats {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  border-radius: 2px;
}

.hero-stat-item {
  text-align: center;
  padding: 35px 40px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 160px;
  position: relative;
  overflow: hidden;
}

.hero-stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(108, 92, 231, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.hero-stat-item:hover::before {
  opacity: 1;
}

.hero-stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(74, 144, 226, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.hero-stat-item:hover .stat-icon-wrapper {
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.5);
}

.stat-icon-wrapper i {
  font-size: 28px;
  color: #fff;
  transition: all 0.4s ease;
}

.hero-stat-item:hover .stat-icon-wrapper i {
  transform: scale(1.1);
}

.hero-stat-item .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: var(--heading-font);
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(74, 144, 226, 0.3);
  position: relative;
  z-index: 1;
  line-height: 1;
}

.hero-stat-item:hover .stat-number {
  text-shadow: 
    0 2px 15px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(74, 144, 226, 0.5);
  transform: scale(1.1);
}

.hero-stat-item .stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.hero-stat-item:hover .stat-label {
  color: #fff;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  animation: scrollBounce 2s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
  color: #fff;
  transform: translateX(-50%) translateY(5px);
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Responsive Hero */
@media (max-width: 768px) {
  .company-hero h1 {
    font-size: 2.5rem;
  }

  .company-hero p {
    font-size: 1.1rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }

  .know-more,
  .contact-us {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
    padding-top: 30px;
    margin-top: 40px;
  }

  .hero-stat-item {
    min-width: 140px;
    padding: 25px 30px;
  }

  .stat-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .stat-icon-wrapper i {
    font-size: 24px;
  }

  .hero-stat-item .stat-number {
    font-size: 2.2rem;
  }

  .hero-stat-item .stat-label {
    font-size: 13px;
  }
}

/* About Section */
.company-about {
  padding: 100px 0;
  background: #fff;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--itqan-dark);
  margin-bottom: 25px;
  font-family: var(--heading-font);
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 20px;
  font-family: var(--default-font);
}

.about-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--itqan-dark);
  font-family: var(--default-font);
}

.feature-item i {
  color: var(--itqan-primary);
  font-size: 20px;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(74, 144, 226, 0.25);
  transition: all 0.4s ease;
}

.about-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(74, 144, 226, 0.35);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 20px;
}

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

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(45, 52, 54, 0.1) 50%,
    rgba(74, 144, 226, 0.2) 100%
  );
  border-radius: 20px;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.about-badge i {
  color: var(--itqan-primary);
  font-size: 18px;
}

.about-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--itqan-dark);
  font-family: var(--nav-font);
}

/* Works Section */
.company-works {
  padding: 100px 0;
  background: var(--itqan-light);
}

.company-works .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.company-works .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--itqan-dark);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.company-works .section-title p {
  font-size: 1.1rem;
  color: #666;
  font-family: var(--default-font);
}

/* Works Cards Container - Organized Rows */
.works-cards-container {
  width: 100%;
}

.works-row {
  margin-bottom: 30px;
}

.works-row:last-child {
  margin-bottom: 0;
}

.work-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.work-card:hover {
  transform: translateY(-10px);
  border-color: var(--itqan-primary);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.work-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
}

.work-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--itqan-dark);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.work-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  font-family: var(--default-font);
}

/* Portfolio Section */
.company-portfolio {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--itqan-light) 100%);
  position: relative;
}

.company-portfolio .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.company-portfolio .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--itqan-dark);
  margin-bottom: 15px;
  position: relative;
  font-family: var(--heading-font);
}

.company-portfolio .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  border-radius: 2px;
}

.company-portfolio .section-title p {
  font-size: 1.1rem;
  color: #666;
  margin-top: 25px;
  font-family: var(--default-font);
}

/* Portfolio Grid */
.portfolio-grid {
  margin: 0 -12px;
  width: calc(100% + 24px);
  display: flex;
  flex-wrap: wrap;
}

.portfolio-grid [class*="col-lg-4"] {
  padding: 0 12px;
  margin-bottom: 30px;
  display: flex;
  width: 33.333333% !important;
  flex: 0 0 33.333333% !important;
  max-width: 33.333333% !important;
  box-sizing: border-box;
}

.portfolio-item {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s ease;
  width: 100%;
  display: flex;
}

.portfolio-item-hidden {
  display: none !important;
}

.portfolio-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  background: #fff;
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(74, 144, 226, 0.1);
}

.portfolio-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 12px 35px rgba(74, 144, 226, 0.25);
  border-color: rgba(74, 144, 226, 0.3);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 280px;
  width: 100%;
  flex-shrink: 0;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.95);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* Portfolio Modal */
.portfolio-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.portfolio-modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.portfolio-modal-close {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  background: var(--itqan-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
  border: 2px solid #fff;
}

.portfolio-modal-close:hover {
  background: var(--itqan-secondary);
  transform: rotate(90deg);
}

.portfolio-modal-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

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

.portfolio-modal-info {
  padding: 30px;
}

.portfolio-modal-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--itqan-dark);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.portfolio-modal-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  font-family: var(--default-font);
}

/* Portfolio Load More Button */
.portfolio-load-more-wrapper {
  text-align: center;
  margin-top: 50px;
}

.portfolio-load-more-btn {
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  font-family: var(--nav-font);
}

.portfolio-load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.portfolio-load-more-btn i {
  transition: transform 0.3s ease;
}

.portfolio-load-more-btn:hover i {
  transform: translateY(3px);
}

/* Contact Section */
.company-contact {
  padding: 100px 0;
  background: #fff;
}

.company-contact .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.company-contact .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--itqan-dark);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.company-contact .section-title p {
  font-size: 1.1rem;
  color: #666;
  font-family: var(--default-font);
}

.contact-card {
  background: var(--itqan-light);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--itqan-primary);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--itqan-dark);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.contact-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  font-family: var(--default-font);
}

/* Footer */
.company-footer {
  background: var(--itqan-dark);
  color: #fff;
  padding: 40px 0;
}

.company-footer p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-family: var(--default-font);
}

.back-to-group-link {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: var(--nav-font);
}

.back-to-group-link:hover {
  color: var(--itqan-accent);
  gap: 12px;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  text-decoration: none;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.scroll-top.d-none {
  display: none !important;
}

/* Vision & Mission Section */
.vision-mission {
  padding: 100px 0;
  background: var(--itqan-light);
}

.vision-mission .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.vision-mission .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--itqan-dark);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.vision-mission .section-title p {
  font-size: 1.1rem;
  color: #666;
  font-family: var(--default-font);
}

.vm-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--itqan-primary), var(--itqan-secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.vm-card:hover::before {
  transform: scaleX(1);
}

.vm-card:hover {
  transform: translateY(-10px);
  border-color: var(--itqan-primary);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
}

.vm-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.vm-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--itqan-dark);
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.vm-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  font-family: var(--default-font);
}

/* Stats Section */
.company-stats {
  padding: 100px 0;
  background: var(--itqan-gradient);
  position: relative;
  overflow: hidden;
}

.company-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../../img/feature-img4.png') center/cover;
  opacity: 0.1;
  z-index: 0;
}

.company-stats .container {
  position: relative;
  z-index: 1;
}

.company-stats .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.company-stats .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  font-family: var(--heading-font);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.company-stats .section-title p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--default-font);
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--itqan-primary);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: rotate(360deg) scale(1.1);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--itqan-primary);
  margin-bottom: 10px;
  font-family: var(--heading-font);
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--itqan-dark);
  font-weight: 600;
  font-family: var(--default-font);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 100px 0;
  background: #fff;
}

.why-choose-us .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.why-choose-us .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--itqan-dark);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.why-choose-us .section-title p {
  font-size: 1.1rem;
  color: #666;
  font-family: var(--default-font);
}

.why-card {
  background: var(--itqan-light);
  padding: 35px 30px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--itqan-primary);
  box-shadow: 0 12px 35px rgba(74, 144, 226, 0.2);
  background: #fff;
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  transition: all 0.4s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--itqan-dark);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  font-family: var(--default-font);
}

/* Certifications Section */
.certifications {
  padding: 100px 0;
  background: var(--itqan-light);
}

.certifications .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.certifications .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--itqan-dark);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.certifications .section-title p {
  font-size: 1.1rem;
  color: #666;
  font-family: var(--default-font);
}

.cert-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cert-card:hover {
  transform: translateY(-8px);
  border-color: var(--itqan-primary);
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.2);
}

.cert-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  transition: all 0.4s ease;
}

.cert-card:hover .cert-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.cert-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--itqan-dark);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.cert-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  font-family: var(--default-font);
  margin: 0;
}

/* Partners Section */
.partners {
  padding: 100px 0;
  background: #fff;
}

.partners .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.partners .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--itqan-dark);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.partners .section-title p {
  font-size: 1.1rem;
  color: #666;
  font-family: var(--default-font);
}

.partner-logo {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid #f0f0f0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.partner-logo:hover {
  transform: translateY(-5px);
  border-color: var(--itqan-primary);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}

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

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--itqan-light);
}

.faq .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.faq .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--itqan-dark);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.faq .section-title p {
  font-size: 1.1rem;
  color: #666;
  font-family: var(--default-font);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(74, 144, 226, 0.1);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: transparent;
  border: none;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--itqan-dark);
  font-family: var(--heading-font);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--itqan-primary);
}

.faq-question i {
  color: var(--itqan-primary);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--itqan-primary);
  background: var(--itqan-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  font-family: var(--default-font);
  margin: 0;
}

@media (min-width: 769px) and (max-width: 991px) {
  .company-hero h1 {
    font-size: 3rem;
  }

  .about-content h2,
  .company-works .section-title h2,
  .company-portfolio .section-title h2,
  .company-contact .section-title h2,
  .vision-mission .section-title h2,
  .company-stats .section-title h2,
  .why-choose-us .section-title h2,
  .certifications .section-title h2,
  .partners .section-title h2,
  .faq .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {

  .company-page .navmenu .logo {
    order: 2;
    margin: 0 auto;
    padding: 6px 15px;
  }

  .company-page .navmenu .logo img {
    height: 50px;
    max-height: 50px;
  }

  .company-page .mobile-nav-toggle {
    display: flex !important;
    order: 3;
    margin-right: auto;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
  }

  .company-page .header-list-2 {
    display: none !important;
  }

  .company-hero {
    padding-top: 120px;
    min-height: 90vh;
  }

  .company-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .company-hero p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .know-more,
  .contact-us {
    width: 100%;
    text-align: center;
    padding: 12px 25px;
    font-size: 15px;
  }

  .about-content h2,
  .company-works .section-title h2,
  .company-portfolio .section-title h2,
  .company-contact .section-title h2,
  .vision-mission .section-title h2,
  .company-stats .section-title h2,
  .why-choose-us .section-title h2,
  .certifications .section-title h2,
  .partners .section-title h2,
  .faq .section-title h2 {
    font-size: 1.8rem;
  }

  .company-about,
  .company-works,
  .company-portfolio,
  .company-contact,
  .vision-mission,
  .company-stats,
  .why-choose-us,
  .certifications,
  .partners,
  .faq {
    padding: 60px 0;
  }

  .portfolio-grid [class*="col-lg-4"] {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px;
  }

  .portfolio-modal-content {
    max-width: 95%;
    margin: 20px;
  }

  .portfolio-modal-image {
    height: 250px;
  }

  .portfolio-modal-info {
    padding: 20px;
  }

  .portfolio-modal-info h2 {
    font-size: 1.4rem;
  }

  .scroll-top {
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .vm-card,
  .stat-card,
  .why-card,
  .cert-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .vm-icon,
  .stat-icon,
  .why-icon,
  .cert-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .work-card {
    padding: 30px 20px;
  }

  .work-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .faq-question {
    padding: 20px 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .partner-logo {
    padding: 20px;
    min-height: 100px;
  }

  .partner-logo img {
    max-height: 60px;
  }
}

/* Small Mobile Screens */
@media (max-width: 576px) {
  .company-page .header .header-big-container {
    padding: 8px 12px;
  }

  .company-page .navmenu > ul:first-of-type .company-name,
  .company-page .navmenu > ul.justify-content-start .company-name {
    font-size: 12px;
    padding: 8px 12px;
  }

  .company-page .navmenu .logo {
    padding: 5px 12px;
  }

  .company-page .navmenu .logo img {
    height: 45px;
    max-height: 45px;
  }

  .company-hero h1 {
    font-size: 1.75rem;
  }

  .company-hero p {
    font-size: 0.95rem;
  }

  .about-content h2,
  .company-works .section-title h2,
  .company-portfolio .section-title h2,
  .company-contact .section-title h2,
  .vision-mission .section-title h2,
  .company-stats .section-title h2,
  .why-choose-us .section-title h2,
  .certifications .section-title h2,
  .partners .section-title h2,
  .faq .section-title h2 {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .vm-card,
  .stat-card,
  .why-card,
  .cert-card,
  .work-card,
  .contact-card {
    padding: 25px 15px;
  }

  .section-title p {
    font-size: 0.95rem;
  }

  .know-more,
  .contact-us {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ============================================
   ITQAN PORTFOLIO - MASONRY LAYOUT
   ============================================ */
.itqan-global-page .company-portfolio .portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.itqan-global-page .company-portfolio .portfolio-masonry .portfolio-item {
  width: auto !important;
  max-width: none !important;
  flex: initial !important;
  display: block;
  grid-column: span 4;
  margin-bottom: 0;
}

.itqan-global-page .company-portfolio .portfolio-masonry .portfolio-item.is-wide {
  grid-column: span 8;
}

.itqan-global-page .company-portfolio .portfolio-masonry .portfolio-item.is-tall {
  grid-column: span 4;
  grid-row: span 2;
}

.itqan-global-page .company-portfolio .portfolio-masonry .portfolio-item.is-featured {
  grid-column: span 8;
  grid-row: span 2;
}

.itqan-global-page .company-portfolio .portfolio-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(var(--itqan-primary-rgb), 0.12);
  box-shadow: 0 10px 40px rgba(var(--itqan-dark-rgb), 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(232, 244, 248, 1) 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.itqan-global-page .company-portfolio .portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(var(--itqan-primary-rgb), 0.25);
  border-color: rgba(var(--itqan-primary-rgb), 0.3);
}

.itqan-global-page .company-portfolio .portfolio-image {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: linear-gradient(135deg, rgba(var(--itqan-primary-rgb), 0.1), rgba(var(--itqan-secondary-rgb), 0.1));
}

.itqan-global-page .company-portfolio .portfolio-item.is-tall .portfolio-image,
.itqan-global-page .company-portfolio .portfolio-item.is-featured .portfolio-image {
  height: 360px;
}

.itqan-global-page .company-portfolio .portfolio-item.is-featured .portfolio-image {
  height: 420px;
}

.itqan-global-page .company-portfolio .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(1.05) contrast(1.05) brightness(0.96);
}

.itqan-global-page .company-portfolio .portfolio-card:hover .portfolio-image img {
  transform: scale(1.09);
  filter: saturate(1.1) contrast(1.08) brightness(1);
}

.itqan-global-page .company-portfolio .portfolio-meta {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}

.itqan-global-page .company-portfolio .portfolio-chip {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--itqan-primary-rgb), 0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--itqan-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.itqan-global-page .company-portfolio .portfolio-chip.soft {
  background: rgba(var(--itqan-secondary-rgb), 0.15);
  color: var(--itqan-secondary);
  border-color: rgba(var(--itqan-secondary-rgb), 0.25);
}

.itqan-global-page .company-portfolio .portfolio-title {
  padding: 20px;
  background: #fff;
  border-top: 2px solid rgba(var(--itqan-primary-rgb), 0.1);
  transition: all 0.4s ease;
}

.itqan-global-page .company-portfolio .portfolio-title h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--itqan-dark);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.itqan-global-page .company-portfolio .portfolio-title p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.itqan-global-page .company-portfolio .portfolio-card:hover .portfolio-title {
  background: linear-gradient(to bottom, rgba(var(--itqan-primary-rgb), 0.06), #fff);
  border-top-color: var(--itqan-primary);
}

.itqan-global-page .company-portfolio .portfolio-card:hover .portfolio-title h3 {
  color: var(--itqan-primary);
}

.portfolio-card-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.portfolio-item-hidden {
  display: none !important;
}

.portfolio-item-hidden.show {
  display: block !important;
}

@media (max-width: 992px) {
  .itqan-global-page .company-portfolio .portfolio-masonry {
    grid-template-columns: repeat(6, 1fr);
  }

  .itqan-global-page .company-portfolio .portfolio-masonry .portfolio-item {
    grid-column: span 3;
  }

  .itqan-global-page .company-portfolio .portfolio-masonry .portfolio-item.is-wide,
  .itqan-global-page .company-portfolio .portfolio-masonry .portfolio-item.is-featured {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .itqan-global-page .company-portfolio .portfolio-masonry {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .itqan-global-page .company-portfolio .portfolio-masonry .portfolio-item,
  .itqan-global-page .company-portfolio .portfolio-masonry .portfolio-item.is-wide,
  .itqan-global-page .company-portfolio .portfolio-masonry .portfolio-item.is-tall,
  .itqan-global-page .company-portfolio .portfolio-masonry .portfolio-item.is-featured {
    grid-column: span 1;
    grid-row: auto;
  }

  .itqan-global-page .company-portfolio .portfolio-image,
  .itqan-global-page .company-portfolio .portfolio-item.is-featured .portfolio-image {
    height: 240px;
  }
}

/* ============================================
   SMART SOLUTIONS SECTION
   ============================================ */
.company-solutions {
  background: linear-gradient(135deg, rgba(var(--itqan-primary-rgb), 0.03) 0%, rgba(var(--itqan-secondary-rgb), 0.03) 100%);
  padding: 100px 0;
}

.solutions-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(var(--itqan-primary-rgb), 0.15);
}

.solutions-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.solutions-floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-tech-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(var(--itqan-primary-rgb), 0.3);
  animation: floatIcon 3s ease-in-out infinite;
}

.floating-tech-icon i {
  font-size: 24px;
  color: var(--itqan-primary);
}

.floating-tech-icon:nth-child(2) {
  animation-delay: 0.5s;
}

.floating-tech-icon:nth-child(3) {
  animation-delay: 1s;
}

.floating-tech-icon:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.1); }
}

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

.solution-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(var(--itqan-primary-rgb), 0.08);
  transition: all 0.3s ease;
}

.solution-item:hover {
  transform: translateX(-5px);
  box-shadow: 0 8px 30px rgba(var(--itqan-primary-rgb), 0.15);
}

.solution-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.solution-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--itqan-dark);
  margin-bottom: 10px;
}

.solution-text p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   DIGITAL TRANSFORMATION SECTION
   ============================================ */
.company-digital-transformation {
  padding: 100px 0;
  background: #fff;
}

.transformation-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(var(--itqan-primary-rgb), 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.transformation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(var(--itqan-primary-rgb), 0.2);
}

.transformation-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.transformation-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.transformation-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.transformation-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--itqan-dark);
  margin-bottom: 15px;
}

.transformation-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.transformation-list li {
  padding: 8px 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.transformation-list li i {
  color: var(--itqan-primary);
  font-size: 16px;
}

/* ============================================
   TECH INNOVATIONS SECTION
   ============================================ */
.company-tech-innovations {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(var(--itqan-primary-rgb), 0.05) 0%, rgba(var(--itqan-secondary-rgb), 0.05) 100%);
}

.innovations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.innovation-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(var(--itqan-primary-rgb), 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.innovation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(var(--itqan-primary-rgb), 0.2);
  border-color: var(--itqan-primary);
}

.innovation-icon-wrapper {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.innovation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  transition: all 0.3s ease;
}

.innovation-card:hover .innovation-icon {
  transform: scale(1.1) rotate(5deg);
}

.innovation-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--itqan-dark);
  margin-bottom: 15px;
}

.innovation-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.innovation-features {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.innovation-features span {
  padding: 6px 14px;
  background: rgba(var(--itqan-primary-rgb), 0.1);
  border-radius: 20px;
  font-size: 13px;
  color: var(--itqan-primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.innovation-features span i {
  font-size: 14px;
}

/* ============================================
   SUCCESS STORIES SECTION
   ============================================ */
.company-success-stories {
  padding: 100px 0;
  background: #fff;
}

.success-story-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(var(--itqan-primary-rgb), 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.success-story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(var(--itqan-primary-rgb), 0.2);
}

.story-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

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

.story-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--itqan-primary), var(--itqan-secondary));
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(var(--itqan-primary-rgb), 0.3);
}

.story-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-category {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(var(--itqan-primary-rgb), 0.1);
  color: var(--itqan-primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  width: fit-content;
}

.story-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--itqan-dark);
  margin-bottom: 15px;
}

.story-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  flex: 1;
}

.story-metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric-item {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.metric-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--itqan-primary);
  margin-bottom: 5px;
}

.metric-label {
  display: block;
  font-size: 13px;
  color: #666;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
  .company-solutions,
  .company-digital-transformation,
  .company-tech-innovations,
  .company-success-stories {
    padding: 60px 0;
  }

  .solutions-main-img {
    height: 350px;
  }

  .floating-tech-icon {
    width: 50px;
    height: 50px;
  }

  .floating-tech-icon i {
    font-size: 20px;
  }

  .solution-item {
    flex-direction: column;
    text-align: center;
  }

  .innovations-grid {
    grid-template-columns: 1fr;
  }

  .story-metrics {
    justify-content: center;
  }
}
