/* ==============================================
   DESIGN SYSTEM
   ============================================== */

/* Font Sizes */
:root {
  --font-xs: 16px;
  --font-sm: 18px;
  --font-md: 22px;
  --font-md-lg: 28px;
  --font-lg: 34px;
}

/* Colors */
:root {
  --color-primary: #ffffff;
  --color-secondary: #94a3b8;
  --color-accent: #00c3ff;
  --color-bg-dark: #0a0a0a;
}

/* Font Weights */
:root {
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-bold: 700;
}

:root {
  --border-radius: 13px;
}

/* ==============================================
   GENERAL RESET
   ============================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-primary);
  background: #020202 url("https://d2dmsfn1lgvgn7.cloudfront.net/DAM/contexio_website_v2/bg.png") no-repeat center center/cover;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: var(--font-sm);
  font-weight: var(--weight-normal);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #020202 url("https://d2dmsfn1lgvgn7.cloudfront.net/DAM/contexio_website_v2/bg.png") no-repeat center center/cover;
  z-index: -1;
}

.page-container {
  margin: 95px auto 20px;
  background: transparent;
  padding: 0 30px;
  max-width: 1600px;
  box-sizing: border-box;
}

/* ==============================================
   NAVBAR
   ============================================== */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a78;
  padding: 15px 30px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar .logo {
  flex-shrink: 0;
  z-index: 1002;
}

.navbar .logo img {
  height: 46px;
  object-fit: contain;
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 9px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  transform: scale(0.7);
  transform-origin: center;
  position: relative;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--weight-normal);
  font-size: var(--font-sm);
  transition: color 0.3s ease;
  white-space: nowrap;
  display: block;
}

.nav-links li a:hover,
.nav-links a.active,
.nav-links a.current,
.nav-links .current-menu-item>a {
  color: var(--color-accent);
}

.nav-btn,
.nav-btn-desktop {
  padding: 9px 20px;
  border: 2px solid var(--color-accent);
  border-radius: 30px;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: var(--weight-medium);
  font-size: var(--font-sm);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

.nav-btn:hover,
.nav-btn-desktop:hover {
  background: linear-gradient(45deg, var(--color-accent), #9c27b0);
  color: #000;
  border-color: transparent;
}

.nav-btn.active,
.nav-btn-desktop.active {
  color: var(--color-accent);
  font-weight: var(--weight-medium);
}

.nav-btn-mobile {
  display: none;
  padding: 12px 24px;
  border: 2px solid var(--color-accent);
  border-radius: 30px;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: var(--weight-medium);
  font-size: var(--font-sm);
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.nav-btn-mobile:hover {
  background: linear-gradient(45deg, var(--color-accent), #9c27b0);
  color: #000;
  border-color: transparent;
}

.nav-btn-mobile.active {
  color: var(--color-accent);
  font-weight: var(--weight-medium);
}

.nav-btn-mobile-opt {
  display: none;
  border-radius: 30px;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: var(--weight-medium);
  font-size: var(--font-sm);
  align-items: center;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.nav-btn-mobile-opt.active {
  color: var(--color-accent);
  font-weight: var(--weight-medium);
}

body.menu-open {
  overflow: hidden;
}

/* ==============================================
   HERO SECTION
   ============================================== */

.hero {
  position: relative;
  width: 100%;
  height: 74vh;
  min-height: 400px;
  overflow: hidden;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content h1 {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.hero-tagline {
  font-size: var(--font-md);
  color: var(--color-secondary);
  margin-bottom: 30px;
  font-weight: var(--weight-normal);
}

.hero-cta {
  padding: 12px 30px;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: var(--weight-medium);
  font-size: var(--font-sm);
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}

/* ==============================================
   TRUST SECTION
   ============================================== */

.trust-section {
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 40px 40px 40px;
}

.trust-text {
  font-weight: var(--weight-normal);
  margin-top: 10px;
  font-size: var(--font-md);
  text-transform: uppercase;
}

/* ==============================================
   SOLUTIONS SECTION
   ============================================== */

.solutions-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 25px 15px 15px 15px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  background: rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  text-align: center;
}

.solutions-text {
  width: 100%;
  text-align: center;
}

.solutions-icon {
  position: relative;
  width: 100%;
}

.solutions-icon img {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius);
}

.know-more-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #7c3aed;
  color: var(--color-primary);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: var(--font-xs);
  font-weight: var(--weight-medium);
  transition: background 0.3s ease;
}

.know-more-btn:hover {
  background: #5b21b6;
}

.solutions-text h2 {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 15px;
  color: var(--color-primary);
}

.solutions-text p {
  font-size: var(--font-sm);
  color: var(--color-secondary);
  margin-bottom: 25px;
}

.solutions-tagline {
  text-align: center;
  font-size: var(--font-md);
  font-weight: var(--weight-normal);
  color: var(--color-primary);
  margin-bottom: 40px;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  max-width: 1600px;
}

.solution-card {
  width: 100%;
  aspect-ratio: 4/5;
  /* Adjust based on your image ratio */
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.solution-card:hover {
  transform: translateY(-8px);
}

.solution-card.analytics {
  background-image: url('https://d2dmsfn1lgvgn7.cloudfront.net/DAM/contexio_website_v2/Analytics.png');
  background-size: cover;
  background-position: center;
}

.solution-card.content {
  background-image: url('https://d2dmsfn1lgvgn7.cloudfront.net/DAM/contexio_website_v2/Content.png');
  background-size: cover;
  background-position: center;
}

.solution-card.creative {
  background-image: url('https://d2dmsfn1lgvgn7.cloudfront.net/DAM/contexio_website_v2/Creative.png');
  background-size: cover;
  background-position: center;
}

.card-header {
  position: absolute;
  top: 92%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  /* Dark semi-transparent strip */
  width: 100%;
}

.card-title {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  color: #ffffff;
  /* White text for better contrast */
  text-align: center;
}

.view-more-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.view-more-btn:hover {
  background: var(--color-accent);
  transform: scale(1.05);
}

.view-more-btn {
  top: 20px;
  right: 20px;
  z-index: 3;
  padding: 10px 20px;
  background: rgba(0, 195, 255, 0.9);
  color: var(--color-primary);
  border-radius: 20px;
  text-decoration: none;
  font-size: var(--font-xs);
  font-weight: var(--weight-medium);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.broad-view-more-btn:hover {
  background: var(--color-accent);
  transform: scale(1.05);
}

.broad-view-more-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  padding: 10px 20px;
  background: rgba(0, 195, 255, 0.9);
  color: var(--color-primary);
  border-radius: 20px;
  text-decoration: none;
  font-size: var(--font-xs);
  font-weight: var(--weight-medium);
  transition: all 0.3s ease;
  white-space: nowrap;
}



/* .view-more-btn {
  padding: 6px 15px;
  background: rgba(0, 195, 255, 0.9);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 20px;
  font-size: var(--font-xs);
  font-weight: var(--weight-medium);
  transition: all 0.3s ease;
  white-space: nowrap;
} */



.bottom-tagline {
  text-align: center;
  font-size: var(--font-md);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  padding: 0 20px;
}

/* ==============================================
   CTA SECTION
   ============================================== */

.cta-section {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px 35px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-text {
  flex: 1;
  text-align: left;
}

.cta-text h2 {
  font-size: var(--font-lg);
  font-weight: var(--weight-normal);
  color: var(--color-primary);
  margin-bottom: 30px;
  line-height: 1.2;
}

.cta-demo-btn {
  padding: 9px 20px;
  border: 2px solid var(--color-accent);
  border-radius: 30px;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: var(--weight-medium);
  font-size: var(--font-sm);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

.cta-demo-btn:hover {
  background: linear-gradient(45deg, var(--color-accent), #9c27b0);
  color: #000;
  border-color: transparent;
}

.dashboard-preview {
  height: 290px;
  border-radius: var(--border-radius);
  flex-shrink: 0;
  min-width: 200px;
}

/* ==============================================
   STATS SECTION
   ============================================== */

.stats-section {
  padding: 20px 20px;
  background: rgba(0, 0, 0, 0.4);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1390px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 15px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number-home {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--font-md);
  color: var(--color-secondary);
  font-weight: var(--weight-medium);
}

/* ==============================================
   FOOTER
   ============================================== */

.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0 0;
  margin-top: 25px;
  color: var(--color-secondary);
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 700px;
  margin-bottom: 5px;
  text-align: center;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.footer-section h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-section h3 a:hover {
  color: var(--color-accent);
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.social-icon svg {
  width: 30px;
  /* increased from 18px */
  height: 30px;
}

.social-icon {
  width: 58px;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--color-accent);
  color: #000;
  transform: translateY(-3px);
}

.footer-bottom {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 18px 0;
  font-size: 0.8rem;
  color: var(--color-secondary);
}


/* ==============================================
   ANALYTICS PAGE
   ============================================== */

.heroa {
  position: relative;
  color: var(--color-primary);
  text-align: center;
  padding: 0px 0px 80px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-overlay h1 {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-overlay p {
  font-size: var(--font-md);
  margin-bottom: 40px;
  color: var(--color-accent);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-contenta {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 60px;
  flex-wrap: nowrap;
  margin-top: 10px; /* changes by samiksha */
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.hero-left {
  flex: 1;
  min-width: 400px;
  max-width: 700px;
  display: flex;
}

.hero-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  opacity: 0.9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-right-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 25px;
  background: rgba(40, 174, 241, 0.1);
  border: 1px solid rgba(43, 118, 230, 0.3);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  

}

.hero-right-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.1), transparent);
  transition: left 0.5s ease;
}

.hero-right-item:hover::before {
  left: 100%;
}

.hero-right-item:hover {
  background: rgba(107, 180, 228, 0.2);
  border-color: rgba(112, 151, 207, 0.5);
  transform: translateX(10px);
}

.hero-right-item h3 {
  color: var(--color-primary);
  font-size: var(--font-md);
  font-weight: var(--weight-medium);
  position: relative;
  z-index: 2;
}

.hero-right a {
  color: var(--color-primary);
  font-weight: var(--weight-medium);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: var(--font-sm);
  display: flex;
  align-items: center;
  gap: 12px;

  width: 100%;
  height: 100%;
}

.edge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 0;
  color: var(--color-primary);
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.edge .text {
  flex: 1;
  min-width: 350px;
}

.edge .text h2 {
  font-size: var(--font-lg);
  margin-bottom: 30px;
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  line-height: 1.2;
}

.edge .text p {
  font-size: var(--font-md);
  margin-bottom: 35px;
  color: var(--color-secondary);
  line-height: 1.7;
}

.edge .text ul {
  list-style: none;
  padding: 0;
}

.edge .text li {
  margin-bottom: 18px;
  font-size: var(--font-md);
  padding: 15px 0 15px 25px;
  border-left: 3px solid var(--color-accent);
  background: rgba(0, 195, 255, 0.05);
  border-radius: 0 8px 8px 0;
  position: relative;
}

.edge .image {
  min-width: 350px;
  text-align: center;
}

.edge .image img {
  max-width: 550px;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.difference {
  padding: 0 60px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  margin: 60px 0;
}

.difference h2 {
  font-size: var(--font-lg);
  margin-bottom: 25px;
  color: var(--color-primary);
  font-weight: var(--weight-bold);
}

.difference>p {
  font-size: var(--font-md);
  color: var(--color-secondary);
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.difference .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 50px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.difference-item {
  padding: 50px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.difference-item .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  background: rgba(0, 195, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-md);
  color: var(--color-accent);
}

.difference-item h3 {
  font-size: var(--font-md);
  font-weight: var(--weight-bold);
  margin-bottom: 15px;
  color: var(--color-primary);
}

.difference-item p {
  font-size: var(--font-sm);
  color: var(--color-secondary);
  line-height: 1.6;
}

.difference-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transition: left 0.5s ease;
}

.difference-item:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: var(--color-accent);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 247, 255, 0.2);
}

.difference-item:hover::before {
  left: 100%;
}

.results {
  padding: 0 60px;
  text-align: center;
}

.results h2 {
  font-size: var(--font-lg);
  margin-bottom: 35px;
  color: var(--color-primary);
  font-weight: var(--weight-bold);
}

.results .grid {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.result {
  text-align: center;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 250px;
  flex: 1;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.result .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-lg);
  color: var(--color-accent);
}

.result:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 165, 175, 0.2);
}

.result h3 {
  font-size: var(--font-lg);
  color: var(--color-accent);
  font-weight: var(--weight-bold);
}

.result p {
  font-size: var(--font-md);
  color: var(--color-accent);
  font-weight: var(--weight-medium);
  line-height: 1.5;
}

.result-description {
  font-size: var(--font-xs);
  color: var(--color-secondary);
  margin-top: 25px;
  line-height: 1.5;
}

/* ==============================================
   ANALYTICS SUBPAGE
   ============================================== */

.analytics-subpage .header {
  text-align: center;
}

.analytics-subpage .logo {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 10px;
}

.tagline {
  font-size: var(--font-md);
  color: var(--color-secondary);
  max-width: 900px;
  margin: 0px auto;
  text-align: center;
}

.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 45px;
  align-items: center;
  margin-bottom: 30px;
}

.creative-header {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 100%;
}

.creative-header h1 {
  text-align: center;
  margin: 0 auto;
}

.creative-header p {
  text-align: center;
  margin: 10px auto 0;
  color: var(--color-secondary);
  max-width: 800px;
}

.content-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-left img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  max-height: 400px;
}

.content-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.content-right h3 {
  font-size: var(--font-md);
  margin-bottom: 25px;
  color: var(--color-primary);
  font-weight: var(--weight-normal);
  line-height: 1.3;
}

.content-right h2 {
  /* font-size: var(--font-lg);
  margin-bottom: 25px;
  margin-top: 15px;
  color: var(--color-primary);
  font-weight: var(--weight-medium);
  line-height: 1.3; */
  font-size: var(--font-md);
  font-weight: var(--weight-medium);
  /* line-height: 1.8; */
  color: var(--color-primary);
  margin-bottom: 20px;

}

.content-right p {
  font-size: var(--font-md);
  font-weight: var(--weight-medium);
  /* line-height: 1.8; */
  color: var(--color-secondary);
  margin-bottom: 20px;
  max-width: 90%;
}

.why-section {
  background: rgba(0, 0, 0, 0.2);
}

.why-section h2 {
  text-align: center;
  font-size: var(--font-lg);
  margin-bottom: 10px;
  font-weight: var(--weight-bold);
}

.case-studies {
  text-align: center;
  font-size: var(--font-sm);
  color: var(--color-primary);
  margin-bottom: 15px;
  margin-top: 20px;
  font-weight: var(--weight-normal);
}

.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonial-container {
  overflow: hidden;
  border-radius: var(--border-radius);
}

.testimonial-list {
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.5s ease;
  gap: 20px;
}

.testimonial {
  min-width: calc((100% - 40px) / 3);
  max-width: 100%;
  /* calc((100% - 40px) / 3);*/
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  color: var(--color-primary);
  text-align: center;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial p {
  font-size: var(--font-sm);
  line-height: 1.6;
  color: var(--color-secondary);
  margin: 0;
}

.testimonial strong {
  color: var(--color-accent);
  font-weight: 700;
}

.testimonial .quote {
  font-style: italic;
  color: var(--color-primary);
  font-size: var(--font-xs);
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.nav-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-arrow.disabled:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%) scale(1);
}

.nav-arrow.left {
  left: -70px;
}

.nav-arrow.right {
  right: -70px;
}

.nav-arrow::after {
  content: '';
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-primary);
  border-bottom: none;
  border-left: none;
}

.nav-arrow.left::after {
  transform: rotate(-135deg);
}

.nav-arrow.right::after {
  transform: rotate(45deg);
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

.container h1 {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container p {
  font-size: var(--font-md);
  margin-bottom: 45px;
  color: var(--color-primary);
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
}

.container .tagline {
  font-size: var(--font-md);
  margin-bottom: 45px;
  color:var(--color-accent);
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
}




@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.difference-item,
.result {
  animation: fadeInUp 0.6s ease-out;
}

.difference-item:nth-child(2) {
  animation-delay: 0.1s;
}

.difference-item:nth-child(3) {
  animation-delay: 0.2s;
}

.difference-item:nth-child(4) {
  animation-delay: 0.3s;
}

.result:nth-child(2) {
  animation-delay: 0.1s;
}

.result:nth-child(3) {
  animation-delay: 0.2s;
}

/* ==============================================
   INFOGRAPHICS
   ============================================== */

.infographics-header h1 {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 10px;
  margin-top: 20px;
  background-clip: text;
  text-align: center;
}



.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
}


.section-title {
  font-size: var(--font-md);
  font-weight: var(--weight-normal);
  color: var(--color-primary);
}

.view-all {
  color: var(--color-accent);
  text-decoration: none;
  font-size: var(--font-xs);
  transition: color 0.3s ease;
}

.view-all:hover {
  color: #0099cc;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
  border-color: rgba(0, 212, 255, 0.5);
}

.card-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 20px 20px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card.active {
  background: rgba(255, 255, 255, 0.284);
}

.service-title {
  font-size: var(--font-sm);
  font-weight: var(--weight-bold);
  color: var(--color-accent);
  margin-bottom: 5px;
}

.service-subtitle {
  font-size: var(--font-xs);
  color: var(--color-secondary);
}


.result-section {
  text-align: center;
  margin: 20px 0px 35px 0px;
}

.result-heading {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 20px;
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.result-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 8px auto 0;
  border-radius: var(--border-radius);
}

.brand-statement {
  color: var(--color-primary);
  padding: 20px 30px;
  border-radius: var(--border-radius);
  margin: 0 auto;
  text-align: center;
  font-size: var(--font-md);
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-statement span {
  font-weight: var(--weight-bold);
  color: var(--color-accent);
}

.about-us-section {
  text-align: center;
}

.aplus-layout {
  display: flex;
  gap: 20px;
  height: 80vh;
  min-height: 600px;
  margin-bottom: 70px;
}

.aplus-main-image {
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.image-container {
  height: 100%;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: none;
  border-radius: var(--border-radius);
}

.aplus-grid {
  flex: 1;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.grid-row {
  display: flex;
  gap: 15px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.grid-item {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.3s ease;
  min-width: 0;
  min-height: 0;
}

.grid-item:hover {
  transform: translateY(-3px);
}

.image-wrapper {
  height: 100%;
  background: transparent;
}

.grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.grid-item:hover .grid-image {
  transform: scale(1.02);
}

.page-heading {
  text-align: center;
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 30px;
  color: var(--color-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ==============================================
   AI VIDEO GENERATION
   ============================================== */

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-showcase {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-video-card img {
  width: 100%;
  max-width: 650px;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
}

#model-swap-section {
  padding: 60px 40px;
  margin-bottom: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  background: rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.model-swap-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.model-features {
  list-style: none;
}

.model-features li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-secondary);
  font-size: var(--font-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.model-features li:hover {
  color: var(--color-primary);
  padding-left: 10px;
}

.model-showcase {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.model-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.model-card img {
  width: 100%;
  object-fit: cover;
}

#services-grid {
  margin-top: 80px;
}

.section-header h2 {
  font-size: var(--font-lg);
  letter-spacing: -1px;
}

.section-header p {
  color: var(--color-secondary);
  font-size: var(--font-sm);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.2);
}

.service-card img {
  width: 100%;
  object-fit: cover;
}

.service-info {
  padding: 25px;
}

.service-info h3 {
  font-size: var(--font-md);
  margin-bottom: 10px;
}

.service-info p {
  color: var(--color-secondary);
  font-size: var(--font-xs);
}

.view-more {
  display: inline-block;
  margin-top: auto;
  padding-top: 12px;
  color: #a78bfa;
  font-size: var(--font-xs);
  text-decoration: none;
  transition: color 0.3s ease;
}

.view-more:hover {
  color: var(--color-primary);
}


/* ==============================================
   ABOUT US SECTION
   ============================================== */


.our-result-section {
  color: var(--color-primary);
  padding: 20px 30px;
  border-radius: var(--border-radius);
  margin: 30px 0;
  text-align: center;
  font-size: var(--font-md);
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.our-result-heading {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 23px;
}

.our-result-highlight {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  color: #00c853;
  margin-bottom: 30px;
}

.our-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.result-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.checkmark {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #57be23;
  position: relative;
  margin-right: 10px;
}

.checkmark::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 7px;
  width: 6px;
  height: 18px;
  border: solid var(--color-primary);
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

.result-box p {
  font-size: var(--font-md);
  color: var(--color-primary);
  margin: 0;
  line-height: 1.5;
}

.about-us-heading {
  font-size: var(--font-lg);
  margin-bottom: 30px;
  margin-top: 0px;
  text-align: center;
}

.about-us-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 25px 15px 15px 15px;
  border-radius: var(--border-radius);
  background: rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  text-align: center;
}

.about-us-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.about-card {
  flex: 1 1 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 25px 15px 15px 15px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  background: rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  text-align: center;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.about-card h2 {
  font-size: var(--font-md);
  margin-bottom: 15px;
  position: relative;
}

.about-card h2::after {
  content: "";
  display: block;
  width: 190px;
  height: 3px;
  background: #00b894;
  margin-top: 8px;
  border-radius: 2px;
}

.about-card.vision h2::after {
  /* changes done by Samiksha*/
  background: linear-gradient(135deg, #0984e3, #74b9ff);
  /* end here */
}

/* Mission Section */
.about-card.mission h2::after {
  background: linear-gradient(135deg, #0984e3, #74b9ff);
}


.about-card p {
  line-height: 1.6;
  font-size: var(--font-md);
  color: var(--color-secondary);
}

/* Optional distinct background colors */
.vision {
  /* changes done by Samiksha */
  border-top: 6px solid #0984e3
  /* end here */
}


.mission {
  border-top: 6px solid #0984e3;
}


.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 0px;
}

.team-section {
  padding: 0px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.team-heading {
  font-size: var(--font-lg);
  margin-bottom: 40px;
  color: var(--color-primary);
  font-weight: var(--weight-bold);
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.team-card {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 25px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  background: rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.team-image-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-accent);
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: var(--font-md);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  margin-bottom: 8px;
}

.team-role {
  font-size: var(--font-sm);
  color: var(--color-secondary);
  line-height: 1.4;
}


/* ==============================================
    SOLUTIONS SECTION
   ============================================== */

.solution-image-wrapper {
  flex: 1;
  /* takes equal space */
  display: flex;
  justify-content: center;
}

.solution-image {
  width: 100%;
  /* ensures full width inside wrapper */
  height: 400px;
  /* increase this value for more height */
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.solution-text {
  flex: 1;
  text-align: left;
}

.about-us-heading {
  margin-bottom: 20px;
}


.solutions-header {
  text-align: center;
  margin: 40px 0 20px;
}

.solutions-heading {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
}

/* ==============================================
   Book Demo
   ============================================== */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  display: flex;
  opacity: 1;
}

/* Form Popup */
.popup-form {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-form {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  color: #00d9b1;
}

.popup-form h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 26px;
  line-height: 1.4;
}

.popup-form .form-group {
  margin-bottom: 20px;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 15px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}

.popup-form input::placeholder,
.popup-form textarea::placeholder {
  color: #888;
}

.popup-form input:focus,
.popup-form textarea:focus {
  outline: none;
  border-color: #00d9b1;
}

.popup-form textarea {
  min-height: 100px;
  resize: vertical;
}

.popup-form .submit-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 13px 35px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  margin-top: 10px;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.popup-form .submit-btn:hover {
  background: #00d9b1;
}

.popup-form .submit-btn::after {
  content: '→';
  font-size: 20px;
}

/* Success Popup */
.popup-success {
  background: #0a0a0a;
  border: 1px solid #00d9b1;
  border-radius: 8px;
  padding: 60px 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-success {
  transform: scale(1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #00d9b1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon::after {
  content: '✓';
  color: #000;
  font-size: 48px;
  font-weight: bold;
}

.popup-success h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 15px;
}

.popup-success p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 30px;
}

.popup-success .back-btn {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #444;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.popup-success .back-btn:hover {
  border-color: #00d9b1;
  color: #00d9b1;
}

/* Prevent body scroll when popup is open */
body.popup-open {
  overflow: hidden;
}



























/* ==============================================
   MOBILE RESPONSIVE
   ============================================== */

/* ==============================================
   MOBILE RESPONSIVE - PROFESSIONAL DESIGN
   ============================================== */

/* Design System Variables (already defined in main CSS)
   Font Sizes: --font-xs (14px), --font-sm (16px), --font-md (20px), --font-lg (28px)
   Colors: --color-primary (#00ffcc), --color-accent, --color-text
   Font Weights: 400 (normal), 600 (semi-bold), 700 (bold)
*/



@media (max-width: 1200px) {

  :root {
    --font-xs: 13px;
    --font-sm: 15px;
    --font-md: 19px;
    --font-lg: 31px;
  }

  .page-container {
    padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  .page-container {
    padding: 0 30px;
  }

  .cta-text h2 {
    font-size: var(--font-md);
    font-weight: 600;
  }

  .hero {
    height: 60vh;
    min-height: 350px;
  }

  .result-heading {
    font-size: var(--font-md);
  }

  .brand-statement p {
    font-size: var(--font-sm);
  }

  .solutions-intro {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px;
  }

  .lightbulb-icon {
    width: 60px;
    height: 60px;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .model-swap-content {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-container {
    padding: 0 20px;
    margin-top: 80px;
  }
	
	.cross-header h1 {
		font-size: var(--font-md-lg);  
	}
	
	.flat-section-title {
	  font-size: var(--font-md);
	}
	
   .infographics-header h1 {
	  font-size: var(--font-md-lg);  
	}

  .section-header p {
        display: none;
    }

  .navbar {
    padding: 14px 20px;
  }

  .nav-arrow.left {
    left: 10px;
    /* bring inside */
  }

  .nav-arrow.right {
    right: 10px;
    /* bring inside */
  }

  .nav-arrow {
    width: 40px;
    /* slightly smaller for mobile */
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  .testimonial-container {
    position: relative;
  }

  .cta-text h2 {
    font-size: var(--font-md);
    font-weight: 600;
  }

  .navbar .logo img {
    height: 41px;
  }

  .result-heading {
    font-size: var(--font-md);
  }

  .brand-statement p {
    font-size: var(--font-sm);
  }

  .hamburger {
    display: flex;
  }

  .nav-btn-desktop {
    display: none;
  }

  .nav-btn-mobile {
    display: block;
    margin-top: 30px;
    padding: 14px 28px;
    font-size: var(--font-sm);
    font-weight: 600;
  }

  .nav-btn-mobile-opt {
    display: block;
    padding: 14px 0;
    font-size: var(--font-sm);
    font-weight: 400;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #1f1f1f;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 65px 25px 30px;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 1002;
  }

  .menu.active {
    right: 0;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li a {
    padding: 16px 15px;
    font-size: var(--font-sm);
    font-weight: 400;
    width: 100%;
    color: var(--color-primary);
  }

  .nav-links li a:hover {
    background: rgba(0, 255, 204, 0.1);
    color: var(--color-accent);
  }

  .hero {
    height: 50vh;
    min-height: 300px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .solutions-intro {
    padding: 20px;
    margin-bottom: 40px;
  }

  .solutions-icon img {
    height: 100%;
  }

  .solution-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-header {
    flex-direction: column;
    gap: 10px;
  }

  .card-title {
    font-size: var(--font-md-lg);
  }

  .strip-content h3 {
    font-size: var(--font-md);
  }

  .stats-section {
    padding: 40px 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-section {
    padding: 30px 15px;
  }

  .dashboard-preview {
    height: 195px;
    padding: 4px 0px;
  }

  .heroa {
    padding: 20px 0px 0px;
  }

  .hero-contenta {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .hero-right {
    width: 100%;
    max-width: 500px;
    text-align: center;
  }

  .hero-right a {
    justify-content: center;
  }

  .edge {
    flex-direction: column;
    text-align: center;
    padding: 80px 0px;
  }

  .difference .grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .difference-item {
    padding: 40px 25px;
  }

  .results .grid {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .result {
    max-width: 100%;
    width: 100%;
    padding: 40px 25px;
  }

  .main-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 15px 0;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .testimonial {
    min-width: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }

  /* .nav-arrow.left {
    left: -60px;
  }

  .nav-arrow.right {
    right: -60px;
  }

  .nav-arrow {
    display: none;
  } */

  .hero-text h2 {
    font-size: var(--font-lg);
    font-weight: 700;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .model-showcase {
    grid-template-columns: 1fr;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  /* Footer Responsive */
  .site-footer {
    padding: 25px 0 0;
    margin-top: 25px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 25px;
  }

  .footer-section {
    padding: 0 5px;
  }

  .footer-section h3 {
    margin-bottom: 15px;
    font-size: var(--font-sm);
	text-align: center;
    font-weight: 600;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }

  .footer-section ul li a {
    font-size: var(--font-sm);
    font-weight: 400;
  }

  .social-media-section {
    text-align: left;
    grid-column: span 2;
  }

  .social-icons {
    justify-content: center;
    gap: 12px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }

  .footer-bottom {
    padding: 18px 20px;
    font-size: var(--font-xs);
    font-weight: 400;
  }

  /* Results Section */
  .our-result-section {
    padding: 25px 20px;
    border-radius: var(--border-radius);
  }

  .our-result-heading {
    font-size: var(--font-md);
    font-weight: 700;
    margin-bottom: 20px;
  }

  .our-result-highlight {
    font-size: var(--font-md);
    font-weight: 600;
    margin-bottom: 25px;
  }

  .our-result-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .result-box {
    padding: 18px 15px;
  }

  .result-box p {
    font-size: var(--font-sm);
    font-weight: 400;
  }

  .checkmark {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }

  .checkmark::after {
    left: 13px;
    top: 7px;
    width: 5px;
    height: 16px;
    border-width: 0 3px 3px 0;
  }

  /* About Us Section */
  .about-us-heading {
    font-size: var(--font-lg);
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 25px;
  }

  .about-us-description {
    padding: 25px 20px;
    border-radius: var(--border-radius);
  }

  .about-us-description h2 {
    font-size: var(--font-md);
    font-weight: 600;
    margin-bottom: 18px;
  }

  .about-us-description p {
    font-size: var(--font-sm);
    font-weight: 400;
    line-height: 1.6;
  }

  .header-flex {
    gap: 30px;
    padding: 30px 0px;
    flex-direction: column;
  }

  .solution-image-wrapper {
    width: 100%;
    order: 1;
  }

  .solution-text {
    width: 100%;
    order: 2;
    text-align: center;
  }

  .solution-image {
    width: 100%;
    height: auto;
  }

  .tagline {
    font-size: var(--font-sm);
    font-weight: 400;
    text-align: center;
    margin: 10px auto;
  }

  .why-section {
    padding: 0px 0px;
  }

  .why-section h2 {
    font-size: var(--font-lg);
    font-weight: 700;
    margin-bottom: 20px;
  }

  .case-studies {
    font-size: var(--font-sm);
    font-weight: 600;
    margin-bottom: 20px;
  }

  .testimonial p {
    font-size: var(--font-sm);
    font-weight: 400;
    line-height: 1.6;
  }

  .nav-arrow {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .page-container {
    margin-top: 70px;
    padding: 0 15px;
  }
	
	.cross-header h1 {
		font-size: var(--font-md-lg);  
	}
	
	.flat-section-title {
	  font-size: var(--font-md);
	}
	
	.infographics-header h1 {
	  font-size: var(--font-md-lg);	
	}

  .strip-content h3 {
    font-size: var(--font-md);
  }

  .navbar {
    padding: 12px 15px;
  }

  .navbar .logo img {
    height: 41px;
  }

  .solutions-heading {
    font-size: var(--font-md-lg);
  }

  .menu {
    width: 75%;
  }

  .result-heading {
    font-size: var(--font-md);
  }

  .brand-statement p {
    font-size: var(--font-sm);
  }

  .nav-links li a {
    font-size: var(--font-sm);
    font-weight: 400;
    padding: 14px 12px;
  }

  .nav-btn-mobile {
    padding: 12px 24px;
    font-size: var(--font-sm);
    font-weight: 600;
  }

  .cta-text h2 {
    font-size: var(--font-md);
    font-weight: 600;
  }

  .hero {
    height: 40vh;
    min-height: 250px;
  }

  .hero-content {
    padding: 0 10px;
  }

  .hero-cta {
    padding: 12px 24px;
    font-size: var(--font-sm);
    font-weight: 600;
  }

  .content-right h2 {
    font-size: var(--font-md);
    text-align: center;
  }

  .analytics-subpage .logo {
    font-size: var(--font-md-lg);
  }

  .solutions-intro {
    padding: 15px;
  }

  .lightbulb-icon {
    width: 50px;
    height: 50px;
  }

  .card-header {
    /* top: 15px;
    left: 15px; */
    right: 15px;
  }

  .cta-section {
    padding: 20px 15px;
  }

  .cta-demo-btn {
    padding: 12px 24px;
    font-size: var(--font-sm);
    font-weight: 600;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icon {
    width: 34px;
    height: 34px;
  }

  .heroa {
    padding: 10px 0px 0px;
  }

  .hero-right-item {
    padding: 12px;
  }

  .edge {
    padding: 40px 0px;
  }

  .edge .text li {
    padding-left: 20px;
    font-size: var(--font-sm);
    font-weight: 400;
  }

  .difference,
  .results {
    padding: 20px 0px;
    margin: 0px;
  }

  .difference-item {
    padding: 30px 20px;
  }

  .result {
    padding: 30px 20px;
  }

  .testimonial {
    min-width: 100%;
    max-width: 100%;
  }

  .testimonial-list {
    gap: 15px;
  }

  .nav-arrow.left {
    left: 10px;
    /* bring inside */
  }

  .nav-arrow.right {
    right: 10px;
    /* bring inside */
  }

  .nav-arrow {
    width: 40px;
    /* slightly smaller for mobile */
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  .testimonial-container {
    position: relative;
  }


  /* Footer */
  .site-footer {
    padding: 20px 0 0;
    margin-top: 20px;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 20px;
  }

  .footer-section {
    padding: 0;
    text-align: left;
  }

  .footer-section h3 {
    margin-bottom: 12px;
    font-size: var(--font-sm);
	text-align: center;
    font-weight: 600;
  }

  .footer-section ul li {
    margin-bottom: 8px;
  }

  .footer-section ul li a {
    font-size: var(--font-xs);
    font-weight: 400;
  }

  .social-media-section {
    text-align: left;
    grid-column: 1;
  }

  .social-icons {
    justify-content: center;
    gap: 10px;
  }

  .social-icon {
    width: 34px;
    height: 34px;
  }

  .footer-bottom {
    padding: 15px 15px;
    font-size: var(--font-xs);
    font-weight: 400;
  }

  .footer-bottom p {
    line-height: 1.5;
  }

  /* Results Section */
  .our-result-section {
    padding: 20px 15px;
    border-radius: var(--border-radius);
  }

  .our-result-heading {
    font-size: var(--font-md);
    font-weight: 700;
    margin-bottom: 18px;
  }

  .our-result-highlight {
    font-size: var(--font-md);
    font-weight: 600;
    margin-bottom: 20px;
  }

  .our-result-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .result-box {
    padding: 15px 12px;
    display: flex;
    align-items: center;
    text-align: left;
  }

  .content-right p {
    font-size: var(--font-md);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0px;
    max-width: 100%;
  }

  .result-box p {
    font-size: var(--font-sm);
    font-weight: 400;
    line-height: 1.5;
  }

  .checkmark {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    flex-shrink: 0;
  }

  .checkmark::after {
    left: 12px;
    top: 7px;
    width: 4px;
    height: 14px;
    border-width: 0 3px 3px 0;
  }

  /* About Us */
  .about-us-heading {
    font-size: var(--font-md);
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .about-us-description {
    padding: 20px 15px;
    border-radius: var(--border-radius);
  }

  .about-us-description h2 {
    font-size: var(--font-md);
    font-weight: 600;
    margin-bottom: 15px;
  }

  .about-us-description p {
    font-size: var(--font-sm);
    font-weight: 400;
    line-height: 1.5;
  }

  .header-flex {
    gap: 25px;
    padding: 25px 0px;
  }

  .tagline {
    font-size: var(--font-sm);
    font-weight: 400;
    padding: 0 5px;
    margin: 10px auto;
  }

  .about-us-container {
    padding: 0;
  }

  .why-section {
    padding: 0px 0px;
  }

  .why-section h2 {
    font-size: var(--font-md-lg);
    font-weight: 700;
    margin-bottom: 15px;
  }

  .case-studies {
    font-size: var(--font-sm);
    font-weight: 600;
    margin-bottom: 18px;
  }

  .testimonial p {
    font-size: var(--font-sm);
    font-weight: 400;
    line-height: 1.5;
  }

  .nav-arrow {
    width: 32px;
    height: 32px;
  }

  .nav-arrow.left {
    left: 5px;
  }

  .nav-arrow.right {
    right: 5px;
  }
}

@media (max-width: 360px) {
  .footer-container {
    padding: 0 12px;
  }

	.infographics-header h1 {
	  font-size: var(--font-md-lg);	
	}
	
	.cross-header h1 {
		font-size: var(--font-md-lg);  
	}
	
	.flat-section-title {
	  font-size: var(--font-md);
	}
	
  .strip-content h3 {
    font-size: var(--font-md);
  }
  .footer-content {
    gap: 20px;
  }

  .footer-section h3 {
    font-size: var(--font-sm);
    font-weight: 600;
	text-align: center;
    margin-bottom: 10px;
  }

  .footer-section ul li a {
    font-size: var(--font-xs);
    font-weight: 400;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .solutions-heading {
    font-size: var(--font-md);
  }

  .result-heading {
    font-size: var(--font-md);
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
  }

  .our-result-section {
    padding: 15px 12px;
  }

  .our-result-heading {
    font-size: var(--font-md);
    font-weight: 700;
    margin-bottom: 15px;
  }

  .our-result-grid {
    gap: 10px;
  }

  .result-box {
    padding: 12px 10px;
  }

  .result-box p {
    font-size: var(--font-xs);
    font-weight: 400;
  }

  .checkmark {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }

  .checkmark::after {
    left: 11px;
    top: 6px;
    width: 3px;
    height: 12px;
    border-width: 0 2px 2px 0;
  }

  .about-us-heading {
    font-size: var(--font-md);
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: 18px;
  }

  .content-right h2 {
    font-size: var(--font-md);
    text-align: center;
  }

  .content-right p {
    font-size: var(--font-md);
    text-align: center;
    margin-bottom: 0px;
    max-width: 100%;
  }

  .about-us-description {
    padding: 18px 12px;
  }

  .about-us-description h2 {
    font-size: var(--font-sm);
    font-weight: 600;
    margin-bottom: 12px;
  }

  .about-us-description p {
    font-size: var(--font-xs);
    font-weight: 400;
  }

  .header-flex {
    gap: 20px;
    padding: 20px 0px;
  }

  .tagline {
    font-size: var(--font-xs);
    font-weight: 400;
    margin: 10px auto;
  }

  .testimonial p {
    font-size: var(--font-xs);
    font-weight: 400;
  }

  .nav-arrow {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    height: 80vh;
    min-height: 400px;
  }

  .cta-text h2 {
    font-size: var(--font-md);
    font-weight: 600;
  }

  .page-container {
    margin-top: 70px;
  }

  .heroa {
    min-height: 60vh;
    padding: 10px 0px 0px;
  }

  .hero-contenta {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  body::before {
    background-size: cover;
  }
}

@media print {

  .navbar,
  .hero-video,
  .social-icons {
    display: none;
  }

  body {
    color: black;
    background: white;
  }

  .hero-content h1,
  .solutions-text h2,
  .stat-number {
    color: black;
  }
}

/* ==============================================
   MOBILE BREAKPOINT (768px)
   ============================================== */
@media (max-width: 768px) {
  .page-container {
    padding: 0 20px;
    margin-top: 80px;
  }

  /* Hero section mobile */
  .heroa {
    padding: 10px 0px 0px;
    min-height: 60vh;
  }

  .hero-overlay h1 {
    font-size: var(--font-lg);
    padding: 0 10px;
    margin-bottom: 16px;
  }

  .container h1 {
    font-size: var(--font-lg);
  }

  .hero-overlay p {
    font-size: var(--font-md);
    padding: 0 10px;
    margin-bottom: 30px;
  }

  /* Hero content mobile alignment */
  .hero-contenta {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin-top: 30px;
  }

  .hero-left {
    width: 100%;
    min-width: unset;
    max-width: 100%;
  }

  .hero-right {
    width: 100%;
    max-width: 100%;
    gap: 12px;
  }

  .hero-right-item {
    padding: 18px 20px;
    justify-content: center;
    text-align: center;
  }

  .hero-right-item h3 {
    font-size: var(--font-md);
    text-align: center;
  }

  /* Edge section mobile */
  .edge {
    flex-direction: column;
    gap: 40px;
    padding: 50px 0px;
    text-align: center;
  }

  .edge .text {
    width: 100%;
    min-width: unset;
  }

  .edge .text h2 {
    font-size: var(--font-lg);
    margin-bottom: 20px;
  }

  .edge .text p {
    font-size: var(--font-md);
    margin-bottom: 25px;
  }

  .edge .text li {
    margin-bottom: 15px;
    padding: 12px 0 12px 20px;
    font-size: var(--font-sm);
  }

  .edge .image {
    width: 100%;
    min-width: unset;
  }

  /* Difference section mobile */
  .difference {
    padding: 0px 0px;
    margin: 0px 0;
  }

  .difference h2 {
    font-size: var(--font-lg);
    margin-bottom: 20px;
  }

  .difference>p {
    font-size: var(--font-md);
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .difference .grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .difference-item {
    padding: 35px 25px;
  }

  /* Results section mobile */
  .results {
    padding: 20px 0px;
  }

  .results h2 {
    font-size: var(--font-lg);
    margin-bottom: 30px;
  }

  .results .grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .result {
    width: 100%;
    max-width: 100%;
    padding: 35px 25px;
  }
}

/* ==============================================
   SMALL MOBILE BREAKPOINT (480px)
   ============================================== */
@media (max-width: 480px) {
  .page-container {
    padding: 0 15px;
    margin-top: 70px;
  }

  /* Hero section small mobile */
  .heroa {
    padding: 10px 0px 0px;
    min-height: 50vh;
  }

  .hero-overlay h1 {
    font-size: var(--font-md-lg);
    padding: 0 5px;
    margin-bottom: 14px;
  }

  .container h1 {
    font-size: var(--font-md-lg);
  }

  .hero-overlay p {
    font-size: var(--font-sm);
    padding: 0 5px;
    margin-bottom: 25px;
  }

  .hero-contenta {
    gap: 25px;
    margin-top: 25px;
  }

  .hero-right {
    gap: 10px;
  }

  .hero-right-item {
    padding: 15px 15px;
  }

  .hero-right-item h3 {
    font-size: var(--font-sm);
  }

  /* Edge section small mobile */
  .edge {
    padding: 40px 0px;
    gap: 30px;
  }

  .edge .text h2 {
    font-size: var(--font-md);
    margin-bottom: 18px;
  }

  .edge .text p {
    font-size: var(--font-sm);
    margin-bottom: 20px;
  }

  .edge .text li {
    padding: 10px 0 10px 15px;
    margin-bottom: 12px;
    font-size: var(--font-sm);
  }

  /* Difference section small mobile */
  .difference {
    padding: 0px 0px;
    margin: 0px 0;
  }

  .difference h2 {
    font-size: var(--font-md);
    margin-bottom: 18px;
  }

  .difference>p {
    font-size: var(--font-sm);
    margin-bottom: 30px;
    padding: 0 5px;
  }

  .difference .grid {
    gap: 18px;
    margin-top: 25px;
  }

  .difference-item {
    padding: 28px 20px;
  }

  .difference-item .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }

  .difference-item h3 {
    font-size: var(--font-md);
    margin-bottom: 12px;
  }

  .difference-item p {
    font-size: var(--font-sm);
  }

  /* Results section small mobile */
  .results {
    padding: 20px 0px;
  }

  .results h2 {
    font-size: var(--font-md-lg);
    margin-bottom: 25px;
  }

  .results .grid {
    gap: 18px;
  }

  .result {
    padding: 28px 20px;
    min-width: unset;
  }

  .result .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }

  .result h3 {
    font-size: var(--font-md-lg);
    margin-bottom: 12px;
  }

  .result p {
    font-size: var(--font-md);
  }

  .result-description {
    font-size: var(--font-sm);
    margin-top: 8px;
  }
}

/* ==============================================
   EXTRA SMALL MOBILE (360px)
   ============================================== */
@media (max-width: 360px) {
  .page-container {
    padding: 0 12px;
  }

  .section-header p {
        display: none;
    }

  .heroa {
    padding: 10px 0px 0px;
  }

  .hero-overlay h1 {
    font-size: var(--font-md-lg);
  }

  .container h1 {
    font-size: var(--font-md-lg);
  }

  .hero-overlay p {
    font-size: var(--font-sm);
  }

  .hero-contenta {
    gap: 20px;
  }

  .hero-right-item {
    padding: 12px 12px;
  }

  .edge {
    padding: 35px 0px;
    gap: 25px;
  }

  .difference {
    padding: 0px 0px;
    margin: 0px 0;
  }

  .difference-item {
    padding: 25px 15px;
  }

  .results {
    padding: 15px 0px;
  }

  .result {
    padding: 25px 15px;
  }
}

/* ==============================================
   LANDSCAPE ORIENTATION FIX
   ============================================== */
@media (max-width: 896px) and (orientation: landscape) {
  .heroa {
    min-height: 80vh;
    padding: 10px 0px 0px;
  }

  .hero-contenta {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
  }

  .hero-left,
  .hero-right {
    flex: 1;
    min-width: 45%;
  }
}

/* ==============================================
   UTILITY FIXES
   ============================================== */

/* Ensure images don't overflow on mobile */
.hero-left img,
.edge .image img {
  height: auto;
}

/* Center alignment for mobile text */
@media (max-width: 768px) {
  .hero-right a {
    justify-content: center;
    padding: 0 10px;
  }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
  .hero-right-item {
    min-height: 60px;
  }
}

/* Fix grid overflow issues */
.difference .grid,
.results .grid {
  width: 100%;
  max-width: 100%;
}


/* 17-12 channge */
/* .solutions-intro {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
} */

.solutions-text {
  text-align: center;
  margin-bottom: 50px;
}

.solutions-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.solutions-text p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.solutions-strips {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-strip {
  position: relative;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-strip:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.strip-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.strip-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 600px;
}

/* Dark overlay for better text readability */
.solution-strip::after {
  content: '';
  /* position: absolute; */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: background 0.3s ease;
}

.solution-strip:hover::after {
  background: rgba(0, 0, 0, 0.5);
}

.strip-content h3 {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.strip-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}



/* Cross reference */

/* .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 1;
        } */

.cross-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 0px 20px;
}

.cross-header h1 {
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 20px;
  background-clip: text;
}

.cross-header .subtitle {
  font-size: var(--font-md);
  /* changes done by samiksha */
  color: #00d4ff;
  /* end here */
  margin-bottom: 10px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
  margin-bottom: 45px;
}

.benefit-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  padding: 30px 30px 0px 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.benefit-card p {
  font-size: var(--font-md);
  line-height: 1.8;
  color: #cbd5e1;
}

.benefit-card strong {
  color: #00d4ff;
  font-weight: 600;
}

.cross-section-title {
  font-size: var(--font-lg);
  font-weight: 700;
  text-align: center;
  margin: 40px 0 20px;
  background-clip: text;
}

.how-it-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(0, 120, 255, 0.1), rgba(0, 180, 255, 0.05));
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  padding: 35px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00d4ff, #0099ff);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
  border-color: rgba(0, 212, 255, 0.6);
}

.feature-card h3 {
  font-size: var(--font-md);
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.feature-card p {
  font-size: var(--font-md);
  line-height: 1.8;
  color: #cbd5e1;
}

.case-study {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 60px;
}

.case-study h3 {
  font-size: var(--font-md);
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 30px;
  text-align: center;
}
/* 
samiksha  */
.case-study p {
  font-size: 18px; 
  line-height: 1.9;
  color:var(--color-primary);
  margin-bottom: 20px;
}

.case-study strong {
  color: #00d4ff;
  font-weight: 600;
}

.highlight {
  color: #00d4ff;
  font-weight: 700;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.stat-number {
  font-size: var(--font-lg);
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 10px;
}

/* .stat-label {
            font-size: 14px;
            color: #8892b0;
            text-transform: uppercase;
            letter-spacing: 1px;
        } */

.benefits-grid {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.benefit-image {
  flex: 1;
}

.benefit-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  
}

.benefit-card {
  flex: 1;
}

/* Responsive design */
@media (max-width: 768px) {
  .benefits-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 32px;
  }

  .section-header h2 {
    font-size: var(--font-md-lg);
  }

  .benefits-grid,
  .how-it-works {
    grid-template-columns: 1fr;
  }

  .case-study {
    padding: 30px 20px;
  }
}

.white-tick {
  list-style: none;
  position: relative;
  padding-left: 24px;
}

.white-tick::before {
  content: "✔";
  left: 0;
  top: 0;
  color: #ffffff;
  /* white tick */
  font-weight: bold;
}

.flat-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr auto 2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 25px;
}

.flat-section-title {
  font-size: var(--font-lg);
  font-weight: var(--weight-medium);
  margin-bottom: 20px;
}

.input-section .section-title {
  color: var(--color-primar);
}

.output-section .section-title {
  color: var(--color-primary);
}

.divider {
  width: 2px;
  height: 266px;
  background: linear-gradient(to bottom,
      transparent 0%,
      #12c8ff 20%,
      #2491bc 80%,
      transparent 100%);
  margin-top: 80px;
}

.image-grid {
  display: flex;
  gap: 20px;
}

.input-section .image-grid {
  grid-template-columns: 1fr;
  max-width: 450px;
}

.output-section .image-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.image-card {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid #2a2a2a;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.image-card:hover {
  transform: translateY(-5px);
  border-color: #00d9a5;
}


.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
  background: #151515;
}

@media (max-width: 1200px) {
  .main-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
        transparent 0%,
        #00d9a5 20%,
        #00d9a5 80%,
        transparent 100%);
    margin: 40px 0;
  }

  .input-section .image-grid {
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .output-section .image-grid {
    grid-template-columns: 1fr;
  }
}





/* Product & Lifestyle  */
.video-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1400px;
  width: 100%;
}

.video-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.video-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00f2fe, #4facfe);
}

video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .video-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .video-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .video-wrapper {
    padding: 10px;
  }
}




.brand-store-layout {
  display: flex;
  gap: 20px;
  height: 80vh;
  min-height: 1100px;
  margin-bottom: 70px;
}

.brand-store-main-image {
  /* flex: 1; */
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.brand-store-image-container {
  height: 100%;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-store-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: none;
  border-radius: var(--border-radius);
}

.brand-store-grid {
  flex: 1;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.brand-store-grid-row {
  display: flex;
  gap: 15px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.brand-store-grid-item {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.3s ease;
  min-width: 0;
  min-height: 0;
}

.brand-store-grid-item:hover {
  transform: translateY(-3px);
}

.brand-store-image-wrapper {
  height: 100%;
  background: transparent;
}

.brand-store-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.brand-store-grid-item:hover .brand-store-grid-img {
  transform: scale(1.02);
}

.brand-store-page-heading {
  text-align: center;
  font-size: var(--font-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 30px;
  color: var(--color-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ==============================================
   RESPONSIVE STYLES FOR BRAND STORE LAYOUT
   ============================================== */

/* Tablet portrait and small tablets */
@media screen and (max-width: 768px) {
  .aplus-layout {
    flex-direction: column;
    gap: 20px;
    height: auto;
    min-height: auto;
    margin-bottom: 40px;
  }

  .aplus-main-image {
    width: 100%;
    height: 50vh;
    min-height: 300px;
    max-height: 500px;
  }

  .aplus-grid {
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .grid-row {
    min-height: 180px;
  }
}

/* Mobile landscape */
@media screen and (max-width: 640px) and (orientation: landscape) {
  .aplus-layout {
    margin-bottom: 30px;
  }

  .aplus-main-image {
    height: 60vh;
    min-height: 250px;
  }

  .grid-row {
    min-height: 150px;
  }
}

/* Mobile devices */
@media screen and (max-width: 480px) {
  .aplus-layout {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .aplus-main-image,
  .aplus-grid {
    padding: 12px;
    border-width: 2px;
    border-radius: var(--border-radius, 8px);
  }

  .aplus-main-image {
    height: 40vh;
    min-height: 250px;
    max-height: 400px;
  }
	
	.main-grid {
		grid-template-columns: 1fr;
		gap: 0px;
	  }

  .aplus-grid {
    min-height: 350px;
    gap: 10px;
  }

  .grid-row {
    gap: 10px;
    min-height: 160px;
  }

  .main-image,
  .grid-image {
    border-radius: var(--border-radius, 8px);
  }

  .grid-item:hover {
    transform: none;
  }
}

/* Extra small mobile devices */
@media screen and (max-width: 360px) {
  .aplus-layout {
    gap: 12px;
    margin-bottom: 20px;
  }

  .section-header h2 {
    font-size: var(--font-md-lg);
  }

  .aplus-main-image,
  .aplus-grid {
    padding: 10px;
  }

  .aplus-main-image {
    height: 35vh;
    min-height: 200px;
    max-height: 300px;
  }

  .aplus-grid {
    min-height: 300px;
    gap: 8px;
  }

  .grid-row {
    gap: 8px;
    min-height: 140px;
  }
}

/* Ensure images are optimized for all screen sizes */
@media screen and (max-width: 768px) {
  .main-image {
    object-fit: cover;
  }
}

/* Handle very wide screens */
@media screen and (min-width: 1920px) {
  .aplus-layout {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Brand Store */

/* Tablet styles (landscape and portrait) */
@media screen and (max-width: 1024px) {
  .brand-store-layout {
    gap: 15px;
    height: auto;
    min-height: 500px;
    margin-bottom: 50px;
  }

  .brand-store-main-image,
  .brand-store-grid {
    padding: 15px;
    border-width: 2px;
  }

  .brand-store-grid-row {
    gap: 12px;
  }
}

/* Tablet portrait and small tablets */
@media screen and (max-width: 768px) {
  .brand-store-layout {
    flex-direction: column;
    gap: 20px;
    height: auto;
    min-height: auto;
    margin-bottom: 40px;
  }

  .brand-store-main-image {
    width: 100%;
    height: 50vh;
    min-height: 300px;
    max-height: 500px;
  }

  .brand-store-image-container {
    align-items: flex-start;
  }

  .brand-store-main-img {
    height: auto;
    object-fit: contain;
  }

  .brand-store-grid {
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .brand-store-grid-row {
    min-height: 180px;
  }
}

/* Mobile landscape */
@media screen and (max-width: 640px) and (orientation: landscape) {
  .brand-store-layout {
    margin-bottom: 30px;
  }

  .brand-store-main-image {
    height: 60vh;
    min-height: 250px;
  }

  .brand-store-grid-row {
    min-height: 150px;
  }
}
/* Mobile devices */
@media screen and (max-width: 480px) {
  .brand-store-layout {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .brand-store-main-image,
  .brand-store-grid {
    padding: 12px;
    border-width: 2px;
    border-radius: var(--border-radius, 8px);
  }

  .brand-store-main-image {
    height: 40vh;
    min-height: 250px;
    max-height: 400px;
  }

  .brand-store-image-container {
    align-items: flex-start;
  }

  .brand-store-main-img {
    height: auto;
  }

  .brand-store-grid {
    min-height: 350px;
    gap: 10px;
  }

  .brand-store-grid-row {
    gap: 10px;
    min-height: 160px;
  }

  .brand-store-main-img,
  .brand-store-grid-img {
    border-radius: var(--border-radius, 8px);
  }

  .brand-store-grid-item:hover {
    transform: none;
  }
}

/* Extra small mobile devices */
@media screen and (max-width: 360px) {
  .brand-store-layout {
    gap: 12px;
    margin-bottom: 20px;
  }

  .brand-store-main-image,
  .brand-store-grid {
    padding: 10px;
  }

  .brand-store-main-image {
    height: 35vh;
    min-height: 200px;
    max-height: 300px;
  }

  .brand-store-grid {
    min-height: 300px;
    gap: 8px;
  }

  .brand-store-grid-row {
    gap: 8px;
    min-height: 140px;
  }
}

/* Ensure images are optimized for all screen sizes */
@media screen and (max-width: 768px) {
  .brand-store-main-img {
    object-fit: contain;
  }

  /* Smooth scrolling for mobile/tablet */
  .brand-store-image-container {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  /* Optional: Add scrollbar styling for better UX */
  .brand-store-image-container::-webkit-scrollbar {
    width: 6px;
  }

  .brand-store-image-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }

  .brand-store-image-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
  }

  .brand-store-image-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}

/* Handle very wide screens */
@media screen and (min-width: 1920px) {
  .brand-store-layout {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ==============================================
   HIGH DPI SCREENS
   ============================================== */

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.lightbox-image.zoomed {
    cursor: zoom-out;
    transform: scale(1.5);
}

.lightbox-close {
    position: fixed;
    top: 25px;
    right: 25px;
    cursor: pointer;
    z-index: 10001;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    padding: 0;
    color: #333;
}

.lightbox-close svg {
    display: block;
}

.lightbox-close:hover {
    background: #f44336;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(244, 67, 54, 0.5);
}

.lightbox-zoom-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    pointer-events: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Make images clickable */
.main-image, .grid-image {
    transition: transform 0.3s ease;
}

.main-image:hover, .grid-image:hover {
    transform: scale(1.02);
}

 
 /* added by samiksha  */
.case-para {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    margin: 10px 60px 6px;  
}
 
/* Case study content box */
.case-study-box {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}
 
/* Paragraph inside box */
.case-study-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 6px;  
}
 
/* Results heading */
.case-study-box h3.results-left {
    text-align: left;
    margin-top: 4px !important;
    margin-bottom: 6px !important;
    line-height: 1.2;
}
 
/* Results list */
.results-list {
    list-style: none;
    margin-left: 1px;
    padding-left: 0;
    margin-bottom: 4px !important;
}
 
/* Each list item */
.hollow-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 17px;
    line-height: 1.4;
    white-space: nowrap;
    text-align: left;
}
 
/* bullted  list */
.hollow-list li::before {
    content: "";
    width: 6px;
    height: 6px; background: #cfcfcf;
     border-radius: 2px;
    border: 1.2px solid #cfcfcf;
    position: absolute;
    left: 4px;
    top: 7px;
}
 
/* Last paragraph spacing after list */
.case-study-box p:last-of-type {
    margin-top: 17px !important;
}


/* added by samiksha  */

.global-headquarters {
   
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.global-headquarters h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #00c6ff; /* Blue  */
}

.global-headquarters p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
}


/* added by samiksha for cross ref */
/* Force 3 cards in one row */
.ace-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Keep same feature-card design commented by samiksha */ 
.ace-row .feature-card {
    text-align: center;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} 

/* Slight typography adjustment */
.ace-row .feature-card p {
    font-size: 17px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .ace-row {
        grid-template-columns: 1fr;
    }
}

/* ace for brand page added by samiksha */
.impact-title {

    margin-top: 30px;
    font-size: 20px;
    color: var(--color-primary) !important;
    text-align: left !important;
    margin-bottom: 6px !important;
}

.impact-list {
    list-style: none;
    margin-top: 10px; 
    padding-left: 20px;
}

.impact-list li {
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
    padding-left: 22px; /* slight adjustment for better spacing */
}

.impact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: #cfcfcf; /* light grey square like image */
    border-radius: 2px;
}
/* added by samiksha for home page images smoothy transition */

.hero-left img{
transition: opacity 0.4s ease;
}

.hero-right-item:hover,
.hero-right-item.active{
    border: 1px solid #00c6ff;
    background: rgba(0, 198, 255, 0.12);
    box-shadow: 0 0 20px rgba(0,198,255,0.25);
}

.hero-description{
    font-weight: 400 !important;
}

/* case study align samiksha  */
.case-study-box,
.case-para,
.results-list {
    text-align: left;
}

/* all case study left aligned */
.testimonial-list,
.testimonial,
.testimonial p{
    text-align: left !important;
    font-size: 18px;
}

.about-layout-fix .about-us-container{
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-layout-fix .about-us-container p{
    flex: 1;
}

.about-layout-fix .map-image-banner{
    flex: 1;
}

.about-layout-fix .map-image{
    width: 578px;
    height: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* added by samiksha for  clickable blocks */
.linkblocks .hero-right-item h3{
width:100%;
height:100%;
margin:0;
}
.linkblocks .hero-right-item h3 a{
display:flex;
align-items:center;
width:100%;
height:100%;
text-decoration:none;
color:inherit;
}

/* 
added by samiksha for rotating logos in about us page    */

/* ===== PARTNER SLIDER STYLES ===== */
.partners-slider {
  padding: 60px 20px;
  text-align: center;
}

.partners-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.partner-block {
  margin-bottom: 40px;
}


.logo-slider {
  width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px 0; /* vertical padding only */
}

.logo-track {
  display: flex;
  gap: 0; /* no gaps between images */
  width: fit-content;
  align-items: center;
  animation: scrollPartners 50s linear infinite;
}

.logo-track img {
  width: 275px;        /* 1100px / 4 = exactly 275px */
  height: 70px;       
  object-fit: cover; /* maintain aspect ratio  look here samiksha*/
  flex-shrink: 0;
  padding: 0;          /* no internal spacing */
  box-sizing: border-box;
  /* background: red; */
}

/* Infinite scroll animation */
/* ERP: 7 logos × 275px = 1925px */
@keyframes scrollERP {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1925px); }
}

/* Ecommerce & PLM: 8 logos × 275px = 2200px */
@keyframes scrollEcom {
  0% { transform: translateX(0); }
  100% { transform: translateX(-2200px); }
}

/* Apply to the correct track */
.erp-track {
  animation: scrollERP 50s linear infinite;
}

.ecom-track {
  animation: scrollEcom 50s linear infinite;
}

.plm-track {
  animation: scrollEcom 50s linear infinite;
}


/* Ecommerce has 8 unique logos → move by 8*275 = 2200px */
/* PLM has 8 unique logos → move by 2200px */


.ecommerce-slider{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.ecommerce-heading{
  font-size:20px;
  font-weight:600;
  margin-bottom:10px;
}

/* added to make solution case study look good in mobile view */

/* ==============================================
   CASE STUDY MOBILE FIX
   ============================================== */

@media (max-width: 768px){

  .case-study-box{
      padding: 0 20px;
  }

  .case-para{
      margin: 10px 0;
      font-size: 16px;
      line-height: 1.7;
  }

  .case-study-box p{
      font-size: 16px;
      line-height: 1.7;
  }

  .case-study-box h3.results-left{
      margin-top: 12px !important;
      margin-bottom: 10px !important;
      font-size: 20px;
  }

  .hollow-list li{
      white-space: normal;   /* FIX: allow wrapping */
      word-break: break-word;
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 8px;
  }

  .testimonial,
  .testimonial p{
      font-size: 16px !important;
      line-height: 1.7;
  }

}

@media (max-width: 480px){

  .case-study-box{
      padding: 0 12px;
  }

  .case-para{
      font-size: 15px;
  }

  .case-study-box p{
      font-size: 15px;
  }

  .hollow-list li{
      font-size: 14px;
      line-height: 1.55;
  }

  .testimonial,
  .testimonial p{
      font-size: 15px !important;
  }

}
@media (max-width:768px){

  .erp-track{
    animation: scrollERPmobile 50s linear infinite;
  }

  .ecom-track,
  .plm-track{
    animation: scrollEcommobile 50s linear infinite;
  }

  @keyframes scrollERPmobile{
    0%{transform:translateX(0);}
    100%{transform:translateX(-875px);}
  }

  @keyframes scrollEcommobile{
    0%{transform:translateX(0);}
    100%{transform:translateX(-1000px);}
  }

}

/* added by samiksha for making logo slider responsive */

/* ==============================================
   PARTNER SLIDER RESPONSIVE (SCALE DOWN)
   ============================================== */

@media (max-width:768px){

  .logo-slider{
    width:90%;        /* shrink container */
    max-width:500px;
  }

  .logo-track img{
    width:125px;      /* smaller logos */
    height:45px;
    object-fit:cover;
  }

}

@media (max-width:480px){

  .logo-slider{
    width:95%;
    max-width:360px;
  }

  .logo-track img{
    width:90px;       /* even smaller */
    height:35px;
  }

  .partners-title{
    font-size:26px;
  }

  .ecommerce-heading{
    font-size:18px;
  }

}

/* added by samiksha to make map image look responsive  */
/* ==============================================
   GLOBAL HEADQUARTERS RESPONSIVE FIX
   ============================================== */

@media (max-width:768px){

  .about-layout-fix .about-us-container{
      flex-direction:column;
      gap:20px;
      text-align:center;
  }

  .about-layout-fix .about-us-container p{
      font-size:15px;
      line-height:1.6;
      padding:0 10px;
  }

  .about-layout-fix .map-image-banner{
      width:100%;
      display:flex;
      justify-content:center;
  }

  .about-layout-fix .map-image{
      width:100%;
      max-width:420px;
      height:auto;
      object-fit:contain;
  }

}



/* added by samiksha to make team images in about us page responsive centre aligned */
@media (max-width:768px){

  .team-container{
    justify-content: center;   /* center cards */
  }

  .team-card{
    margin: 0 auto;            /* ensure card stays centered */
  }

}


/* added by samiksha for case study responsive fix  */

@media (max-width: 768px){

  /* make case study full width */
  .testimonial{
      min-width:100%;
      max-width:100%;
      padding:22px;
  }

  /* better reading width */
  .testimonial p{
      font-size:16px !important;
      line-height:1.7;
  }

  /* section spacing */
  .why-section{
      padding:0 10px;
  }

  /* heading spacing */
  .why-section h2{
      margin-bottom:10px;
  }

}

/* extra small mobile */
@media (max-width:480px){

  .testimonial{
      padding:18px;
  }

  .testimonial p{
      font-size:15px !important;
      line-height:1.65;
  }

}

/* ==============================================
   Added by Samiksha - 12 March 2026
   to fix layout ikssue on solution page 
   ============================================== */
@media (max-width: 768px) {

  /* Added by Samiksha - prevent entire page from overflowing horizontally */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .hero-left {
    min-width: unset !important; /* was 400px which overflows mobile */
    width: 100%;
    max-width: 100%;
  }

  /* Added by Samiksha - hero-contenta was flex-wrap:nowrap causing overflow */
  .hero-contenta {
    flex-wrap: wrap !important; /* override the nowrap */
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  
  .page-container {
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }


  .analytics-subpage {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .header-flex {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .solution-image-wrapper,
  .solution-image {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .benefits-grid,
  .how-it-works {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}


@media (max-width: 480px) {


  .hero-left {
    min-width: unset !important;
    width: 100% !important;
    max-width: 100% !important;
  }

 
  .hero-right {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ===== Move solution card title above image ===== */

.solution-card-link{
  display:flex;
  flex-direction:column;
}

.card-header{
  position: static;     /* remove absolute positioning */
  transform: none;      /* remove translate */
  background: none;     /* remove dark strip */
  padding: 0;
  margin-bottom: 10px;  /* spacing between title and image */
  justify-content: center;
}

.card-title{
  text-align:center;
}

/* Fix link underline and keep card layout unchanged */
.solution-card-link{
  text-decoration: none;
}

.solution-card{
  width: 100%;
  aspect-ratio: 4/5;
}

.card-header{
  width: 100%;
}


/* 
added for solution banner in home page */
.solution-banner-img{
  width:100%;
  height:auto;
  display:block;
}


/* aaded by samiksha */
.solution-heading{
    text-align: center;
     /*color: white;        change if needed */
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* for solution page  cx ace layout fix added by samiksha */
.reverse-layout {
    flex-direction: row-reverse;
}

/*  added by samiksha  for making difference section responsive on creative content and analytics*/
.difference .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}
.difference .grid .difference-item:nth-child(4) {
    grid-column: 2 / 3;
}

@media (max-width: 768px) {

    .difference > .grid {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .difference > .grid .difference-item {
        max-width: 100%;
    }

    .difference > .grid .difference-item:nth-child(4) {
        grid-column: auto;
    }
}


/* book a demo in mobile view added by samiksha */
@media (max-width: 768px) {
    .hero-overlay {
        text-align: center;
    }

    .hero-btn {
        margin: 20px auto;
        display: block;
        width: fit-content;
    }
}



/* 
added by samiksha for new section in home page  */


  * { margin: 0; padding: 0; box-sizing: border-box; }
  #hero {
    width: 100%;
    min-height: 520px;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-family: var(--font-sans);
    border-radius: var(--border-radius-lg);
  }
  .grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(83,74,183,0.12) 1px, transparent 1px),
      linear-gradient(90deg, rgba(83,74,183,0.12) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: gridDrift 20s linear infinite;
  }
  @keyframes gridDrift { from { transform: translateY(0); } to { transform: translateY(48px); } }
  .glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(83,74,183,0.18) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.7} 50%{transform:translate(-50%,-50%) scale(1.2);opacity:1} }
  .content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 700px;
    width: 100%;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AFA9EC;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.3s;
  }
  .headline {
    font-size: clamp(22px, 4vw, 38px);
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.6s;
  }
  .headline span { color: #AFA9EC; }
  .subline {
    font-size: clamp(13px, 2vw, 16px);
    color: rgba(255,255,255,0.45);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.9s;
  }
  @keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

  .audience-track {
    position: relative;
    height: 52px;
    margin-bottom: 2.5rem;
    overflow: hidden;
  }
  .audience-item {
    position: absolute;
    width: 100%;
    font-size: clamp(20px, 3.5vw, 32px);
    font-weight: 500;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    line-height: 1.3;
  }
  .audience-item .we { color: rgba(255,255,255,0.4); font-weight: 400; }
  .audience-item.active { opacity: 1; transform: translateY(0); }
  .audience-item.exit { opacity: 0; transform: translateY(-30px); }

  .pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 1.2s;
  }
  .pill {
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 999px;
    border: 0.5px solid rgba(175,169,236,0.35);
    color: #AFA9EC;
    background: rgba(83,74,183,0.12);
    letter-spacing: 0.3px;
  }

  .cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 1.5s;
  }
  .btn-primary {
    font-size: 14px;
    padding: 10px 24px;
    border-radius: var(--border-radius-md);
    background: #534AB7;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: #7F77DD; transform: scale(1.02); }
  .btn-secondary {
    font-size: 14px;
    padding: 10px 24px;
    border-radius: var(--border-radius-md);
    background: transparent;
    color: #AFA9EC;
    border: 0.5px solid rgba(175,169,236,0.4);
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background 0.2s, transform 0.15s;
  }
  .btn-secondary:hover { background: rgba(83,74,183,0.15); transform: scale(1.02); }

  .progress-bar {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    background: #534AB7;
    width: 0%;
    transition: width linear;
    border-radius: 0 2px 2px 0;
  }
  .dots {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
  }
  .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
  }
  .dot.active { background: #534AB7; transform: scale(1.3); }

  .particles { position: absolute; inset: 0; pointer-events: none; }
  .p { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: rgba(175,169,236,0.5); animation: float linear infinite; }
  @keyframes float { from{transform:translateY(0) translateX(0);opacity:0.6} to{transform:translateY(-520px) translateX(20px);opacity:0} }