/* --- Base Section Setup --- */
.su-reseller-section {
  max-width: 1250px;
  margin: 0 auto;
  /* INCREASED TOP PADDING: Changed from 60px to 120px to prevent touching the header */
  padding: 120px 20px 100px; 
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  overflow: hidden;
}

/* Hide SEO H1 */
.seo-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* --- Title Image Styling --- */
.su-title-container {
  text-align: center;
  /* ADDED MARGIN TOP: Pushes the title down just to be extra safe */
  margin-top: 20px; 
  margin-bottom: 60px;
}

.su-title-png {
  width: 750px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
}

/* --- Two Column Layout --- */
.su-b2b-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* =========================================
   LEFT SIDE: Text Content
========================================= */
.su-text-column {
  flex: 1.1;
  max-width: 650px;
}

.su-paragraph {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #475569;
  margin: 0 0 25px 0;
}

.su-paragraph:last-child {
  margin-bottom: 0;
}

/* Focus Box for 200+ Products */
.su-highlight-box {
  background: linear-gradient(90deg, #fffaf8 0%, #ffffff 100%);
  border-left: 5px solid #f26522; /* ScienceUtsav Orange */
  padding: 25px 30px;
  margin: 35px 0;
  border-radius: 0 12px 12px 0;
  box-shadow: 5px 5px 25px rgba(242, 101, 34, 0.04);
}

.su-highlight-box .su-paragraph {
  margin: 0;
  color: #1e293b;
  font-weight: 500;
}

.su-text-accent {
  color: #f26522;
  font-weight: 800;
}

/* =========================================
   RIGHT SIDE: Pure CSS 3D Business Chart
========================================= */
.su-3d-column {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.su-chart-scene {
  perspective: 1200px; /* Activates 3D depth */
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The 3D Isometric Wrapper */
.su-3d-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  transform-style: preserve-3d;
  /* Sets the exact Isometric B2B viewing angle */
  transform: rotateX(-25deg) rotateY(40deg);
  animation: floatChart 6s ease-in-out infinite;
}

/* Hover effect tilts the chart slightly towards the user */
.su-chart-scene:hover .su-3d-wrapper {
  transform: rotateX(-15deg) rotateY(30deg) scale(1.05);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes floatChart {
  0%, 100% { margin-top: 0px; }
  50% { margin-top: -15px; }
}

/* 3D Floor Grid */
.chart-floor {
  position: absolute;
  bottom: 0; left: 0;
  width: 300px; height: 300px;
  background:
    linear-gradient(rgba(59, 130, 246, 0.2) 2px, transparent 2px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.2) 2px, transparent 2px);
  background-size: 60px 60px;
  transform: rotateX(90deg) translateZ(-1px);
  transform-origin: bottom;
  box-shadow: inset 0 0 40px rgba(255,255,255,1);
  opacity: 0.6;
}

/* Individual 3D Bars */
.chart-bar {
  position: absolute;
  bottom: 0;
  width: 60px;
  transform-style: preserve-3d;
}

/* Positioning the bars diagonally on the grid */
.bar-1 { height: 100px; left: 20px; transform: translateZ(20px); z-index: 3;}
.bar-2 { height: 180px; left: 100px; transform: translateZ(-40px); z-index: 2;}
.bar-3 { height: 280px; left: 180px; transform: translateZ(-100px); z-index: 1;}

/* Setting up the 3 visible faces for each bar */
.face {
  position: absolute;
  bottom: 0; width: 100%; height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Face Math */
.front { transform: translateZ(30px); }
.right { transform: rotateY(90deg) translateZ(30px); }
.top {
  height: 60px; bottom: 100%;
  transform: rotateX(90deg); transform-origin: bottom;
  display: flex; align-items: center; justify-content: center;
}

.top .icon {
  font-size: 1.8rem;
  transform: rotateZ(-40deg); /* Counter-rotates icon so it faces the screen naturally */
}

/* Colors & Glassmorphism for the Bars */
/* Bar 1 (Blue/Foundation) */
.bar-1 .front { background: rgba(59, 130, 246, 0.6); backdrop-filter: blur(4px); }
.bar-1 .right { background: rgba(37, 99, 235, 0.8); }
.bar-1 .top   { background: rgba(96, 165, 250, 0.9); }

/* Bar 2 (Dark Orange/Tech) */
.bar-2 .front { background: rgba(217, 81, 17, 0.6); backdrop-filter: blur(4px); }
.bar-2 .right { background: rgba(194, 65, 12, 0.8); }
.bar-2 .top   { background: rgba(249, 115, 22, 0.9); }

/* Bar 3 (Bright Orange/Growth) */
.bar-3 .front { background: rgba(242, 101, 34, 0.7); backdrop-filter: blur(4px); box-shadow: 0 0 30px rgba(242, 101, 34, 0.4); }
.bar-3 .right { background: rgba(220, 80, 15, 0.9); }
.bar-3 .top   { background: rgba(255, 140, 70, 0.9); }

/* --- Anti-Skewed 3D Floating Labels --- */
.b2b-label {
  position: absolute;
  top: -45px;
  left: 30px;
  background: #ffffff;
  color: #1e293b;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 1px solid #e2e8f0;
  /* Reverses the Isometric view so text remains flat & readable to the user */
  transform: rotateY(-40deg) rotateX(25deg) translateZ(20px);
  pointer-events: none;
}

.label-highlight {
  background: #f26522;
  color: #ffffff;
  border: none;
  font-size: 0.95rem;
  top: -55px;
  box-shadow: 0 8px 20px rgba(242, 101, 34, 0.3);
}

/* --- Mobile Responsiveness --- */
@media screen and (max-width: 992px) {
  .su-b2b-layout {
    flex-direction: column;
    gap: 20px;
  }

  .su-text-column {
    max-width: 100%;
  }

  .su-3d-column {
    margin-top: 40px;
  }

  .su-chart-scene {
    height: 350px;
  }

  .su-3d-wrapper {
    transform: scale(0.8) rotateX(-25deg) rotateY(40deg);
  }
}



    /* --- Base Section Setup --- */
.su-why-partner-section {
  max-width: 1250px;
  margin: 0 auto;
  padding: 10px 20px 100px; 
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
}

.seo-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.su-title-container {
  text-align: center;
  margin-bottom: 70px;
}

.su-title-png {
  width: 750px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.06));
}

/* --- Grid Layout --- */
.su-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  align-items: stretch;
}

.su-partner-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-top: 5px solid #f26522;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.su-partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(242, 101, 34, 0.08);
}

/* =========================================
   PURE CSS 3D ICONS
========================================= */
.su-3d-icon-wrapper {
  width: 100%;
  height: 90px;
  margin-bottom: 25px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  /* Slightly off-center to left to align with text */
  justify-content: flex-start; 
  padding-left: 10px;
}

.su-3d-scene {
  width: 60px;
  height: 60px;
  transform-style: preserve-3d;
  /* Isometric viewing angle */
  transform: rotateX(-30deg) rotateY(45deg);
  animation: iconFloat 4s ease-in-out infinite;
}

/* Stagger animation timing so they don't bounce identically */
.su-partner-card:nth-child(2) .su-3d-scene { animation-delay: 0.5s; }
.su-partner-card:nth-child(3) .su-3d-scene { animation-delay: 1s; }

@keyframes iconFloat {
  0%, 100% { transform: rotateX(-30deg) rotateY(45deg) translateY(0); }
  50% { transform: rotateX(-30deg) rotateY(45deg) translateY(-12px); }
}

/* --- Icon 1: 3D STEM Box --- */
.su-3d-cube {
  position: relative;
  width: 50px;
  height: 50px;
  transform-style: preserve-3d;
}
.cube-face {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.4);
}
.cube-top {
  transform: rotateX(90deg) translateZ(25px);
  background: rgba(249, 115, 22, 0.9); /* Bright Orange */
}
.cube-front {
  transform: translateZ(25px);
  background: rgba(217, 81, 17, 0.8); /* Mid Orange */
  backdrop-filter: blur(4px);
}
.cube-right {
  transform: rotateY(90deg) translateZ(25px);
  background: rgba(194, 65, 12, 0.9); /* Dark Orange */
}

/* --- Icon 2: 3D Tech Layers (LMS) --- */
.su-3d-layers {
  position: relative;
  width: 55px;
  height: 55px;
  transform-style: preserve-3d;
  transform: rotateZ(-15deg);
}
.tech-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 2px solid #3b82f6;
  background: rgba(59, 130, 246, 0.2);
  box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.5);
  backdrop-filter: blur(2px);
}
.layer-1 { transform: translateZ(-15px); opacity: 0.3; }
.layer-2 { transform: translateZ(5px); opacity: 0.7; }
.layer-3 { transform: translateZ(25px); background: rgba(59, 130, 246, 0.6); border-color: #60a5fa;}

/* --- Icon 3: Growing Podium/Target --- */
.su-3d-podium {
  position: relative;
  width: 60px;
  height: 60px;
  transform-style: preserve-3d;
}
.podium-step {
  position: absolute;
  border-radius: 50%; /* Makes them circles/discs */
  border: 1px solid rgba(255,255,255,0.5);
}
.step-1 {
  width: 60px; height: 60px;
  transform: translateZ(-10px);
  background: rgba(16, 185, 129, 0.4); /* Green base */
}
.step-2 {
  width: 40px; height: 40px;
  top: 10px; left: 10px;
  transform: translateZ(10px);
  background: rgba(16, 185, 129, 0.7);
}
.step-3 {
  width: 20px; height: 20px;
  top: 20px; left: 20px;
  transform: translateZ(30px);
  background: #10b981; /* Solid glowing green top */
  box-shadow: 0 0 20px #10b981;
}


/* =========================================
   TEXT CONTENT STYLING
========================================= */
.su-card-title {
  font-size: 1.35rem;
  color: #1e293b;
  margin: 0 0 20px 0;
  font-weight: 800;
  line-height: 1.3;
}

/* Main List Items */
.su-main-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.su-main-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.6;
  font-weight: 500;
}

/* Custom Orange Checkmark */
.su-main-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f26522;
  font-size: 1.1rem;
  font-weight: 900;
}

/* Sub-List Items */
.su-sub-list {
  list-style: none;
  padding-left: 30px;
  margin: -5px 0 20px 0;
  border-left: 2px dashed #cbd5e1;
  margin-left: 10px;
}

.su-sub-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
}

/* Custom Blue Arrow */
.su-sub-list li::before {
  content: "➝";
  position: absolute;
  left: 0;
  top: 0px;
  color: #3b82f6;
  font-size: 1rem;
}

/* --- Mobile Responsiveness --- */
@media screen and (max-width: 992px) {
  .su-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .su-partner-grid {
    grid-template-columns: 1fr;
  }
  
  .su-why-partner-section {
    padding: 60px 20px;
  }
  
  .su-partner-card {
    padding: 30px 20px;
  }
}







    /* --- Section Base --- */
.su-who-services-section {
  background-color: #f8fafc;
  padding: 100px 20px 120px;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden; 
}

.su-title-container {
  text-align: center;
  margin-bottom: 70px;
}

.seo-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* Title Load Animation */
.su-title-png {
  width: 750px; 
  max-width: 100%;
  height: auto;
  opacity: 1; /* FIXED: Now visible */
  visibility: visible;
  animation: fadeDownTitle 1s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

@keyframes fadeDownTitle {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- Grid Layout --- */
.su-ws-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  perspective: 1500px;
}

/* =========================================
   THE SPOTLIGHT "BLUR" MAGIC (Pure CSS)
========================================= */
/* When the GRID is hovered, dim ALL cards slightly */
.su-ws-grid:hover .su-ws-card {
  opacity: 0.5;
  filter: blur(3px);
  transform: scale(0.95);
}

/* BUT keep the SPECIFIC card being hovered fully bright and popped out */
.su-ws-grid .su-ws-card:hover {
  opacity: 1;
  filter: blur(0);
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
  z-index: 10;
}

/* --- Premium Card UI --- */
.su-ws-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  opacity: 1; /* FIXED: Now visible */
  visibility: visible;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); /* Super smooth transitions */
  
  /* Pure CSS Staggered Entry Animation */
  animation: cardPopUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

/* Adds a colored glowing top lip to alternating cards */
.su-ws-card:nth-child(odd) { border-top: 4px solid #f26522; }
.su-ws-card:nth-child(even) { border-top: 4px solid #3b82f6; }

/* Animation Stagger Delays (Creates cascade effect on load) */
.su-ws-card:nth-child(1) { animation-delay: 0.1s; }
.su-ws-card:nth-child(2) { animation-delay: 0.2s; }
.su-ws-card:nth-child(3) { animation-delay: 0.3s; }
.su-ws-card:nth-child(4) { animation-delay: 0.4s; }
.su-ws-card:nth-child(5) { animation-delay: 0.5s; }
.su-ws-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardPopUp {
  0% { opacity: 0; transform: translateY(50px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Icon Design --- */
.su-ws-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.5s ease;
}

.su-ws-card:hover .su-ws-icon-wrapper {
  transform: translateZ(30px) scale(1.1); /* Icon pops out in 3D on hover */
}

.icon-orange { background: linear-gradient(135deg, #fffaf8 0%, #ffedd5 100%); color: #f26522; border: 1px solid #fed7aa; }
.icon-blue { background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%); color: #3b82f6; border: 1px solid #bfdbfe; }

/* --- Typography --- */
.su-ws-title {
  font-size: 1.4rem;
  color: #0f172a;
  font-weight: 800;
  margin: 0 0 10px 0;
  transition: transform 0.5s ease;
}

.su-ws-intro {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0 0 20px 0;
  line-height: 1.6;
  font-weight: 500;
  transition: transform 0.5s ease;
}

/* Make text float up on hover */
.su-ws-card:hover .su-ws-title { transform: translateZ(20px); color: #000; }
.su-ws-card:hover .su-ws-intro { transform: translateZ(10px); color: #334155; }

/* --- Lists & Hover Micro-Interactions --- */
.su-ws-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.su-ws-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
  font-weight: 500;
  transition: all 0.3s ease;
}

.su-ws-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.icon-orange ~ .su-ws-list li::before { color: #f26522; }
.icon-blue ~ .su-ws-list li::before { color: #3b82f6; }

/* Magic List Hover Cascade */
.su-ws-card:hover .su-ws-list li {
  transform: translateX(8px); /* List items slide right */
  color: #0f172a;
}
.su-ws-card:hover .su-ws-list li::before {
  transform: scale(1.2); /* Bullets grow slightly */
}

/* Stagger the slide-in of bullet points on hover */
.su-ws-card:hover .su-ws-list li:nth-child(1) { transition-delay: 0.05s; }
.su-ws-card:hover .su-ws-list li:nth-child(2) { transition-delay: 0.1s; }
.su-ws-card:hover .su-ws-list li:nth-child(3) { transition-delay: 0.15s; }
.su-ws-card:hover .su-ws-list li:nth-child(4) { transition-delay: 0.2s; }

/* --- Responsive --- */
@media screen and (max-width: 1024px) { 
  .su-ws-grid { grid-template-columns: repeat(2, 1fr); } 
}
@media screen and (max-width: 768px) { 
  .su-ws-grid { grid-template-columns: 1fr; } 
  
  /* Disable Blur effect on mobile to prevent touching issues */
  .su-ws-grid:hover .su-ws-card {
    opacity: 1; filter: none; transform: none;
  }
  .su-ws-grid .su-ws-card:hover {
    transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
}






