/* ============================================
   SCSL GLOBAL - CONSOLIDATED CSS (FIXED)
   Version: 2.0
   All pages: Home, About, Contact, SAP Services,
   IT Staff Augmentation, Other Services
============================================ */

/* ============================================
   CSS Variables & Root
============================================ */
:root {
  /* Colors */
  --primary: #478ac9;
  --primary-dark: #3a7ab8;
  --primary-light: #5a9ad6;
  --secondary: #3fced3;
  --secondary-dark: #35b5ba;
  --accent: #27646a;
  --dark: #01080c;
  --dark-gray: #333333;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --white: #ffffff;

  /* Typography */
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Roboto Condensed", sans-serif;

  /* Spacing */
  --section-padding: 60px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 25px;
  --radius-full: 50px;
}

/* ============================================
   Reset & Base Styles
============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
}

.mt-20 {
  margin-top: 20px;
}

/* ============================================
   Typography
============================================ */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-title.text-left {
  text-align: left;
}

.section-title.text-left::after {
  left: 0;
  transform: none;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  text-align: center;
  margin-top: -30px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.section-description {
  font-size: 1rem;
  color: var(--gray);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

/* ============================================
   Buttons
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 35px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(63, 206, 211, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(63, 206, 211, 0.5);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  background: var(--light-gray);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-block {
  width: 100%;
}

/* ============================================
   Navigation
============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-fast);
  padding: 15px 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo .logo-img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  padding: 8px 0;
  position: relative;
}

.header.scrolled .nav-link {
  color: var(--dark-gray);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.btn-nav {
  background: var(--secondary);
  color: var(--white);
  padding: 10px 25px;
  border-radius: var(--radius-full);
}

.nav-link.btn-nav:hover {
  background: var(--secondary-dark);
}

.nav-link.btn-nav::after {
  display: none;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle i {
  font-size: 0.7rem;
  margin-left: 5px;
  transition: var(--transition-fast);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-fast);
  padding: 10px 0;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--dark-gray);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
  background: var(--light-gray);
  color: var(--primary);
  padding-left: 25px;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  position: relative;
  transition: var(--transition-fast);
}

.header.scrolled .hamburger {
  background: var(--dark-gray);
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  background: inherit;
  border-radius: 3px;
  transition: var(--transition-fast);
}

.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
  background: var(--dark-gray);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
  background: var(--dark-gray);
}

/* Nav Overlay for Mobile */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   Hero Section (Index Page - Video Background)
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(1, 8, 12, 0.7),
    rgba(71, 138, 201, 0.5)
  );
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 150px 20px 50px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.hero-form-container {
  flex-shrink: 0;
}

.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  width: 320px;
}

.form-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: var(--dark);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(63, 206, 211, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.hero-bottom {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 20px;
}

.hero-bottom-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-bottom-text {
  text-align: justify;
  max-width: 900px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================
   Page Hero (Inner Pages) - Base Styles
============================================ */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* DEFAULT Hero Background */
.page-hero {
  background-image: url("images/banner-5.webp");
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(1, 8, 12, 0.7),
    rgba(71, 138, 201, 0.6)
  );
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 20px 50px;
  max-width: 950px;
  flex: unset;
  display: block;
}

.hero-label {
  display: inline-block;
  font-size: 1rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.page-hero .hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
  color: var(--secondary);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .separator {
  margin: 0 10px;
  opacity: 0.7;
}

.breadcrumb .current {
  opacity: 0.9;
}

/* ============================================
   PAGE-SPECIFIC HERO BACKGROUNDS
   Add body class to each HTML page:
   - Contact: <body class="page-contact">
   - About: <body class="page-about">
   - SAP: <body class="page-sap">
   - IT Staff: <body class="page-it-staff">
   - Other Services: <body class="page-other-services">
============================================ */

/* new code for sticky */
html {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.page-it-staff {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overflow: visible visible !important;
}
/* new code for sticky */

/* Contact Page Hero */
.page-contact .page-hero,
.contact-section ~ .footer .page-hero {
  background-image: url("../images/contact-banner.webp");
}

/* About Page Hero */
.page-about .page-hero,
.company-overview ~ .footer .page-hero {
  background-image: url("../images/about-banner.webp");
}

/* QA & Testing Hero */
.page-qa-testing .page-hero {
  background-image: url("../images/QA_testongimage.webp");
  min-height: 550px;
}

/* Development Services Hero */
.page-dev-service .page-hero {
  background-image: url("../images/dev-service-banner.webp");
  min-height: 550px;
}

/* Cloud Services Hero */
.page-cloud-services .page-hero {
  background-image: url("../images/cloud-services-banner.webp");
  min-height: 550px;
}

/* Cybersecurity Services Hero */
.page-cybersecurity .page-hero {
  background-image: url("../images/cyber-security-banner.webp");
  min-height: 550px;
}

/* SAP Services Pages Hero */
.page-sap .page-hero,
.page-sap-advisory .page-hero,
.page-sap-migration .page-hero,
.page-sap-implementation .page-hero,
.page-sap-ams .page-hero,
.about-sap ~ .footer .page-hero,
.about-section ~ .footer .page-hero,
.about-ams ~ .footer .page-hero {
  background-image: url("../images/sap-services-hero-banner.webp");
  min-height: 550px;
}

/* IT Staff Augmentation Hero */
.page-it-staff .page-hero,
.intro-section + .models-section ~ .footer .page-hero {
  background-image: url("../images/it-staff-banner.webp");
  min-height: 550px;
}

/* ERP Page Hero */
.page-erp .page-hero {
  background-image: url("../images/erp-banner.webp");
  min-height: 550px;
}

/* Odoo Hero */
.page-odoo .page-hero {
  background-image: url("../images/odoo-banner.webp");
  min-height: 550px;
}

/* Other Services Hero */
.page-other-services .page-hero,
.services-section + .partners-section ~ .footer .page-hero {
  background-image: url("../images/other-services-banner.webp");
  min-height: 500px;
}

/* AI & ML Page Hero */
.page-ai-ml .page-hero {
  background-image: url("../images/ai-ml-banner.webp");
  min-height: 550px;
}

/* Business Intelligence Services Page Hero */
.page-business-intelligence .page-hero {
  background-image: url("../images/business-intelligence-banner.webp");
  min-height: 550px;
}

/* ============================================
   Page About - About Section
============================================ */
.text-center {
  text-align: center;
}

/* Container design */
.about .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

/* Image column (Left Side) */
.about .col-lg-5 {
  flex: 0 0 40%;
  min-width: 300px;
}

/* Text column (Right Side) */
.about .col-lg-7 {
  flex: 1;
}

.thumb {
  position: relative;
}

.thumb img {
  border-radius: 8px;
}

.thumb img:first-child {
  width: 80%;
}

.thumb img:nth-child(2) {
  position: relative;
  left: 20%;
  width: 80%;
  top: -80px;
  margin-bottom: -80px;
  box-shadow: 0 0 10px #dce0e7;
  padding: 5px;
  margin-right: 10px;
  background: var(--white);
}

.thumb img:nth-child(3) {
  position: relative;
  width: 80%;
  top: -60px;
  box-shadow: 0 0 10px #dce0e7;
  padding: 5px;
  background: var(--white);
}
/* media query */
@media screen and (max-width: 992px) {
  .col-lg-7 .about-text {
    text-align: left;
  }
}

/* ============================================
   Services Section (Index)
============================================ */
.services {
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition-fast);
}

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

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

/* Service Icon - Index Page (Image) */
.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  max-width: 80px;
  max-height: 80px;
}

/* Service Icon with gradient background (Inner Pages) */
.service-icon .icon-gradient,
.service-header .service-icon,
.advisory-services .service-icon,
.sap-services .service-icon,
.services-section .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.8rem;
}

.service-icon .icon-gradient i,
.service-header .service-icon i,
.advisory-services .service-icon i,
.sap-services .service-icon i,
.services-section .service-icon i {
  font-size: 1.8rem;
  color: var(--white) !important;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-description {
  color: var(--gray);
  margin-bottom: 25px;
  line-height: 1.8;
  flex-grow: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
}

.service-list li svg {
  color: var(--secondary);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================
   About Section (Index)
============================================ */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content .section-title {
  margin-bottom: 30px;
}

.about-text {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 30px;
  text-align: justify;
}

.iso-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding: 15px 20px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
}

.iso-badge img {
  width: 60px;
  height: 60px;
}

.iso-badge span {
  font-weight: 600;
  color: var(--dark);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

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

.stat-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  max-width: 40px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Stats Row (About page) */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

/* ============================================
   Technology Section (Index)
============================================ */
.technology {
  background: var(--light-gray);
  overflow: hidden;
}

.marquee-container {
  margin-top: 30px;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
}

.marquee-content {
  display: flex;
  gap: 40px;
  padding: 15px 0;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.marquee-left .marquee-content {
  animation-name: scrollLeft;
}

.marquee-right .marquee-content {
  animation-name: scrollRight;
}

.marquee-track:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray);
  white-space: nowrap;
  transition: var(--transition-fast);
  cursor: pointer;
}

.marquee-content span:hover {
  color: var(--secondary);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ============================================
   Industries Section (Index)
============================================ */
.industries-image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.industries-image img {
  width: 100%;
  transition: var(--transition-slow);
}

.industries-image:hover img {
  transform: scale(1.02);
}

/* ============================================
   Case Studies Section (Index)
============================================ */
.case-studies {
  background: var(--light-gray);
}

.case-studies-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.case-studies-header .section-title {
  margin-bottom: 30px;
}

.case-studies-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.case-study-card {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.case-study-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.case-study-card.featured {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
}

.case-study-card.featured h4,
.case-study-card.featured p {
  color: var(--white);
}

.case-study-card.featured .read-more {
  color: rgba(255, 255, 255, 0.9);
}

.case-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray);
  opacity: 0.5;
  flex-shrink: 0;
}

.case-study-card.featured .case-number {
  color: var(--white);
  opacity: 0.7;
}

.case-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.case-content p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 10px;
  line-height: 1.7;
}

.read-more {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

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

/* ============================================
   Clients Section (Index)
============================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
}

.client-logo {
  background: var(--white);
  padding: 15px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.client-logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.client-logo img {
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition-fast);
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   Why Us / Features Section (Index Page)
   FIXED: Centered grid
============================================ */
.why-us {
  background: linear-gradient(180deg, var(--white), var(--dark));
  padding-bottom: 120px;
}

.why-us .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card .feature-icon img {
  width: 30px;
  filter: brightness(0) invert(1);
}

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   Why SCSL Section (About Page)
   FIXED: 4 boxes in a row
============================================ */
.why-scsl {
  background: var(--light-gray);
}

.why-scsl .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Feature Items (About page) */
.feature-item {
  background: var(--white);
  padding: 30px 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transform: scaleY(0);
  transition: var(--transition-fast);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-item:hover::before {
  transform: scaleY(1);
}

.feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(63, 206, 211, 0.1),
    rgba(71, 138, 201, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px !important;
  margin: auto; /* to fix the icon at center */
}

.feature-item .feature-icon svg {
  font-size: 1.3rem;
  color: var(--primary);
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  text-align: center;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  text-align: center;
}

/* ============================================
   Company Overview (About Page)
============================================ */
.company-overview {
  background: var(--light-gray);
}

.overview-card {
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f7fa 100%);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.glass-effect {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.overview-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--dark-gray);
  max-width: 900px;
  margin: 0 auto 40px;
}

/* ============================================
   Vision & Mission (About Page)
============================================ */
.vision-mission {
  background: var(--white);
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.vm-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  border-top: 5px solid var(--accent);
}

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

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

.vm-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 20px;
}

.vm-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
}

/* ============================================
   Contact Section
============================================ */
.contact-section {
  background: var(--light-gray);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Form Card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.map-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.map-container:hover .map-overlay {
  opacity: 1;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--gray);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 25px;
  display: flex;
  gap: 15px;
  transition: var(--transition-fast);
}

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

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  font-size: 1.2rem;
  color: var(--primary);
}

.card-content h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* ============================================
   Locations Section
============================================ */
.locations-section {
  background: var(--white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.location-card {
  background: linear-gradient(135deg, var(--light-gray) 0%, #e8f4f8 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

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

.location-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.location-icon svg {
  font-size: 2rem;
  color: var(--white);
}

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

.location-details p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin-bottom: 12px;
  color: var(--gray);
}

.location-details p svg {
  color: var(--secondary);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================
   SAP About Section
============================================ */
.about-sap,
.about-ams {
  background: var(--white);
}

.about-sap-wrapper,
.about-ams-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-sap-image,
.about-ams-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-sap-image img,
.about-ams-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-sap-image:hover img,
.about-ams-image:hover img {
  transform: scale(1.05);
}

.about-sap-content p,
.about-ams-content p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}

/* ============================================
   SAP Services Section
============================================ */
.sap-services {
  background: var(--light-gray);
}

.sap-services .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sap-services .service-card {
  padding: 40px 35px;
  text-align: left;
}

.sap-services .service-icon {
  margin-bottom: 25px;
  margin-left: 0;
  margin-right: 0;
}

/* ============================================
   Why Choose SAP Section
============================================ */
.why-choose {
  background: var(--white);
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.why-choose-left .section-title {
  margin-bottom: 30px;
}

.certification-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  padding: 25px 30px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  color: var(--white);
}

.badge-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon svg {
  font-size: 1.8rem;
  color: var(--white);
}

.badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-family: "Montserrat", sans-serif !important;
  font-size: 0.95rem;
  opacity: 0.95;
}

.team-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* Accordion Title */
.accordion-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 25px;
}

/* SAP Accordion */
.sap-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sap-accordion .accordion-item {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.sap-accordion .accordion-item:hover {
  background: #eef5f8;
}

.sap-accordion .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  cursor: pointer;
}

.sap-accordion .accordion-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.sap-accordion .accordion-icon {
  color: var(--secondary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.sap-accordion .accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.sap-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sap-accordion .accordion-item.active .accordion-content {
  max-height: 300px;
}

.sap-accordion .accordion-content p {
  padding: 0 25px 20px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   SAP Advisory About Section
============================================ */
.about-section {
  background: var(--white);
}

.about-section .about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-image-container {
  position: relative;
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--white);
  padding: 25px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 350px;
  border-left: 5px solid var(--secondary);
}

.about-badge p {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
}

.about-section .about-content p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}

/* ============================================
   Principles Section (SAP Advisory)
============================================ */
.principles-section {
  background: var(--light-gray);
}

.principles-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.principles-content .section-title {
  margin-bottom: 30px;
}

.principles-text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.principles-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.principles-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.principles-list li:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.principles-list li svg {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 3px;
}

.principles-list li span {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.principles-list li strong {
  color: var(--dark);
}

.principles-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.principles-image img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Advisory Services Section
   FIXED: Service icons now working
============================================ */
.advisory-services {
  background: var(--white);
}

.advisory-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.advisory-services .service-card {
  text-align: left;
  border-top: 5px solid var(--secondary);
}

.advisory-services .service-card::before {
  display: none;
}

/* ============================================
   Services Section (Other Services)
============================================ */
.services-section {
  background: var(--light-gray);
}

.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-section .service-card {
  text-align: left;
}

/* ============================================
   Partners Section
============================================ */
.partners-section {
  background: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 20px;
}

.partner-logo {
  background: var(--light-gray);
  padding: 15px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.partner-logo:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-sm);
}

.partner-logo img {
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition-fast);
}

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

/* ============================================
   Introduction Section (SAP Migration, IT Staff)
============================================ */
.intro-section {
  background: var(--light-gray);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content .section-title {
  margin-bottom: 30px;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 20px;
}

.intro-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 25px;
  line-height: 1.5;
}

.intro-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-wrapper .intro-content {
  text-align: left;
  max-width: unset;
}

.intro-wrapper .intro-content p {
  text-align: justify;
  color: var(--gray);
  line-height: 1.9;
}

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.intro-image:hover img {
  transform: scale(1.05);
}

/* ============================================
   Capabilities Section (SAP Migration)
============================================ */
.capabilities-section {
  background: var(--white);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.capability-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  align-items: flex-start;
}

.capability-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(10px);
}

.capability-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.capability-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.capability-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   Augmentation Models (IT Staff)
============================================ */
.models-section {
  background: var(--white);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.model-card {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.model-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.model-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

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

.model-icon svg {
  font-size: 1.8rem;
  color: var(--white);
}

.model-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.model-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   Resources Section - Sticky Sidebar (IT Staff)
============================================ */
.resources-section {
  background: var(--light-gray);
  padding: 100px 0;
}

.resources-section .container {
  overflow: visible;
}

.resources-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}

/* Sticky Sidebar */
.resources-sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  height: fit-content;
  z-index: 10;
  align-self: flex-start;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--secondary);
}

.sidebar-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-gray);
  position: relative;
}

.sidebar-card h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--secondary);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sidebar-nav li {
  list-style: none;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sidebar-link i {
  font-size: 0.7rem;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.sidebar-link span {
  flex: 1;
}

.sidebar-link:hover {
  background: rgba(63, 206, 211, 0.08);
  color: var(--primary);
  border-color: rgba(63, 206, 211, 0.2);
}

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

.sidebar-link.active {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(63, 206, 211, 0.4);
}

.sidebar-link.active i {
  color: var(--white);
  transform: translateX(5px);
}

/* Content Area */
.resources-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--secondary);
  transition: all 0.3s ease;
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
}

.resource-card.highlight {
  animation: highlightPulse 1.5s ease;
}

@keyframes highlightPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(63, 206, 211, 0.7);
  }
  50% {
    box-shadow: 0 0 30px 10px rgba(63, 206, 211, 0.3);
  }
  100% {
    box-shadow: var(--shadow-sm);
  }
}

.resource-card h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light-gray);
}

.resource-card h3 svg {
  width: 50px;
  height: 50px;

  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  padding: 14px;
  box-sizing: border-box; /* Line 1: Includes padding in the 50px total */
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}

.resource-list li {
  position: relative;
  padding: 12px 20px 12px 35px;
  font-size: 1rem;
  color: var(--dark-gray);
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  list-style: none;
}

.resource-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
}

.resource-list li:hover {
  background: rgba(63, 206, 211, 0.15);
  transform: translateX(5px);
  color: var(--primary);
}

/* ============================================
   Process Section (IT Staff)
============================================ */
.process-section {
  background: var(--white);
}

.process-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

.process-image {
  display: flex;
  justify-content: center;
}

.process-image img {
  /* max-width: 400px; */
  max-width: 90%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Technologies Section (IT Staff)
============================================ */
.tech-section {
  background: var(--light-gray);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
}

.tech-item {
  background: var(--white);
  padding: 15px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.tech-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
}

.tech-item img {
  max-height: 40px;
  object-fit: contain;
}

/* ============================================
   Benefits Section (IT Staff)
============================================ */
.benefits-section {
  background: var(--white);
}

.benefits-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.accordion-header:hover {
  background: var(--light-gray);
}

.accordion-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
}

.accordion-header h4 {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.accordion-icon {
  color: var(--gray);
  transition: var(--transition-fast);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--secondary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content ul {
  padding: 0 25px 25px 60px;
}

.accordion-content li {
  margin-bottom: 10px;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   Partner Section (IT Staff)
============================================ */
.partner-section {
  background: var(--light-gray);
}

.partner-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.partner-content .section-title {
  margin-bottom: 30px;
}

.partner-content p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}

/* ============================================
   Tabs (SAP Implementation, SAP AMS)
============================================ */
.tabs-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.tabs-header {
  display: flex;
  background: var(--light-gray);
  border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  transition: var(--transition-fast);
  position: relative;
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: var(--transition-fast);
}

.tab-btn:hover {
  background: rgba(63, 206, 211, 0.1);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--white);
  color: var(--primary);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-btn svg {
  font-size: 1.2rem;
  color: var(--secondary);
}

.tabs-content {
  padding: 40px;
}

.tab-panel,
.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-panel.active,
.tab-pane.active {
  display: block;
}

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

.tab-intro {
  margin-bottom: 30px;
}

.tab-intro p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.feature-list li:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-sm);
}

.feature-list li i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 3px;
}

.feature-list li div {
  flex: 1;
}

.feature-list li strong {
  color: var(--dark);
  display: block;
  margin-bottom: 5px;
}

.tab-note {
  margin-top: 30px;
  padding: 20px;
  background: rgba(63, 206, 211, 0.1);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--dark);
  border-left: 4px solid var(--secondary);
}

/* ============================================
   Support Types Section (SAP-AMS)
   FIXED: Background color
============================================ */
.support-types {
  background: var(--light-gray);
}

/* Support Levels */
.support-levels {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

.support-level {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 25px;
  border-left: 4px solid var(--secondary);
}

.level-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.level-badge {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.level-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.level-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.level-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray);
  padding: 0;
  background: transparent;
}

.level-list li:hover {
  transform: none;
  box-shadow: none;
}

.level-list li svg {
  color: var(--secondary);
  margin-top: 3px;
}

/* Fiori Note */
.fiori-note {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 25px 30px;
  background: linear-gradient(
    135deg,
    rgba(63, 206, 211, 0.1),
    rgba(71, 138, 201, 0.1)
  );
  border-radius: var(--radius-md);
  border-left: 4px solid var(--secondary);
}

.fiori-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fiori-icon svg {
  font-size: 1.3rem;
  color: var(--white);
}

.fiori-note p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   Solutions Section (SAP Implementation)
============================================ */
.solutions-section {
  background: var(--light-gray);
}

.solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

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

.solution-row.reverse {
  direction: rtl;
}

.solution-row.reverse > * {
  direction: ltr;
}

.solution-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.solution-content p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

.support-label {
  font-weight: 600;
  color: var(--dark);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.check-list.inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px 25px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--dark-gray);
}

.check-list li svg {
  color: var(--secondary);
  font-size: 1rem;
}

.solution-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

/* ============================================
   Implementation Approach (SAP Implementation)
============================================ */
.approach-section {
  background: var(--white);
}

.approach-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.approach-timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  gap: 30px;
  padding: 25px 0;
  position: relative;
}

.timeline-marker {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(63, 206, 211, 0.4);
}

.timeline-marker span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.timeline-content {
  flex: 1;
  background: var(--light-gray);
  padding: 25px 30px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.timeline-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.timeline-content .activity,
.timeline-content .outcome {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.timeline-content .outcome {
  color: var(--primary);
  margin-bottom: 0;
}

/* ============================================
   Why Choose Reasons (SAP Implementation)
============================================ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.reason-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.reason-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reason-icon svg {
  font-size: 1.2rem;
  color: var(--white);
}

.reason-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-gray);
}

/* ============================================
   About Section (Odoo)
============================================ */

@media screen and (max-width: 600px) {
  .odoo-shape {
    display: none;
  }
}

/* ============================================
   FAQ Section
============================================ */
/* Case Study 1 */
.content {
  display: flex;
  gap: 40px; /* Space between the two boxes */
  justify-content: center;
  max-width: 1200px;
  /* margin: 30px auto; */
}

.content-box {
  flex: 1;
  padding: 30px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.content-para {
  /* margin-bottom: 25px; */
  font-size: 1.1rem;
  text-align: center;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    gap: 10px;
  }

  .badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
  }
}

/* Case Study 2 */
.study2 {
  width: 60%;
  height: auto;
  margin: 20px auto;
}

@media screen and (max-width: 600px) {
  .study2 {
    width: 90%;
  }
}

/* ============================================
   FAQ Section
============================================ */
.faq-section {
  background: var(--white);
}

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

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

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-header:hover {
  background: rgba(63, 206, 211, 0.1);
}

.faq-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  flex: 1;
  padding-right: 15px;
}

.faq-icon {
  color: var(--secondary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-content {
  max-height: 500px;
}

.faq-content p,
.faq-content ul {
  padding: 0 25px 20px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}

.faq-content ul {
  padding-left: 45px;
  list-style: disc;
}

.faq-content li {
  margin-bottom: 8px;
}

.faq-content li::before {
  content: none;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   CTA Section - Multiple Variations
============================================ */

/* Default CTA - Gradient Background */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 40px 0;
}

.cta-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 30px;
  line-height: 1.8;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.8;
}

/* CTA with Light Gray Background and Card */
.cta-section.cta-light {
  background: var(--light-gray);
}

.cta-section.cta-white {
  background: var(--white);
}

/* CTA Card (used inside light/white sections) */
.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 60px 50px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-card h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-card p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-card .cta-text {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* SAP page CTA - Light gray background with card */
.sap-services ~ .cta-section,
.why-choose ~ .cta-section {
  background: var(--light-gray);
}

/* SAP Advisory CTA - White background with card */
.advisory-services ~ .cta-section {
  background: var(--white);
}

/* SAP AMS CTA - Light gray background with card */
.support-types ~ .cta-section {
  background: var(--light-gray);
}

/* SAP Implementation CTA - Handled by faq-cta */

/* SAP Migration CTA - White background with card */
.capabilities-section ~ .faq-section ~ .cta-section {
  background: var(--white);
}

/* ============================================
   Footer
============================================ */
.footer {
  background: linear-gradient(135deg, var(--accent), var(--dark));
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--secondary);
}

.footer-info {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-info i {
  color: var(--secondary);
  margin-top: 4px;
}

.footer-info p {
  font-size: 0.95rem;
  line-height: 1.3;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  opacity: 0.9;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 10px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

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

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ============================================
   Go to Contact Button
============================================ */
.go-to-contact {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.go-to-contact.visible {
  opacity: 1;
  visibility: visible;
}

.go-to-contact:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Back to Top Button
============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Animations
============================================ */
[data-aos] {
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-down"] {
  transform: translateY(-50px);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].animate {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger Animation Delays */
[data-aos-delay="50"] {
  transition-delay: 0.05s;
}
[data-aos-delay="100"] {
  transition-delay: 0.1s;
}
[data-aos-delay="150"] {
  transition-delay: 0.15s;
}
[data-aos-delay="200"] {
  transition-delay: 0.2s;
}
[data-aos-delay="250"] {
  transition-delay: 0.25s;
}
[data-aos-delay="300"] {
  transition-delay: 0.3s;
}
[data-aos-delay="350"] {
  transition-delay: 0.35s;
}
[data-aos-delay="400"] {
  transition-delay: 0.4s;
}
[data-aos-delay="450"] {
  transition-delay: 0.45s;
}
[data-aos-delay="500"] {
  transition-delay: 0.5s;
}

/* ============================================
   Responsive Design
============================================ */
@media (max-width: 1200px) {
  .clients-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .resources-sidebar {
    width: 260px;
  }

  .why-choose-wrapper {
    gap: 40px;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us .features-grid,
  .why-scsl .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advisory-services .services-grid,
  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  /* Navigation - FULLY RESPONSIVE */
  .nav-toggle {
    display: flex;
  }

  .nav-overlay {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 30px 30px;
    gap: 0;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    z-index: 1001;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--dark-gray);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: block;
  }

  .nav-link.btn-nav {
    margin-top: 20px;
    text-align: center;
    display: inline-block;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    min-width: auto;
  }

  .dropdown.open .dropdown-menu {
    max-height: 500px;
  }

  .dropdown-menu li a {
    padding: 10px 15px;
  }

  /* Hero */
  .hero-content {
    flex-direction: column;
    padding-top: 120px;
  }

  .hero-text {
    text-align: center;
  }

  .glass-card {
    width: 100%;
    max-width: 400px;
  }

  /* About */
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    text-align: center;
  }

  .about-content .section-title {
    text-align: center;
  }

  .about-content .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .iso-badge {
    justify-content: center;
  }

  /* SAP About */
  .about-sap-wrapper,
  .about-ams-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-sap-image img,
  .about-ams-image img {
    height: 350px;
  }

  /* About Section (SAP Advisory) */
  .about-section .about-wrapper {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .about-badge {
    right: 20px;
    bottom: -40px;
  }

  /* Why Choose */
  .why-choose-wrapper {
    grid-template-columns: 1fr;
  }

  .team-image img {
    height: 300px;
  }

  /* Services */
  .services-grid,
  .sap-services .services-grid {
    grid-template-columns: 1fr;
  }

  /* Advisory Services */
  .advisory-services .services-grid {
    grid-template-columns: 1fr;
  }

  /* Services Section */
  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Principles */
  .principles-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .principles-image {
    order: -1;
  }

  .principles-content .section-title {
    text-align: center;
  }

  .principles-content .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Intro wrapper */
  .intro-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-image {
    order: -1;
  }

  .intro-image img {
    height: 350px;
  }

  /* Capabilities */
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  /* Case Studies */
  .case-studies-wrapper {
    grid-template-columns: 1fr;
  }

  .case-studies-header {
    text-align: center;
  }

  .case-studies-header .section-title {
    text-align: center;
  }

  .case-studies-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Vision Mission */
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Features - Why SCSL */
  .why-scsl .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  /* Locations */
  .locations-grid {
    grid-template-columns: 1fr;
  }

  /* Partners */
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* Solutions */
  .solution-row,
  .solution-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .solution-image img {
    height: 300px;
  }

  /* Process */
  .process-wrapper {
    grid-template-columns: 1fr;
  }

  .process-image {
    order: -1;
  }

  /* Timeline */
  .approach-timeline::before {
    left: 39px;
  }

  .timeline-marker {
    width: 70px;
    height: 70px;
  }

  /* Clients */
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Tech */
  .tech-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  /* Resources Section - Mobile */
  .resources-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .resources-sidebar {
    width: 100%;
    position: relative;
    /* position: sticky; */
    top: 0;
  }

  .sidebar-card {
    padding: 20px;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .sidebar-link {
    padding: 10px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    background: var(--light-gray);
  }

  .sidebar-link.active {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
  }

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

  .resource-list {
    grid-template-columns: 1fr;
  }

  /* Tabs */
  .tabs-header {
    flex-direction: column;
  }

  .tab-btn {
    padding: 15px 20px;
    justify-content: flex-start;
  }

  .tabs-content {
    padding: 30px 20px;
  }

  /* Reasons */
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-info {
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }
}

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

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

  .page-hero {
    min-height: 300px;
  }

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

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

  .services-section .services-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 350px;
  }

  .about-badge {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 20px;
    max-width: 100%;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-us .features-grid,
  .why-scsl .features-grid {
    grid-template-columns: 1fr;
  }

  .case-study-card {
    flex-direction: column;
    gap: 15px;
  }

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

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .stats-row {
    gap: 30px;
  }

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

  .vm-card {
    padding: 35px 25px;
  }

  .feature-item {
    padding: 25px 20px;
  }

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

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .location-card {
    padding: 30px 25px;
  }

  .service-card {
    padding: 30px 25px;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
  }

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

  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .resource-card h3 {
    font-size: 1.2rem;
    gap: 12px;
  }

  .resource-card h3 i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .certification-badge {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

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

  /* Timeline Mobile */
  .approach-timeline::before {
    display: none;
  }

  .timeline-item {
    flex-direction: column;
    gap: 15px;
  }

  .timeline-marker {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .timeline-content {
    text-align: center;
  }

  .timeline-content:hover {
    transform: none;
  }

  .fiori-note {
    flex-direction: column;
    text-align: center;
  }

  .check-list.inline {
    flex-direction: column;
    gap: 12px;
  }

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

  .cta-card {
    padding: 40px 25px;
  }

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

  .feature-list li {
    padding: 15px;
  }

  .support-level {
    padding: 20px 15px;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 100px 15px 30px;
  }

  .glass-card {
    padding: 25px 20px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card {
    padding: 20px;
  }

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

  .stats-row {
    flex-direction: column;
    gap: 25px;
  }

  .overview-text {
    font-size: 1rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .marquee-content span {
    font-size: 1.5rem;
  }

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

  .card-icon {
    margin: 0 auto;
  }

  .location-details p {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-item {
    padding: 10px;
  }

  .tech-item img {
    max-height: 30px;
  }

  .accordion-header {
    padding: 15px 20px;
  }

  .accordion-content ul {
    padding-left: 40px;
  }

  .faq-header {
    padding: 15px 20px;
  }

  .faq-header h4 {
    font-size: 0.9rem;
  }

  .faq-content p,
  .faq-content ul {
    padding: 0 20px 20px;
    font-size: 0.9rem;
  }

  .sidebar-link {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .sidebar-link i {
    display: none;
  }

  .resource-list li {
    padding: 10px 15px 10px 30px;
    font-size: 0.9rem;
  }

  .solution-image img {
    height: 250px;
  }

  .timeline-marker {
    width: 50px;
    height: 50px;
  }

  .timeline-marker span {
    font-size: 1.2rem;
  }

  .principles-list li {
    padding: 12px 15px;
  }

  .sap-accordion .accordion-header {
    padding: 15px 18px;
  }

  .sap-accordion .accordion-header h4 {
    font-size: 0.9rem;
  }

  .sap-accordion .accordion-content p {
    padding: 0 18px 15px;
    font-size: 0.9rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .tab-btn span {
    font-size: 0.9rem;
  }

  .level-header {
    flex-direction: column;
    text-align: center;
  }

  .level-badge {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .capability-number {
    font-size: 1.5rem;
  }

  .capability-content h4 {
    font-size: 1rem;
  }
}

/* new rensponsive */
@media (max-width: 992px) {
  .principles-list li span {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
  }

  .principles-list li strong {
    color: var(--dark);
  }
}

@media (max-width: 576px) {
  .principles-list li span {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
  }

  .principles-list li strong {
    color: var(--dark);
  }
}
