.elementor-745 .elementor-element.elementor-element-eef6b80{--display:flex;}.elementor-745 .elementor-element.elementor-element-b027160{--display:flex;}.elementor-745 .elementor-element.elementor-element-9299086{--display:flex;}/* Start custom CSS *//* ============================================
   HIMALAYAN INFINITE CHESS - OPTIMIZED
   ============================================ */

:root {
  /* Brand Colors - Himalayan & Chess Inspired */
  --hic-mountain-deep: #1a365d;
  --hic-mountain-blue: #2c5282;
  --hic-sky: #4299e1;
  --hic-snow: #f7fafc;
  --hic-glacier: #e6f4ff;
  --hic-warmth: #ed8936;
  --hic-success: #48bb78;
  --hic-kindness: #9f7aea;
  
  /* Neutrals */
  --hic-gray-900: #1a202c;
  --hic-gray-800: #2d3748;
  --hic-gray-700: #4a5568;
  --hic-gray-600: #718096;
  --hic-gray-400: #cbd5e0;
  --hic-gray-200: #e2e8f0;
  --hic-gray-100: #f7fafc;
  
  /* Shadows */
  --hic-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --hic-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --hic-shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.12);
  --hic-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
  --hic-shadow-2xl: 0 30px 60px rgba(0, 0, 0, 0.2);
  
  /* Border Radius */
  --hic-radius-md: 0.5rem;
  --hic-radius-lg: 0.75rem;
  --hic-radius-xl: 1rem;
  --hic-radius-2xl: 1.5rem;
}

/* ============================================
   BASE STYLES & RESET
   ============================================ */

.hic-page {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--hic-gray-900);
  line-height: 1.7;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hic-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================
   SECTION SYSTEM
   ============================================ */

.hic-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.hic-light {
  background: linear-gradient(180deg, #fafbfd 0%, #f0f4f8 100%);
  position: relative;
}

.hic-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hic-sky), transparent);
  opacity: 0.4;
}

.hic-dark {
  background: linear-gradient(135deg, var(--hic-mountain-deep) 0%, #243b55 100%);
  color: var(--hic-snow);
  position: relative;
  overflow: hidden;
}

.hic-dark::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(66, 153, 225, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

.hic-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--hic-mountain-deep);
  position: relative;
  padding-bottom: 1rem;
}

.hic-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, var(--hic-warmth), var(--hic-sky));
  border-radius: 3px;
}

.hic-dark h2 {
  color: var(--hic-snow);
}

.hic-section h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  color: var(--hic-mountain-blue);
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.hic-section h3:first-child {
  margin-top: 0;
}

.hic-section p {
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  color: var(--hic-gray-700);
  margin-bottom: 1.25rem;
}

.hic-section p:last-child {
  margin-bottom: 0;
}

.hic-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.hic-section strong {
  font-weight: 700;
  color: var(--hic-mountain-blue);
}

.hic-dark strong {
  color: var(--hic-sky);
  font-weight: 600;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hic-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 2rem 8rem;
  align-items: center;
}

.hic-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
  background: linear-gradient(135deg, var(--hic-mountain-deep) 0%, var(--hic-mountain-blue) 60%, var(--hic-sky) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hic-hero p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.75;
  color: var(--hic-gray-700);
  margin-bottom: 1.5rem;
}

.hic-hero p:last-child {
  margin-bottom: 0;
}

.hic-hero-image {
  position: relative;
  z-index: 1;
}

.hic-hero-image::before {
  content: '';
  position: absolute;
  top: -25px;
  right: -25px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--hic-sky) 0%, var(--hic-kindness) 100%);
  border-radius: var(--hic-radius-2xl);
  z-index: -1;
  opacity: 0.18;
  transform: rotate(2.5deg);
}

.hic-hero-image::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--hic-warmth) 0%, transparent 65%);
  opacity: 0.12;
  z-index: -2;
  filter: blur(50px);
}

.hic-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--hic-radius-2xl);
  box-shadow: var(--hic-shadow-2xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 6px solid white;
  display: block;
}

.hic-hero-image:hover img {
  transform: translateY(-10px) rotate(-1.5deg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */

.hic-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
  margin-top: 2.5rem;
}

.hic-image-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--hic-radius-xl);
  box-shadow: var(--hic-shadow-lg);
  background: var(--hic-gray-100);
}

.hic-image-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--hic-sky) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
  mix-blend-mode: overlay;
}

.hic-image-box:hover::before {
  opacity: 0.15;
}

.hic-image-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   PHOTO CAROUSEL
   ============================================ */

.hic-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--hic-radius-xl);
  box-shadow: var(--hic-shadow-xl);
  background: #1a1a1a;
}

.hic-carousel-container {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  background: #1a1a1a;
}

.hic-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.hic-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hic-carousel-slide img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Navigation Arrows */
.hic-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  color: var(--hic-mountain-deep);
  font-weight: bold;
}

.hic-carousel-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hic-carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.hic-carousel-arrow-prev {
  left: 1.5rem;
}

.hic-carousel-arrow-next {
  right: 1.5rem;
}

/* Dot Indicators */
.hic-carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.hic-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hic-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hic-carousel-dot.active {
  background: white;
  width: 32px;
  border-radius: 6px;
}

/* Caption Overlay */
.hic-carousel-caption {
  position: absolute;
  bottom: 5rem;
  left: 2rem;
  right: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 2rem 2rem 1rem;
  border-radius: var(--hic-radius-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.hic-carousel-slide:hover .hic-carousel-caption {
  opacity: 1;
  transform: translateY(0);
}

.hic-carousel-caption h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: white;
}

.hic-carousel-caption p {
  font-size: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Carousel */
@media (max-width: 768px) {
  .hic-carousel-container {
    height: 450px;
  }
  
  .hic-carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .hic-carousel-arrow-prev {
    left: 1rem;
  }
  
  .hic-carousel-arrow-next {
    right: 1rem;
  }
  
  .hic-carousel-dots {
    bottom: 1rem;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  
  .hic-carousel-dot {
    width: 10px;
    height: 10px;
  }
  
  .hic-carousel-dot.active {
    width: 24px;
  }
  
  .hic-carousel-caption {
    bottom: 4rem;
    left: 1rem;
    right: 1rem;
    padding: 1.5rem 1rem 0.5rem;
  }
  
  .hic-carousel-caption h3 {
    font-size: 1.2rem;
  }
  
  .hic-carousel-caption p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hic-carousel-container {
    height: 350px;
  }
  
  .hic-carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ============================================
   LISTS
   ============================================ */

.hic-section > ul,
.hic-two-column > div > ul {
  list-style: none;
  margin: 1.75rem 0;
  padding: 0;
}

.hic-section > ul > li,
.hic-two-column > div > ul > li {
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: 1.1rem;
  font-size: clamp(1.05rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: var(--hic-gray-700);
}

.hic-section > ul > li::before,
.hic-two-column > div > ul > li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--hic-success) 0%, var(--hic-sky) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--hic-shadow-md);
}

.hic-dark ul li {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   PARTNER CARDS
   ============================================ */

.hic-partner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding: 2.25rem;
  background: white;
  border-radius: var(--hic-radius-xl);
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--hic-gray-200);
  position: relative;
  box-shadow: var(--hic-shadow-sm);
}

.hic-partner:first-of-type {
  margin-top: 3rem;
}

.hic-partner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--hic-sky) 0%, var(--hic-kindness) 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--hic-radius-xl) 0 0 var(--hic-radius-xl);
}

.hic-partner:hover {
  transform: translateX(10px);
  box-shadow: var(--hic-shadow-xl);
  border-color: var(--hic-sky);
}

.hic-partner:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.hic-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  background: linear-gradient(135deg, var(--hic-glacier), var(--hic-snow));
  border-radius: var(--hic-radius-lg);
  border: 2px solid var(--hic-gray-200);
  transition: all 0.3s ease;
  min-height: 150px;
}

.hic-partner:hover .hic-partner-logo {
  background: white;
  border-color: var(--hic-sky);
  box-shadow: var(--hic-shadow-md);
  transform: scale(1.03);
}

.hic-partner-logo img {
  max-width: 100%;
  max-height: 130px;
  width: auto;
  height: auto;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.3s ease;
}

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

.hic-partner h3 {
  margin-top: 0;
  margin-bottom: 0.85rem;
  font-size: 1.5rem;
}

.hic-partner p {
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   IMPACT GRID
   ============================================ */

.hic-impact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
}

.hic-impact li {
  background: white;
  padding: 2.25rem 2rem;
  border-radius: var(--hic-radius-xl);
  border: 2px solid var(--hic-gray-200);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--hic-mountain-blue);
  box-shadow: var(--hic-shadow-sm);
  cursor: default;
}

.hic-impact li::before {
  content: '♔';
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  font-size: 3rem;
  opacity: 0.04;
  transition: all 0.3s ease;
  color: var(--hic-mountain-blue);
}

.hic-impact li:hover {
  transform: translateY(-8px);
  box-shadow: var(--hic-shadow-xl);
  border-color: var(--hic-sky);
  background: linear-gradient(135deg, white 0%, var(--hic-glacier) 100%);
}

.hic-impact li:hover::before {
  opacity: 0.12;
  transform: translateY(-50%) scale(1.15);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hic-hero {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 5rem 2rem 6rem;
  }
  
  .hic-two-column {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hic-partner {
    grid-template-columns: 180px 1fr;
    gap: 2rem;
  }
  
  .hic-section {
    padding: 4.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .hic-section {
    padding: 4rem 1.5rem;
  }
  
  .hic-hero {
    padding: 4rem 1.5rem 5rem;
  }
  
  .hic-section h2::after {
    width: 50px;
    height: 4px;
  }
  
  .hic-partner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.75rem;
    padding: 2rem;
  }
  
  .hic-partner-logo {
    margin: 0 auto;
    max-width: 180px;
  }
  
  .hic-impact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hic-section {
    padding: 3.5rem 1.25rem;
  }
  
  .hic-hero {
    padding: 3.5rem 1.25rem 4rem;
  }
  
  .hic-hero-image::before {
    top: -15px;
    right: -15px;
  }
  
  .hic-hero-image::after {
    width: 180px;
    height: 180px;
  }
  
  .hic-section > ul > li,
  .hic-two-column > div > ul > li {
    padding-left: 2.5rem;
  }
  
  .hic-section > ul > li::before,
  .hic-two-column > div > ul > li::before {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }
  
  .hic-impact li {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.hic-partner:focus-within,
.hic-impact li:focus-within {
  outline: 3px solid var(--hic-sky);
  outline-offset: 3px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .hic-section {
    padding: 2rem 1rem;
  }
  
  .hic-hero {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }
  
  .hic-light,
  .hic-dark {
    background: white !important;
    color: black !important;
  }
  
  .hic-dark h2,
  .hic-dark p,
  .hic-dark strong {
    color: black !important;
  }
}/* End custom CSS */