/* -------------------------------------------

Name:       Okai
Version:    1.0
Author:	    bslthemes
Website:    https://bslthemes.com/
Developer:	millerDigitalDesign (https://themeforest.net/user/millerdigitaldesign/)

------------------------------------------- */
/*--------------------------------------------

1. common
    - main
    - settings
    - typography
    - cursor
    - scrollbar
    - breadcrumbs
    - buttons
    - link
    - spaces
2. banners
3. components
    - top panel
    - menu button
    - menu
    - social
    - portfolio
    - fullscreen slider
    - counters
    - call to action
    - blog
    - comments
    - instagram
    - reviews
    - slider
    - about
    - iconbox
    - brands
    - form
    - project
    - services
    - accordion
    - video
    - price
    - team
    - store
    - tabs
    - quantity
    - footer

--------------------------------------------*/
/* -------------------------------------------

fonts

------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
/* -------------------------------------------

CUP Color Scheme Variables

------------------------------------------- */
:root {
  --cup-core: #ffffff; /* CUP CORE - White */
  --cup-canvas: #ffffff; /* CUP CANVAS - White */
  --cup-gray-100: #f8f9fa; /* Light Gray */
  --cup-gray-200: #e9ecef; /* Medium Gray */
  --cup-gray-300: #dee2e6; /* Border Gray */
  --cup-gray-500: #ffffff; /* Text White */
  --cup-gray-800: #ffffff; /* Text White */
  --cup-accent: #000066; /* Modern Blue Accent */
  --cup-success: #FF914D; /* Success Green */
  --cup-warning: #FF914D; /* Warning Yellow */
  --cup-danger: #FF3131; /* Danger Red */

  /* Sans-Serif Font System */
  --font-primary: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-secondary: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", "Courier New",
    monospace;
}

/* Modern Gradient */
.cup-modern-gradient {
  background: linear-gradient(135deg, #0a0b0f 0%, #1a1d29 100%);
}

/* Modern Color Utility Classes */
.cup-core-bg {
  background-color: var(--cup-core);
}
.cup-canvas-bg {
  background-color: #0a0b0f;
} /* Dark background */
.cup-gray-100-bg {
  background-color: #0a0b0f;
} /* Dark background */
.cup-gray-200-bg {
  background-color: #1a1d29;
} /* Dark background */
.cup-gray-300-bg {
  background-color: var(--cup-gray-300);
}
.cup-accent-bg {
  background-color: var(--cup-accent);
}
.cup-success-bg {
  background-color: var(--cup-success);
}
.cup-warning-bg {
  background-color: var(--cup-warning);
}
.cup-danger-bg {
  background-color: var(--cup-danger);
}

.cup-core-text {
  color: var(--cup-core);
}
.cup-canvas-text {
  color: var(--cup-core);
  max-width: 80%;
}
.cup-gray-500-text {
  color: var(--cup-gray-500);
}
.cup-gray-800-text {
  color: var(--cup-gray-800);
}
.cup-accent-text {
  color: var(--cup-accent);
}
.cup-success-text {
  color: var(--cup-success);
}
.cup-warning-text {
  color: var(--cup-warning);
}
.cup-danger-text {
  color: var(--cup-danger);
}

/* Modern Section Styles */

.head-text{
  font-weight: 700;
  font-size: 50px;
}

.cup-modern-section {
  background-color: #0a0b0f; /* Dark background for white text */
  color: var(--cup-core);
  border-radius: 12px;
  padding: 40px;
}

.cup-accent-section {
  background-color: var(--cup-accent);
  color: var(--cup-canvas);
  border-radius: 12px;
  padding: 40px;
}

.cup-card-modern {
  background-color: #0a0b0f; /* Dark background for white text */
  border: 1px solid var(--cup-gray-200);
  border-radius: 12px;
  color: var(--cup-core);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cup-charge-highlight {
  background-color: var(--cup-charge-red);
  color: var(--cup-canvas);
  padding: 4px 8px;
  border-radius: 4px;
}

.cup-connect-nav {
  background-color: var(--cup-connect);
  border-bottom: 2px solid var(--cup-charge-orange);
}

/* Portfolio and Card Enhancements */
.mil-portfolio-item:hover {
  box-shadow: 0 10px 30px rgba(255, 49, 49, 0.2); /* CUP CHARGE Red shadow */
}

.mil-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mil-card:hover {
  border-color: var(--cup-charge-orange); /* CUP CHARGE Orange border */
  transform: translateY(-5px);
}

.mil-accent-border {
  border-left: 4px solid var(--cup-charge-red); /* CUP CHARGE Red accent */
}

.mil-connect-accent {
  background: linear-gradient(
    135deg,
    var(--cup-connect) 0%,
    rgba(0, 0, 102, 0.8) 100%
  );
}

/* Enhanced Section Styling */
.mil-card {
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mil-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mil-p-60 {
  padding: 60px;
}

@media (max-width: 768px) {
  .cup-canvas-text {
    max-width: 100%;
  }
  .mil-p-60 {
    padding: 40px 30px;
  }

  .head-text {
    font-size: 32px;
    max-width:90%;


}

}

/* Hero Section Enhancements */
.mil-banner h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mil-banner .mil-text {
  opacity: 0.9;
  line-height: 1.6;
}

/* Button Enhancements */
.mil-btn {
  transition: all 0.3s ease;
}

.mil-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 49, 49, 0.3);
}

.mil-btn-border:hover {
  background-color: var(--cup-charge-orange);
  border-color: var(--cup-charge-orange);
  color: var(--cup-core);
  box-shadow: 0 8px 25px rgba(255, 145, 77, 0.4);
  transform: translateY(-2px);
}

/* Icon Styling */
.mil-btn i {
  margin-right: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mil-btn:hover i {
  transform: scale(1.1);
}

.mil-suptitle i {
  /* margin-right: 8px; */
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
}

.mil-card h3 i,
.mil-card h4 i {
  margin-right: 12px;
  font-size: 20px;
}

.mil-footer-list i {
  margin-right: 10px;
  font-size: 14px;
  width: 20px;
  text-align: center;
}

/* Icon animations */
.mil-suptitle i,
.mil-card h3 i,
.mil-card h4 i {
  transition: all 0.3s ease;
}

.mil-suptitle:hover i,
.mil-card:hover h3 i,
.mil-card:hover h4 i {
  transform: scale(1.1);
  color: var(--cup-charge-orange);
}

/* CUP CHARGE Side Gradients */
.mil-page-wrapper::before,
.mil-page-wrapper::after {
  content: "";
  position: fixed;
  top: 0;
  width: 20%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

.mil-page-wrapper::before {
  left: 0;
  background: linear-gradient(
    90deg,
    var(--cup-charge-red) 0%,
    rgba(255, 49, 49, 0.3) 50%,
    transparent 100%
  );
}

.mil-page-wrapper::after {
  right: 0;
  background: linear-gradient(
    270deg,
    var(--cup-charge-red) 0%,
    rgba(255, 49, 49, 0.3) 50%,
    transparent 100%
  );
}

/* Ensure content is above gradients */
.mil-content {
  position: relative;
  z-index: 2;
}

/* Alternative gradient styles */
.cup-gradient-left {
  position: fixed;
  left: 0;
  top: 0;
  width: 15%;
  height: 100vh;
  background: linear-gradient(
    90deg,
    var(--cup-charge-red) 0%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.cup-gradient-right {
  position: fixed;
  right: 0;
  top: 0;
  width: 15%;
  height: 100vh;
  background: linear-gradient(
    270deg,
    var(--cup-charge-red) 0%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Clean white background - no gradients */
.cup-gradient-enhanced {
  background-color: #000000; /* Dark background for white text */
  color: var(--cup-core);
}

.cup-gradient-enhanced::before,
.cup-gradient-enhanced::after {
  display: none;
}

/* Top Panel Navigation Styles */
.mil-top-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 20px;
}

.mil-top-nav-link {
  color: var(--cup-core);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  color: #000000; /* CUP CORE - Black */
  gap: 6px;
}

.mil-top-nav-link:hover {
  color: var(--cup-accent);
  text-decoration: underline;
}

.mil-top-nav-link.active {
  color: var(--cup-accent);
  color: red; /* CUP CORE - Black */ /* Dark background for white text */
}

.mil-top-nav-link i {
  font-size: 12px;
  display: inline-block;
  width: 16px;
  text-align: center;
}

/* Cup Blue Accent Sections - No Full Screen Borders */
.cup-blue-section {
  background: transparent;
  color: var(--cup-core);
  position: relative;
}

.cup-blue-section .mil-suptitle {
  color: var(--cup-accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cup-blue-section h2,
.cup-blue-section h3,
.cup-blue-section h4 {
  color: var(--cup-core);
}

.cup-blue-section .mil-text {
  color: #ffffff;
  line-height: 1.8;
}

/* Section */
.cup-mission-vision-section {
  background: #000;
}
.cup-mission-vision-section .row {
  margin-left: -8px;
  margin-right: -8px;
}
.cup-mission-vision-section .col-lg-6 {
  padding-left: 8px;
  padding-right: 8px;
}

/* Button */
.cup-waitlist-btn {
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  /* padding: 16px 40px; */
  width: 253.67px;
  height: 61.95px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  /* letter-spacing: 2px; */
  text-decoration: none;
  transition: 0.3s ease;
}
.cup-waitlist-btn:hover {
  background: linear-gradient(90deg, #FF3131 0%, #FF914D 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  border: none;
}

/* Cards */
.cup-svg-card-container {
  position: relative;
  width: 100%;
  height: 560px;
  margin-bottom: 30px;
}
.cup-svg-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Content */
.cup-card-content-mission {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  color: #fff;
  text-align: center;
  pointer-events: none;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}

.cup-card-content-vision {
  position: absolute;
  top: 38%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  color: #fff;
  text-align: center;
  pointer-events: none;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 0;
}
.cup-card-content-mission h3,
.cup-card-content-vision h3 {
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10%;
}
.center-p {
  max-width: 82%;
  line-height: 1.2;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .cup-svg-card-container {
    height: 360px;
  }
  .cup-card-content {
    padding: 48px 28px;
  }
  .cup-card-content h3 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {






  .cup-svg-card-container {
    height: 320px;
    text-align: center;
  }
  .cup-svg-card-mobile-margin {
    margin-top: -150px;
  }
  .cup-card-content h3 {
    font-size: 28px;
    letter-spacing: 2px;
  }
  .center-p {
    max-width: 92%;
    font-size: 16px;
  }
  .cup-waitlist-btn {
    /* padding: 14px 36px; */
    font-size: 16px;
    width: 223.67px;
    height: 55.95px;
  }
}

/* Advanced Card Design with Cup Blue Accents (for other sections) */
.cup-advanced-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.08),
    0 5px 15px rgba(0, 123, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid var(--cup-gray-200);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
  margin-bottom: 20px;
}

.cup-advanced-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cup-accent) 0%, #0056b3 100%);
  border-radius: 24px 24px 0 0;
}

.cup-advanced-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 123, 255, 0.12),
    0 8px 20px rgba(0, 123, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: var(--cup-accent);
}

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

/* Cards in dark sections */
.cup-blue-section .cup-advanced-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.2);
}

.cup-blue-section .cup-advanced-card::before {
  background: linear-gradient(90deg, #FF3131 0%, #FF914D 100%);
}

.cup-blue-section .cup-advanced-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 49, 49, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Cards in regular dark sections */
.cup-gradient-enhanced .cup-advanced-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.2);
}

.cup-gradient-enhanced .cup-advanced-card::before {
  background: linear-gradient(90deg, #FF3131 0%, #FF914D 100%);
}

.cup-gradient-enhanced .cup-advanced-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 49, 49, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Modern Button Enhancements */
.cup-btn-modern {
  background: linear-gradient(135deg, var(--cup-accent) 0%, #0056b3 100%);
  color: var(--cup-canvas);
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* box-shadow: 
    0 8px 20px rgba(0, 123, 255, 0.25),
    0 2px 8px rgba(0, 123, 255, 0.15); */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cup-btn-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cup-btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.35),
    0 4px 12px rgba(0, 123, 255, 0.25);
}

.cup-btn-modern:hover::before {
  left: 100%;
}

/* Alternative Button Style for Border Buttons */
.cup-btn-modern.mil-btn-border {
  background: transparent;
  color: var(--cup-accent);
  border: 2px solid var(--cup-accent);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1),
    0 1px 5px rgba(0, 123, 255, 0.05);
}

.cup-btn-modern.mil-btn-border:hover {
  background: var(--cup-accent);
  color: var(--cup-canvas);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2),
    0 2px 8px rgba(0, 123, 255, 0.1);
}

/* Glass Morphism Effect */
.cup-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Light Gradient Background - Only for Cards */
.cup-light-gradient {
  background: transparent;
  position: relative;
}

/* Ensure Font Awesome icons are visible */

/* Specific fixes for hero section icons */
.mil-btn i,
.mil-buttons-frame i,
.hero-buttons i {
  /* font-family: "Font Awesome 5 Free" !important; */
  font-weight: 900 !important;
  /* font-style: 400 !important; */
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin-right: 8px;
  font-size: 14px;
  color: inherit;
  width: 16px;
  /* border: 1px solid #ffffff; */
}

/* Fix specific icons that are commonly used */
.fa-eye,
.fa-handshake,
.fa-arrow-right,
.fa-arrow-left,
.fa-chevron-right,
.fa-chevron-left,
.fa-chevron-up,
.fa-chevron-down {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-style: 400 !important;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Fallback content for specific icons */
.fa-eye:before {
  content: "\f06e";
}
.fa-handshake:before {
  content: "\f2b5";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}

/* Fix button icons specifically */
.mil-btn i:before {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
}

/* Force visibility for all button icons */
.mil-btn i,
.mil-button i,
.mil-cta i,
.mil-link i {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-style: 400 !important;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: inherit !important;
  margin-right: 8px;
}

/* Specific button icon fixes */
.mil-btn i.fa-eye,
.mil-btn i.fa-handshake,
.mil-btn i.fa-arrow-right,
.mil-btn i.fa-arrow-left {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-style: 400 !important;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: inherit !important;
  margin-right: 8px;
  font-size: 14px;
}

/* Force button icon content */
.mil-btn i.fa-eye:before {
  content: "\f06e";
}
.mil-btn i.fa-handshake:before {
  content: "\f2b5";
}
.mil-btn i.fa-arrow-right:before {
  content: "\f061";
}
.mil-btn i.fa-arrow-left:before {
  content: "\f060";
}

/* Fix all specific icons found in index.html */
.fa-users,
.fa-play-circle,
.fa-bullseye,
.fa-lightbulb,
.fa-video,
.fa-globe,
.fa-star,
.fa-download,
.fa-envelope,
.fa-phone,
.fa-chevron-up {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-style: 400 !important;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Fallback content for all specific icons */
.fa-users:before {
  content: "\f0c0";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-lightbulb:before {
  content: "\f0eb";
}
.fa-video:before {
  content: "\f03d";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-star:before {
  content: "\f005";
}
.fa-download:before {
  content: "\f019";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-phone:before {
  content: "\f095";
}
.fa-chevron-up:before {
  content: "\f077";
}

/* Fix icons in section titles and headings */
.mil-suptitle i,
.mil-fs32 i,
.mil-fs24 i,
h3 i,
h4 i {
  /* font-family: "Font Awesome 5 Free" !important; */
  font-weight: 900 !important;
  font-style: 400 !important;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin-right: 8px;
  font-size: inherit;
}

/* Fix icons in social media */
.mil-social i {
  font-family: "Font Awesome 5 Brands" !important;
  font-weight: 500 !important;
  font-style: 400 !important;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Fix specific brand icons */
.fa-facebook-f:before {
  content: "\f39e";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-instagram:before {
  content: "\f16d";
}

/* Fix icons in contact info */
.mil-text i {
  font-weight: 900 !important;
  margin-right: 8px;
}

/* Fix icons in back to top link */
.mil-group-text i {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-style: 400 !important;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin-right: 4px;
}

.cup-nav-dropdown {
  position: relative;
}

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

.cup-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0a0b0f; /* Dark background for white text */
  border: 1px solid var(--cup-gray-200);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 8px 0 0 0;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  backdrop-filter: blur(10px);
}

.cup-dropdown-link {
  color: var(--cup-core);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.cup-dropdown-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: var(--cup-accent);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cup-dropdown-link:hover {
  color: var(--cup-accent);
  background-color: #0a0b0f; /* Dark background for white text */
  padding-left: 24px;
}

.cup-dropdown-link:hover::before {
  transform: scaleY(1);
}

/* Modern Social Links */
.cup-social-link {
  color: var(--cup-gray-500);
  text-decoration: none;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #0a0b0f; /* Dark background for white text */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 8px;
}

.cup-social-link:hover {
  color: var(--cup-canvas);
  background-color: var(--cup-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Modern Button Styles */
.cup-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cup-btn-primary {
  background-color: var(--cup-accent);
  color: var(--cup-canvas);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.cup-btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.cup-btn-outline {
  background-color: transparent;
  color: var(--cup-accent);
  border: 2px solid var(--cup-accent);
}

.cup-btn-outline:hover {
  background-color: var(--cup-accent);
  color: var(--cup-canvas);
  transform: translateY(-2px);
}

/* Modern Card Styles */
.cup-card {
  background-color: #0a0b0f; /* Dark background for white text */
  border: 1px solid var(--cup-gray-200);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--cup-accent);
}

/* Modern Utility Classes */
.cup-text-center {
  text-align: center;
}
.cup-text-left {
  text-align: left;
}
.cup-text-right {
  text-align: right;
}

.cup-flex {
  display: flex;
}
.cup-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cup-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cup-flex-column {
  display: flex;
  flex-direction: column;
}

.cup-gap-1 {
  gap: 8px;
}
.cup-gap-2 {
  gap: 16px;
}
.cup-gap-3 {
  gap: 24px;
}
.cup-gap-4 {
  gap: 32px;
}

.cup-p-1 {
  padding: 8px;
}
.cup-p-2 {
  padding: 16px;
}
.cup-p-3 {
  padding: 24px;
}
.cup-p-4 {
  padding: 32px;
}

.cup-m-1 {
  margin: 8px;
}
.cup-m-2 {
  margin: 16px;
}
.cup-m-3 {
  margin: 24px;
}
.cup-m-4 {
  margin: 32px;
}

.cup-rounded {
  border-radius: 8px;
}
.cup-rounded-lg {
  border-radius: 12px;
}
.cup-rounded-xl {
  border-radius: 16px;
}
.cup-rounded-full {
  border-radius: 50%;
}

.cup-shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.cup-shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.cup-shadow-lg {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Icon Styles */
.cup-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 16px;
}

.cup-icon-sm {
  width: 16px;
  height: 16px;
  font-size: 12px;
}

.cup-icon-lg {
  width: 32px;
  height: 32px;
  font-size: 20px;
}

/* Responsive top navigation */
@media (max-width: 768px) {
  .mil-top-nav {
    display: none; /* Hide on mobile, use hamburger menu instead */
  }

  .mil-top-panel .col-6.mil-jce {
    justify-content: flex-end;
  }

  /* Hide phone number on mobile to make room */
  .mil-phone {
    display: none;
  }

  /* Ensure menu button is visible on mobile */
  .mil-menu-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1000;
    margin-left: 0;
    margin-right: 0;
    padding: 18px 14px;
    min-width: 44px;
    min-height: 44px;
  }

  .mil-menu-btn.mil-c-gone {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Ensure buttons frame is visible and properly positioned */
  .mil-buttons-frame {
    display: flex !important;
    visibility: visible !important;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .mil-top-nav {
    gap: 10px;
  }

  .mil-top-nav-link {
    font-size: 12px;
    padding: 4px 8px;
  }

  .mil-top-nav-link i {
    font-size: 10px;
  }
}

/* Responsive gradient adjustments */
@media (max-width: 1200px) {
  .mil-page-wrapper::before,
  .mil-page-wrapper::after {
    width: 12%;
  }
}

@media (max-width: 768px) {
  .mil-page-wrapper::before,
  .mil-page-wrapper::after {
    width: 8%;
    opacity: 0.6;
  }
}

@media (max-width: 480px) {
  .mil-page-wrapper::before,
  .mil-page-wrapper::after {
    width: 5%;
    opacity: 0.4;
  }
}

/* Typography System - Sans-Serif Fonts */
.font-primary {
  font-family: var(--font-primary);
}
.font-secondary {
  font-family: var(--font-secondary);
}
.font-mono {
  font-family: var(--font-mono);
}

/* Font Weight Utilities */
.font-thin {
  font-weight: 100;
}
.font-light {
  font-weight: 300;
}
.font-400 {
  font-weight: 500;
}
.font-medium {
  font-weight: 500;
}
.font-semi700 {
  font-weight: 600;
}
.font-700 {
  font-weight: 700;
}
.font-extra700 {
  font-weight: 800;
}
.font-black {
  font-weight: 900;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* .mil-text {
  font-family: var(--font-primary);
  line-height: 1.1;
  font-weight: 500;
} */



/* Global Sans-Serif Typography Reset */
*,
*::before,
*::after {
  font-family: var(--font-primary);
}

/* Form Elements */
input,
textarea,
select,
button {
  font-family: var(--font-primary);
}

/* Code and Pre Elements */
code,
pre,
kbd,
samp {
  font-family: var(--font-mono);
}

/* Enhanced Typography Scale */
.mil-fs12 {
  font-size: 12px;
}
.mil-fs14 {
  font-size: 14px;
}
.mil-fs16 {
  font-size: 16px;
}
.mil-fs18 {
  font-size: 18px;
}
.mil-fs20 {
  font-size: 20px;
}
.mil-fs24 {
  font-size: 24px;
}
.mil-fs28 {
  font-size: 28px;
}
.mil-fs30 {
  font-size: 30px;

}

.line-height-1 {
  line-height: 1.2;
}
.mil-fs32 {
  font-size: 32px;
}
.mil-fs36 {
  font-size: 36px;
}
.mil-fs42 {
  font-size: 42px;
}
.mil-fs48 {
  font-size: 48px;
}
.mil-fs50 {
  font-size: 50px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .mil-fs50 {
    font-size: 32px;
  }
}
.mil-fs56 {
  font-size: 56px;
}
.mil-fs64 {
  font-size: 64px;
}
.mil-fs68 {
  font-size: 68px;
}

/* -------------------------------------------

colors

------------------------------------------- */
/* -------------------------------------------

transition

------------------------------------------- */
/* -------------------------------------------

main

------------------------------------------- */
*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: #0a0b0f; /* Dark background for white text */ /* CUP CANVAS - White */
  font-family: var(--font-primary); /* Barlow font system */
  color: var(--cup-core); /* CUP CORE - Black */
  font-weight: 500;
  line-height: 1.6;
  font-smooth: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mil-page-wrapper {
  position: relative;
  overflow: hidden;
}

.mil-logo {
  color: var(--cup-connect); /* CUP CONNECT - Dark Blue */
  text-decoration: none;
  font-size: 24px;
  display: flex;
  align-items: center;
}
.mil-logo:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff3131; /* CUP CHARGE - Red */
  margin-left: 5px;
}

.mil-soft-section {
  background-color: #000066; /* CUP CONNECT - Dark Blue */
}

.mil-accent-section {
  background-color: #ff3131; /* CUP CHARGE - Red */
}

.mil-out-section {
  position: relative;
}
.mil-out-section:before,
.mil-out-section:after {
  content: "";
  background-color: inherit;
  display: block;
  width: 120px;
  height: 100%;
  position: absolute;
  top: 0;
}
.mil-out-section:before {
  right: -119px;
}
.mil-out-section:after {
  left: -119px;
}

.cup-main-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
}

.cup-tag {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  color: #cccccc;
  /* text-transform: uppercase; */
}



@media (max-width: 1350px) {
  .cup-main-title {
    font-size: 40px;
  }
}

@media (max-width: 1090px) {
  .cup-main-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .cup-main-title {
    font-size: 2rem;
  }
}

/* -------------------------------------------

settings

------------------------------------------- */
.mil-relative {
  position: relative;
  z-index: 1;
}

.mil-df {
  display: flex;
}

.mil-aic {
  display: flex;
  align-items: center;
}

.mil-aie {
  display: flex;
  align-items: flex-end;
}

.mil-ais {
  display: flex;
  align-items: flex-start;
}

.mil-jcc {
  display: flex;
  justify-content: center;
}

.mil-jce {
  display: flex;
  justify-content: flex-end;
}

.mil-jcs {
  display: flex;
  justify-content: flex-start;
}

.mil-jcb {
  display: flex;
  justify-content: space-between;
}

.mil-tac {
  text-align: center;
}

.mil-tar {
  text-align: right;
}

@media (max-width: 992px) {
  .mil-992-jcs {
    display: flex;
    justify-content: flex-start;
  }
  .mil-992-jcc {
    display: flex;
    justify-content: center;
  }
  .mil-992-tac {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .mil-768-jcc {
    display: flex;
    justify-content: center;
  }
  .mil-768-tac {
    text-align: center;
  }
  .mil-768-tal {
    text-align: left;
  }
}
/* -------------------------------------------

typography

------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--cup-core);
  line-height: 110%;
  font-weight: 600;
}

.mil-text {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

.mil-fs14 {
  font-size: 14px;
}

.mil-fs16 {
  font-size: 16px;
}
@media (max-width: 768px) {
  .mil-fs16 {
    font-size: 14px;
  }

  .mil-text {
    font-size: 16px;
  }
}

.mil-fs18 {
  font-size: 18px;
}

.mil-fs20 {
  font-size: 20px;
}

.mil-fs26 {
  font-size: 26px;
}
@media (max-width: 768px) {
  .mil-fs26 {
    font-size: 20px;
  }
}

.mil-fs30 {
  font-size: 20px;
}
@media (max-width: 768px) {
  .mil-fs30 {
    font-size: 20px;
  }
}

.mil-fs42 {
  font-size: 42px;
}
@media (max-width: 992px) {
  .mil-fs42 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .mil-fs42 {
    font-size: 28px;
  }
}

.mil-fs68 {
  font-size: 68px;
}
@media (max-width: 992px) {
  .mil-fs68 {
    font-size: 58px;
  }
}
@media (max-width: 768px) {
  .mil-fs68 {
    font-size: 48px;
  }
}

.mil-light {
  color: var(--cup-core);
}
.comming-up-text {
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  /* letter-spacing: 1px; */
  padding-bottom: 2%;
}
.mil-dark {
  color: #ffffff; /* CUP CORE - White */
}

.mil-soft {
  color: var(--cup-core); /* CUP CANVAS - White */
}

.mil-accent {
  color: var(--cup-accent); /* CUP CHARGE - Red */
}

.mil-thin {
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
}

blockquote {
  position: relative;
  padding-left: 60px;
}
blockquote:before {
  content: '"';
  display: block;
  font-style: italic;
  position: absolute;
  top: 0;
  left: -5px;
  font-size: 92px;
  padding-top: 30px;
  color: #ff3131; /* CUP CHARGE - Red */
}
blockquote span {
  display: block;
  margin-top: 20px;
}

.mil-group-text {
  display: flex;
  align-items: center;
  line-height: 90%;
}
.mil-group-text * {
  margin-right: 10px;
}
.mil-group-text *:last-child {
  margin-right: 0;
}

.mil-bg-text {
  background-size: cover;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--cup-core);
  padding-top: 20px;
}

  .mil-suptitle {
    display: block;
    text-transform: uppercase;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    /* padding-left: 0.3%; */
  }
  @media (max-width: 768px) {
    .mil-suptitle {
      font-size: 16px;
    }
    .comming-up-text {
      font-size: 20px;
      font-weight: 500;
      color: #ffffff;
      /* letter-spacing: 1px; */
      padding-bottom: 2%;
    }
  }

/* -------------------------------------------

cursor

------------------------------------------- */
.mil-cursor-follower {
  margin-top: -1.4%;
  margin-left: -0.9%;
  transform: scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  user-select: none;
  pointer-events: none;
  z-index: 9999999;
  transition: transform 0.4s cubic-bezier(0.75, -1, 0.3, 2.33),
    background-color 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-cursor-follower:after {
  content: "iiiiii";
  min-height: 7px;
  min-width: 50px;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  opacity: 0;
  transform: scale(0);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffffff; /* CUP CORE - White */
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition-delay: 0s;
}
.mil-cursor-follower.mil-dark-active,
.mil-cursor-follower.mil-gone-active,
.mil-cursor-follower.mil-view-active,
.mil-cursor-follower.mil-next-active,
.mil-cursor-follower.mil-read-active,
.mil-cursor-follower.mil-swipe-active {
  background-color: #ff3131; /* CUP CHARGE - Red */
  transform: scale(3);
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.25));
}
.mil-cursor-follower.mil-dark-active:after,
.mil-cursor-follower.mil-gone-active:after,
.mil-cursor-follower.mil-view-active:after,
.mil-cursor-follower.mil-next-active:after,
.mil-cursor-follower.mil-read-active:after,
.mil-cursor-follower.mil-swipe-active:after {
  transition-delay: 0.2s;
  opacity: 1;
  transform: scale(0.33);
}
.mil-cursor-follower.mil-dark-active {
  background-color: #0a0b0f;
}
.mil-cursor-follower.mil-dark-active:after {
  color: var(--cup-core);
  filter: invert(80%);
}
.mil-cursor-follower.mil-gone-active {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(0);
}
.mil-cursor-follower.mil-gone-active:after {
  content: ".";
}
.mil-cursor-follower.mil-next-active:after {
  content: "next";
}
.mil-cursor-follower.mil-view-active:after {
  content: "view";
}
.mil-cursor-follower.mil-read-active:after {
  content: "read";
}
.mil-cursor-follower.mil-swipe-active:after {
  content: url('data:image/svg+xml,<svg width="31" height="31" viewBox="0 0 31 31" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M29.4364 14.3667C29.4101 14.342 29.3824 14.3188 29.3535 14.2972L24.653 9.59663C24.5636 9.50467 24.4568 9.4314 24.3389 9.38106C24.2209 9.33073 24.0941 9.30434 23.9659 9.30344C23.8376 9.30253 23.7105 9.32712 23.5918 9.37578C23.4732 9.42444 23.3654 9.4962 23.2747 9.58689C23.184 9.67757 23.1122 9.78538 23.0636 9.90404C23.0149 10.0227 22.9903 10.1498 22.9912 10.2781C22.9921 10.4063 23.0185 10.5331 23.0688 10.6511C23.1192 10.7691 23.1925 10.8758 23.2844 10.9652L26.4226 14.1034L3.72315 14.1034L6.86129 10.9652C6.9541 10.8749 7.02784 10.7669 7.07815 10.6476C7.12846 10.5283 7.15432 10.4001 7.1542 10.2706C7.15408 10.1411 7.12797 10.013 7.07743 9.89378C7.02688 9.77456 6.95293 9.6667 6.85996 9.57659C6.67587 9.39817 6.42852 9.30007 6.17218 9.30383C5.91585 9.30759 5.67147 9.41289 5.4927 9.59663L0.806869 14.2825C0.68112 14.372 0.578597 14.4902 0.507853 14.6274C0.43711 14.7646 0.400197 14.9167 0.400197 15.071C0.400197 15.2253 0.437109 15.3775 0.507853 15.5146C0.578596 15.6518 0.68112 15.7701 0.806869 15.8596L5.4927 20.5454C5.58209 20.6373 5.68888 20.7106 5.80684 20.761C5.9248 20.8113 6.05158 20.8377 6.17983 20.8386C6.30808 20.8395 6.43522 20.8149 6.55389 20.7662C6.67255 20.7176 6.78035 20.6458 6.87104 20.5551C6.96173 20.4644 7.03348 20.3566 7.08214 20.238C7.1308 20.1193 7.15539 19.9922 7.15449 19.8639C7.15358 19.7357 7.12719 19.6089 7.07686 19.4909C7.02653 19.373 6.95325 19.2662 6.86129 19.1768L3.72315 16.0386L26.4226 16.0386L23.2844 19.1768C23.1925 19.2662 23.1192 19.373 23.0688 19.4909C23.0185 19.6089 22.9921 19.7357 22.9912 19.8639C22.9903 19.9922 23.0149 20.1193 23.0636 20.238C23.1122 20.3566 23.184 20.4644 23.2747 20.5551C23.3654 20.6458 23.4732 20.7176 23.5918 20.7662C23.7105 20.8149 23.8376 20.8395 23.9659 20.8386C24.0941 20.8377 24.2209 20.8113 24.3389 20.761C24.4568 20.7106 24.5636 20.6373 24.653 20.5454L29.3562 15.8422C29.4684 15.7573 29.5607 15.649 29.6267 15.5248C29.6927 15.4006 29.7309 15.2635 29.7385 15.123C29.7461 14.9826 29.7231 14.8421 29.6709 14.7115C29.6187 14.5809 29.5387 14.4632 29.4364 14.3667Z" fill="black"/></svg>');
  margin-top: 1px;
}
@media (max-width: 768px) {
  .mil-cursor-follower {
    display: none;
  }
}

.mil-c-swipe {
  cursor: grab;
}

/* -------------------------------------------

scrollbar

------------------------------------------- */
::-webkit-scrollbar {
  display: none;
}

.mil-progress-track {
  position: fixed;
  z-index: 999999999999;
  top: 0;
  right: 0;
  height: 100%;
  width: 5px;
  background-color: #0a0b0f; /* Dark background for contrast */
}
.mil-progress-track .mil-progress {
  background: linear-gradient(90deg, var(--cup-accent) 0%, #0056b3 100%);
  height: 0;
  width: 5px;
  border-radius: 4px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
@media screen and (max-width: 768px) {
  .mil-progress-track {
    display: none;
  }
}

/* -------------------------------------------

breadcrumbs

------------------------------------------- */
.mil-breadcrumbs {
  display: flex;
}
.mil-breadcrumbs li {
  font-size: 12px;
  list-style-type: none;
}
.mil-breadcrumbs li:after {
  content: ">>";
  margin: 0 15px;
}
.mil-breadcrumbs li a {
  color: var(--cup-core);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}
.mil-breadcrumbs li a:hover {
  color: #ff3131; /* CUP CHARGE - Red */
}
.mil-breadcrumbs li:last-child {
  cursor: not-allowed;
}
.mil-breadcrumbs li:last-child:after {
  display: none;
}
.mil-breadcrumbs li:last-child a {
  color: var(--cup-core); /* CUP CANVAS - White */
  pointer-events: none;
}

/* -------------------------------------------

buttons

------------------------------------------- */
.mil-btn {
  border: 1px solid #ffffff;
  cursor: pointer;
  border-radius: 60px;
  /* padding: 0 40px; */
  height: 61.95px;
  width: 261.67px;
  text-align: center;
  justify-content: center;
  background: transparent;
  color: var(--cup-canvas);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-primary);
  letter-spacing: 0.0rem;

  /* letter-spacing: 2px; */
  /* transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);  */
  /* box-shadow: 0 4px 15px rgba(255, 49, 49, 0.3); */
}
.mil-btn.mil-btn-lg {
  height: 90px;
  padding: 0 70px;
  font-size: 16px;
}
.mil-btn.mil-btn-border {
  border: 2px solid var(--cup-accent);
  background-color: transparent;
  color: var(--cup-accent);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mil-btn.mil-btn-border:hover {
  background-color: var(--cup-accent);
  color: var(--cup-canvas);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.mil-btn.mil-btn-soft {
  background-color: var(--cup-accent);
  color: var(--cup-canvas);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mil-btn.mil-btn-soft:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.mil-btn.mil-btn-link {
  background-color: transparent;
  padding: 0;
  color: var(--cup-core);
}
.mil-btn.mil-btn-link.mil-accent {
  color: #ff3131; /* CUP Blue Accent */
}
.mil-btn i {
  margin-left: 10px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-btn:hover {
  /* transform: scale(1.05); */
  /* filter: brightness(110%); */
  background: linear-gradient(90deg, #ff914d 0%, #ff3131 100%);
  /* transition: all 0.25s ease-in-out; */
  border: none;
}
.mil-btn:hover i {
  margin-left: 15px;
}

.mil-buttons-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.mil-buttons-frame .mil-btn {
  margin-right: 0;
}
.mil-buttons-frame .mil-btn:last-child {
  margin-right: 0;
}

/* Enhanced button frame for hero section */
.mil-buttons-frame.hero-buttons {
  gap: 20px;
  margin-top: 40px;
}

/* Hero section layout improvements */
.hero-title-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Interactive Hero Title */
.interactive-hero-title {
  position: relative;
  display: inline-block;
}

.hover-trigger {
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  /* padding: 1px 4px; */
  border-radius: 4px;
}

.hover-trigger:hover {
  color: #ff3131;
  background: rgba(255, 49, 49, 0.1);
  text-shadow: 0 0 10px rgba(255, 49, 49, 0.5);
}

/* Descriptive blocks container */
.descriptive-blocks {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 450px;
  pointer-events: none;
}

/* Individual descriptive blocks */
.descriptive-block {
  position: absolute;

  border-radius: 8px;
  padding: 12px 16px;
  max-width: 407px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  pointer-events: none;
  text-align: center;
  transform-origin: center;
}

.descriptive-block span {
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  display: block;
  text-align: center;
}

/* Individual block positions for 2-line layout - aligned with line positions */
.descriptive-block[data-target="brew"] {
  top: 20px;
  left: 100px;
}
.descriptive-block[data-target="authentic"] {
  top: 20px;
  left: 380px;
}
.descriptive-block[data-target="streamed"] {
  top: 20px;
  left: 740px;
}
.descriptive-block[data-target="beyond"] {
  bottom: 20px;
  left: 50px;
}
.descriptive-block[data-target="across"] {
  bottom: 20px;
  left: 420px;
}
.descriptive-block[data-target="hearts"] {
  bottom: 20px;
  left: 800px;
}

/* Responsive design for descriptive blocks */
@media (max-width: 1350px) {
  .descriptive-blocks {
    width: 100%;
    height: 400px;
  }

  .descriptive-block {
    max-width: 325px;
    padding: 10px 14px;
  }

  .descriptive-block span {
    font-size: 18px;
  }

  .descriptive-block[data-target="brew"] {
    left: 0px;
  }
  .descriptive-block[data-target="authentic"] {
    left: 300px;
  }
  .descriptive-block[data-target="streamed"] {
    left: 720px;
  }
  .descriptive-block[data-target="beyond"] {
    left: 0px;
  }
  .descriptive-block[data-target="across"] {
    left: 360px;
  }
  .descriptive-block[data-target="hearts"] {
    left: 780px;
  }
}

@media (max-width: 1090px) {
  .descriptive-blocks {
    width: 100%;
    height: 350px;
  }

  .descriptive-block {
    max-width: 280px;
    padding: 8px 12px;
  }

  .descriptive-block span {
    font-size: 16px;
  }

  .descriptive-block[data-target="brew"] {
    top: 15px;
    left: 0px;
  }
  .descriptive-block[data-target="authentic"] {
    top: 15px;
    left: 300px;
  }
  .descriptive-block[data-target="streamed"] {
    top: 15px;
    left: 600px;
  }
  .descriptive-block[data-target="beyond"] {
    bottom: 15px;
    left: 0px;
  }
  .descriptive-block[data-target="across"] {
    bottom: 15px;
    left: 340px;
  }
  .descriptive-block[data-target="hearts"] {
    bottom: 15px;
    left: 720px;
  }
}

/* Individual word hover animations */
.hover-trigger:hover ~ .descriptive-blocks .descriptive-block[data-target] {
  opacity: 0;
  transform: scale(0.8);
}

.hover-trigger[data-word="brew"]:hover
  ~ .descriptive-blocks
  .descriptive-block[data-target="brew"] {
  opacity: 1;
  transform: scale(1);
}

.hover-trigger[data-word="authentic"]:hover
  ~ .descriptive-blocks
  .descriptive-block[data-target="authentic"] {
  opacity: 1;
  transform: scale(1);
}

.hover-trigger[data-word="stories"]:hover
  ~ .descriptive-blocks
  .descriptive-block[data-target="stories"] {
  opacity: 1;
  transform: scale(1);
}

.hover-trigger[data-word="streamed"]:hover
  ~ .descriptive-blocks
  .descriptive-block[data-target="streamed"] {
  opacity: 1;
  transform: scale(1);
}

.hover-trigger[data-word="beyond"]:hover
  ~ .descriptive-blocks
  .descriptive-block[data-target="beyond"] {
  opacity: 1;
  transform: scale(1);
}

.hover-trigger[data-word="borders"]:hover
  ~ .descriptive-blocks
  .descriptive-block[data-target="borders"] {
  opacity: 1;
  transform: scale(1);
}

.hover-trigger[data-word="across"]:hover
  ~ .descriptive-blocks
  .descriptive-block[data-target="across"] {
  opacity: 1;
  transform: scale(1);
}

.hover-trigger[data-word="cultures"]:hover
  ~ .descriptive-blocks
  .descriptive-block[data-target="cultures"] {
  opacity: 1;
  transform: scale(1);
}

.hover-trigger[data-word="hearts"]:hover
  ~ .descriptive-blocks
  .descriptive-block[data-target="hearts"] {
  opacity: 1;
  transform: scale(1);
}

/* Connecting lines SVG */
.connecting-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 400px;
  pointer-events: none;
}

.line {
  stroke: rgb(251, 250, 250);
  stroke-width: 1.5px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;

  transition: stroke-dashoffset 0.6s ease;
}

/* Individual line animations */
.hover-trigger:hover ~ .connecting-lines .line[data-target] {
  stroke-dashoffset: 1000;
}

.hover-trigger[data-word="brew"]:hover
  ~ .connecting-lines
  .line[data-target="brew"] {
  stroke-dashoffset: 0;
}

.hover-trigger[data-word="authentic"]:hover
  ~ .connecting-lines
  .line[data-target="authentic"] {
  stroke-dashoffset: 0;
}

.hover-trigger[data-word="stories"]:hover
  ~ .connecting-lines
  .line[data-target="stories"] {
  stroke-dashoffset: 0;
}

.hover-trigger[data-word="streamed"]:hover
  ~ .connecting-lines
  .line[data-target="streamed"] {
  stroke-dashoffset: 0;
}

.hover-trigger[data-word="beyond"]:hover
  ~ .connecting-lines
  .line[data-target="beyond"] {
  stroke-dashoffset: 0;
}

.hover-trigger[data-word="borders"]:hover
  ~ .connecting-lines
  .line[data-target="borders"] {
  stroke-dashoffset: 0;
}

.hover-trigger[data-word="across"]:hover
  ~ .connecting-lines
  .line[data-target="across"] {
  stroke-dashoffset: 0;
}

.hover-trigger[data-word="cultures"]:hover
  ~ .connecting-lines
  .line[data-target="cultures"] {
  stroke-dashoffset: 0;
}

.hover-trigger[data-word="hearts"]:hover
  ~ .connecting-lines
  .line[data-target="hearts"] {
  stroke-dashoffset: 0;
}

/* Touch and keyboard support */
.interactive-hero-title.touch-active .descriptive-blocks,
.interactive-hero-title.keyboard-active .descriptive-blocks,
.interactive-hero-title.programmatic-active .descriptive-blocks {
  opacity: 1;
}

.interactive-hero-title.touch-active .connecting-lines,
.interactive-hero-title.keyboard-active .connecting-lines,
.interactive-hero-title.programmatic-active .connecting-lines {
  opacity: 1;
}

.interactive-hero-title.touch-active .block-1,
.interactive-hero-title.keyboard-active .block-1,
.interactive-hero-title.programmatic-active .block-1 {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.1s;
}

.interactive-hero-title.touch-active .block-2,
.interactive-hero-title.keyboard-active .block-2,
.interactive-hero-title.programmatic-active .block-2 {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.15s;
}

.interactive-hero-title.touch-active .block-3,
.interactive-hero-title.keyboard-active .block-3,
.interactive-hero-title.programmatic-active .block-3 {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}

.interactive-hero-title.touch-active .block-4,
.interactive-hero-title.keyboard-active .block-4,
.interactive-hero-title.programmatic-active .block-4 {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.25s;
}

.interactive-hero-title.touch-active .block-5,
.interactive-hero-title.keyboard-active .block-5,
.interactive-hero-title.programmatic-active .block-5 {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
}

.interactive-hero-title.touch-active .block-6,
.interactive-hero-title.keyboard-active .block-6,
.interactive-hero-title.programmatic-active .block-6 {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.35s;
}

.interactive-hero-title.touch-active .line-1,
.interactive-hero-title.keyboard-active .line-1,
.interactive-hero-title.programmatic-active .line-1 {
  stroke-dashoffset: 0;
  transition-delay: 0.2s;
}

.interactive-hero-title.touch-active .line-2,
.interactive-hero-title.keyboard-active .line-2,
.interactive-hero-title.programmatic-active .line-2 {
  stroke-dashoffset: 0;
  transition-delay: 0.25s;
}

.interactive-hero-title.touch-active .line-3,
.interactive-hero-title.keyboard-active .line-3,
.interactive-hero-title.programmatic-active .line-3 {
  stroke-dashoffset: 0;
  transition-delay: 0.3s;
}

.interactive-hero-title.touch-active .line-4,
.interactive-hero-title.keyboard-active .line-4,
.interactive-hero-title.programmatic-active .line-4 {
  stroke-dashoffset: 0;
  transition-delay: 0.35s;
}

.interactive-hero-title.touch-active .line-5,
.interactive-hero-title.keyboard-active .line-5,
.interactive-hero-title.programmatic-active .line-5 {
  stroke-dashoffset: 0;
  transition-delay: 0.4s;
}

.interactive-hero-title.touch-active .line-6,
.interactive-hero-title.keyboard-active .line-6,
.interactive-hero-title.programmatic-active .line-6 {
  stroke-dashoffset: 0;
  transition-delay: 0.45s;
}

.hero-bottom-content {
  margin-top: auto;
  padding-bottom: 40px;
}

/* Tablet responsive styles */
@media (max-width: 992px) and (min-width: 769px) {
  .hero-title-section {
    padding: 30px 0;
  }

  .hero-bottom-content {
    padding-bottom: 30px;
  }

  .hero-bottom-content .cup-tag {
    margin-bottom: 25px !important;
    font-size: 18px;
  }


  .mil-buttons-frame.hero-buttons {
    margin-top: 30px;
    font-size: 1.2rem;
    gap: 18px;
  }

  .hover-trigger:hover,
  .hover-trigger:focus {
    /* Disable hover effects */
    pointer-events: none;
    cursor: default;
  }

  .descriptive-block {
    display: none !important;
  }

  .line {
    opacity: 0 !important;
  }
}

@media (max-width: 768px) {

  .mil-btn {
    font-size: 16px;
    width:223.67px;
    height: 55.95px;
  }

  .cup-tag {
    font-size: 20px;
  }


  .mil-buttons-frame {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .mil-buttons-frame .mil-btn {
    margin-right: 0;
    margin-bottom: 0;
    font-size: 16px;
  }
  .mil-buttons-frame .mil-btn:last-child {
    margin-bottom: 0;
  }

  /* Mobile responsive hero layout */
  .hero-title-section {
    padding: 20px 0;
  }

  .hero-bottom-content {
    padding-bottom: 20px;
  }

  .hero-bottom-content .cup-tag {
    margin-bottom: 20px !important;
    font-size: 20px;
    line-height: 1.4;
    

  }

  .mil-buttons-frame.hero-buttons {
    margin-top: 30%;
    font-size: 1.2rem;
    gap: 30px;
  }

  /* Mobile interactive hero adjustments */
  .descriptive-blocks {
    width: 100vw;
    height: 100vh;
    max-width: 400px;
    max-height: 300px;
  }

  .descriptive-block {
    max-width: 150px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .descriptive-block span {
    font-size: 11px;
  }

  .connecting-lines {
    width: 100vw;
    height: 100vh;
    max-width: 400px;
    max-height: 300px;
  }

  /* Adjust block positions for mobile 2-line layout - aligned with line positions */
  .descriptive-block[data-target="brew"] {
    top: 10px;
    left: 20px;
  }
  .descriptive-block[data-target="authentic"] {
    top: 10px;
    left: 120px;
  }
  .descriptive-block[data-target="streamed"] {
    top: 10px;
    left: 220px;
  }
  .descriptive-block[data-target="beyond"] {
    bottom: 10px;
    left: 20px;
  }
  .descriptive-block[data-target="across"] {
    bottom: 10px;
    left: 120px;
  }
  .descriptive-block[data-target="hearts"] {
    bottom: 10px;
    left: 
    220px;
  }
  .hover-trigger:hover,
  .hover-trigger:focus {
    /* Disable hover effects */
    pointer-events: none;
    cursor: default;
  }

  .descriptive-block {
    display: none !important;
  }

  .line {
    opacity: 0 !important;
  }
}

/* -------------------------------------------

link

------------------------------------------- */
.mil-text-link {
  position: relative;
  color: #ff3131; /* CUP CHARGE - Red */
  text-decoration: none;
}
.mil-text-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ff3131; /* CUP CHARGE - Red */
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-text-link.mil-light {
  color: var(--cup-core);
}
.mil-text-link.mil-light:after {
  background-color: var(--cup-core);
}
.mil-text-link.mil-soft {
  color: var(--cup-core); /* CUP CANVAS - White */
}
.mil-text-link.mil-soft:after {
  background-color: #ff3131; /* CUP CHARGE - Red */
}
.mil-text-link.mil-soft:hover {
  color: #ff3131; /* CUP CHARGE - Red */
}
.mil-text-link.mil-dark {
  color: #ffffff; /* CUP CORE - White */
}
.mil-text-link.mil-dark:after {
  background-color: #0a0b0f;
}
.mil-text-link.mil-accent-soft {
  color: #ffffff;
}
.mil-text-link.mil-accent-soft:after {
  background-color: #ff914d; /* CUP CHARGE - Orange */
}
.mil-text-link:hover:after {
  width: 100%;
}

h1 .mil-text-link:after,
h2 .mil-text-link:after,
h3 .mil-text-link:after {
  height: 4px;
}

h4 .mil-text-link:after,
h5 .mil-text-link:after,
h6 .mil-text-link:after {
  height: 2px;
}

/* -------------------------------------------

spaces

------------------------------------------- */
.mil-mb120 {
  margin-bottom: 120px;
}

.mil-mb90 {
  margin-bottom: 90px;
}

.mil-mb60 {
  margin-bottom: 60px;
}

.mil-mb30 {
  margin-bottom: 30px;
}

.mil-mb20 {
  margin-bottom: 20px;
}

.mil-mb15 {
  margin-bottom: 15px;
}

.mil-mb10 {
  margin-bottom: 10px;
}

.mil-p-240-0 {
  padding-top: 240px;
}

.mil-p-240-120 {
  padding-top: 240px;
  padding-bottom: 120px;
}

.mil-p-180-180 {
  padding-top: 180px;
  padding-bottom: 180px;
}

.mil-p-180-120 {
  padding-top: 180px;
  padding-bottom: 120px;
}

.mil-p-120-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.mil-p-120-90 {
  padding-top: 120px;
  padding-bottom: 90px;
}

/* Ensure first section on about page clears the navbar */
.mil-content > .mil-p-120-90:first-of-type {
  padding-top: calc(var(--nav-height, 120px) + 120px);
}

@media (max-width: 768px) {
  /* .mil-content > .mil-p-120-90:first-of-type {
    padding-top: calc(var(--nav-height, 96px) + 90px);
  } */


.mil-p-120-90 {
  padding-top: 0px;
  padding-bottom: 24px;
}
}

.mil-p-120-30 {
  padding-top: 120px;
  padding-bottom: 100px;
}

.mil-p-30-120 {
  padding-top: 30px;
  padding-bottom: 100px;
}

.mil-p-30-90 {
  padding-top: 30px;
  padding-bottom: 90px;
}

.mil-p-0-30 {
  margin-bottom: 30px;
}

.mil-p-30-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.mil-p-120-0 {
  padding-top: 120px;
}

.mil-p-0-120 {
  margin-bottom: 120px;
}

.mil-p-0-90 {
  padding-bottom: 90px;
}

.mil-p-120-60 {
  padding-top: 120px;
  padding-bottom: 60px;
}

.mil-p-0-60 {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .mil-768-p-90-120 {
    padding-top: 90px;
    padding-bottom: 120px;
  }
  .mil-768-p-0-120 {
    padding-top: 0;
    padding-bottom: 120px;
  }
  .mil-768-mb30 {
    margin-bottom: 30px;
  }
  .mil-768-mb90 {
    margin-bottom: 90px;
  }

  .mil-mb60 {
    margin-bottom: 20px;
  }

  .mt-10-mob {
    margin-top: 10px;
  }
  .cup-submit{
    padding: 8px 28px;
    font-size: 16px;
    font-weight:600;
  }
}
@media (max-width: 992px) {
  .mil-992-p-150-120 {
    padding-top: 150px;
    padding-bottom: 120px;
  }
  .mil-992-p-150-0 {
    padding-top: 150px;
  }
  .mil-992-p-0-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .mil-992-p-150-0 {
    padding-top: 150px;
  }
  .mil-992-mb30 {
    margin-bottom: 30px;
  }
}
.mil-banner {
  padding-top: 120px;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, var(--cup-accent) 0%, #040b80 100%);
}
.mil-banner .mil-banner-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mil-banner .mil-banner-image-frame {
  position: relative;
  height: calc(100vh - 120px);
}
.mil-banner .mil-banner-text {
  position: relative;
  z-index: 9;
}
.mil-banner .mil-banner-img {
  background-color: #ff3131; /* CUP CHARGE - Red */
  height: 100%;
  width: calc(150% - 15px);
  position: absolute;
  overflow: hidden;
  top: 0;
  left: -50%;
}
.mil-banner .mil-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mil-banner .mil-banner-img.mil-out-left {
  width: calc(200% - 95px);
  left: auto;
  right: -50%;
}
.mil-banner .mil-banner-img.mil-out-right {
  width: calc(200% - 95px);
}
@media (max-width: 992px) {
  .mil-banner {
    height: auto;
    min-height: 90vh;
  }
  .mil-banner .mil-banner-image-frame {
    height: 500px;
  }
  .mil-banner .mil-banner-text {
    padding: 10% 0;
  }
  .mil-banner .mil-banner-img {
    position: static;
    width: 100%;
    left: 0;
  }
  .mil-banner .mil-banner-img.mil-out-left,
  .mil-banner .mil-banner-img.mil-out-right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .mil-banner {
    padding-top: 90px;
  }
  .mil-banner .mil-banner-image-frame {
    height: 350px;
  }

  .mil-mb30 {
    margin-bottom: 24px;
  }

  .cup-message-actions .cup-submit{
    padding: 8px 28px;
    font-size: 18px;
    font-weight: 600;
  }

}

/* Gradient transition between sections */
.cup-gradient-transition {
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, #040b80 0%, #000000 100%);
  position: relative;
  z-index: 1;
}

/* Who We Are section gradient blend */
#who-we-are {
  background: #000000;
  /* background-color: transparent; */
}

/* CUP.STREAM Section Styling */
.cup-stream-section {
  background: #000000;
  position: relative;
  overflow: hidden;
}

/* .cup-stream-content {
  padding-right: 40px;
} */

.cup-stream-phone {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  min-height: 500px;
  overflow: visible;
}

/* Fade the image from the bottom into black background */
.phone-image {
  max-width: none;
  width: auto;
  height: auto;
  max-height: 550px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
  margin-right: -10%;
  /* Fade bottom: visible -> fully black */
  mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 75%,
    transparent 100%
  );
}

.cup-stream-phone::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, #000000 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

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

/* Responsive adjustments */
@media (max-width: 1500px) {
  .phone-image {
    max-height: 450px;
  }
}
/* Responsive adjustments */
@media (max-width: 1400px) {
  .phone-image {
    max-height: 450px;
  }
}

@media (max-width: 1260px) {
  .cup-stream-phone {
    min-height: 450px;
  }

  .phone-image {
    max-height: 400px;
  }
}

@media (max-width: 1060px) {
  .cup-stream-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .cup-stream-phone {
    min-height: 350px;
    justify-content: center !important;
    align-items: center !important;
  }

  .phone-image {
    max-height: 300px;
    /* max-width: 100%;
    margin-bottom: -30px;
    margin-right: 0 !important;
    margin-left: 0 !important; */
  }

  .cup-stream-phone::after {
    height: 80px;
  }
}

@media (max-width: 768px) {
  /* Reorder columns on mobile: image first, then text */
  .cup-stream-section .row {
    display: flex;
    flex-direction: column;
  }

  .cup-stream-section .col-lg-6:first-child {
    order: 2; /* Text content appears second */
  }

  .cup-stream-section .col-lg-6:last-child {
    order: 1; /* Image appears first */
  }

  .cup-stream-phone {
    min-height: 400px;
    /* justify-content: center !important;
    align-items: center !important; */
  }

  .phone-image {
    max-height: 550px;
    max-width: 500px;
    /* padding-left: 20px; */
    /* margin-bottom: -20px; */
    margin-right: 70px;
    /* margin-left: 0 !important; */
  }

  .cup-stream-phone::after {
    height: 60px;
  }


  .cup-gradient-transition {

    height: 100px;

  
  }
}

/* @media (max-width: 576px) {
  .cup-stream-phone {
    min-height: 300px;
    justify-content: center !important;
    align-items: center !important;
  }

  .phone-image {
    max-height: 220px;
    max-width: 90%;
    margin-bottom: -15px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .cup-stream-phone::after {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .cup-stream-phone {
    min-height: 250px;
  }

  .phone-image {
    max-height: 180px;
    max-width: 85%;
    margin-bottom: -10px;
  }

  .cup-stream-phone::after {
    height: 40px;
  }
}

@media (max-width: 400px) {
  .cup-stream-phone {
    min-height: 220px;
  }

  .phone-image {
    max-height: 150px;
    max-width: 80%;
    margin-bottom: -8px;
  }

  .cup-stream-phone::after {
    height: 35px;
  }
}

@media (max-width: 360px) {
  .cup-stream-phone {
    min-height: 200px;
  }

  .phone-image {
    max-height: 130px;
    max-width: 75%;
    margin-bottom: -5px;
  }

  .cup-stream-phone::after {
    height: 30px;
  }
} */

.mil-banner-inner {
  height: 100vh;
}
.mil-banner-inner .mil-banner-text {
  height: 50vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
}
.mil-banner-inner .mil-banner-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 50vh;
}
.mil-banner-inner .mil-banner-img img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.mil-banner-inner-2 {
  padding-top: 120px;
}
.mil-banner-inner-2 .mil-banner-text {
  height: 40vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .mil-banner-inner-2 {
    padding-top: 90px;
  }
  .mil-banner-inner-2 .mil-banner-text {
    height: auto;
  }
}

/* -------------------------------------------

top panel

------------------------------------------- */

:root {
  /* Layout */
  --nav-max: 1800px;
  --nav-width: 90%;
  --nav-height: 120px;

  /* Brand */
  --nav-fill: #ffffff;
  --page-bg: #07086b; /* deep blue in your screenshot */

  /* Spacing */
  --nav-xpad: 60px; /* inner horizontal padding */
}

body {
  margin: 0;
  background: var(--page-bg);
  /* push content below fixed navbar */
  padding-top: calc(var(--nav-height) + 20px);
  font-family: "Barlow", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Fixed wrapper */
.cup-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: var(--nav-width);
  max-width: var(--nav-max);
  height: var(--nav-height);
  margin: 0 auto;
  z-index: 1000;
  /* soft outer shadow */
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.08));
  /* Smooth transition for hide/show */
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Navbar hide state - slide up and fade out */
.cup-nav.cup-nav--hidden {
  transform: translateY(-100%);
  opacity: 0;
}

/* Navbar show state - ensure it's visible */
.cup-nav.cup-nav--visible {
  transform: translateY(0);
  opacity: 1;
}

/* SVG layers fill the panel shape */
.cup-nav__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/* show desktop svg by default */
.cup-nav__svg--desktop {
  display: block;
}
.cup-nav__svg--mobile {
  display: none;
}

/* Content sits above the SVG */
.cup-nav__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--nav-xpad);
  color: #000;
}

/* Left: logo + text block (optional) */
.cup-nav__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.cup-nav__brand img {
  max-width: 100%;
  height: 65px;
  display: block;
}

/* Right: links */
.cup-nav__links {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.4px;
  /* Hide inline on mobile, show dropdown */
}
.cup-nav__link {
  text-decoration: none;
  color: inherit;
  font-size: clamp(14px, 1.25vw, 18px);
}
.cup-nav__link:hover {
  color: var(--cup-accent);
  text-decoration: underline;
}
.cup-nav__link.is-active,
.cup-nav__link[aria-current="page"] {
  color: #ff3131; /* bright red for active link */
}
.container {
  max-width: 100%;
  padding: 50px 5%;
}


.cup-mobile-menu {
  display: none;
}



/* --- MOBILE NAVIGATION DROPDOWN --- */
@media (max-width: 768px) {
  .cup-nav__links {
    display: none; /* hide regular links on mobile */
  }
  .cup-mobile-menu-btn {
    display: flex !important; /* ensure the menu button shows on mobile */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1101;
    gap: 5px;
    padding: 10px;
  }

  .cup-mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .cup-mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .cup-mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .cup-mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Ensure the mobile menu button container is visible */
  .cup-nav__content {
    position: relative;
  }
  /* Dropdown menu styles */
  .cup-mobile-menu {
    position: fixed;
    top: 100px;
    right: 4%;
    
    width: 50vw;
    background: var(--nav-fill);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    display: none;
    flex-direction: column;
    align-items: flex-end;
    padding: 24px 16px;
    z-index: 1100;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    border-radius: 10px;
  }
  .cup-mobile-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .cup-mobile-menu-link {
    padding: 16px 0;
    text-decoration: none;
    color: #222;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.3px;
    border-bottom: 1px solid #eee;
    background: transparent;
    transition: color 0.18s;
    text-align: right;
    width: 100%;
  }
  .cup-mobile-menu-link:last-child {
    border-bottom: 0;
  }
  .cup-mobile-menu-link.is-active,
  .cup-mobile-menu-link[aria-current="page"] {
    color: #ff3131;
  }
}
/* Hide the mobile menu button on desktop */
.cup-mobile-menu-btn {
  display: none;
}

/* Ensure mobile menu button spans are visible even when button is hidden on desktop */
.cup-mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ======= Mobile breakpoint ======= */
@media (max-width: 768px) {
  :root {
    --nav-height: 96px;
    --nav-xpad: 20px;
  }
  body {
    padding-top: calc(var(--nav-height) + 16px);
  }

  /* swap the SVG to a slightly steeper, tighter mobile shape */
  .cup-nav__svg--desktop {
    display: none;
  }
  .cup-nav__svg--mobile {
    display: block;
  }

  .cup-nav__content {
    gap: 12px;
  }
  .cup-nav__brand img {
    height: 36px;
  }
  .cup-nav__brand-title {
    font-size: 17px;
  }
  .cup-nav__brand-sub {
    font-size: 13px;
  }

  /* collapse links a bit */
  .cup-nav__links {
    gap: 16px;
  }
  .cup-nav__link {
    font-size: 14px;
  }
}

/* .mil-top-panel .container {
  width: 100%;
  padding: 0 24px;
}

.mil-top-panel.mil-transparent {
  background-color: transparent;
  backdrop-filter: none;
  border: none;
}

.mil-top-panel .mil-phone {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

@media (max-width: 992px) {
  :root { --nav-height: 90px; }
  body { padding-top: calc(var(--nav-height) + 16px); }
} */

/* -------------------------------------------

menu button

------------------------------------------- */
.mil-menu-btn {
  display: flex;
  margin-left: 30px;
  margin-right: -10px;
  padding: 18px 10px 20px;
  height: 24px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-menu-btn span,
.mil-menu-btn span:after,
.mil-menu-btn span:before {
  content: "";
  pointer-events: none;
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  backface-visibility: hidden;
  transition: inherit;
}
.mil-menu-btn span {
  position: relative;
}
.mil-menu-btn span:after,
.mil-menu-btn span:before {
  position: absolute;
}
.mil-menu-btn span:before {
  top: -8px;
}
.mil-menu-btn span:after {
  top: 8px;
}
.mil-menu-btn.mil-active span {
  transform: rotate(45deg);
}
.mil-menu-btn.mil-active span:before {
  transform: translate(0px, 8px) rotate(-90deg);
}
.mil-menu-btn.mil-active span:after {
  width: 24px;
  transform: translate(0px, -8px) rotate(-90deg);
}

/* -------------------------------------------

menu

------------------------------------------- */
.mil-main-menu {
  padding: 90px 0 30px;
  width: auto;
  max-height: calc(100vh - 180px);
  display: inline-flex;
  flex-direction: column;
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  filter: blur(10px);
  overflow-y: scroll;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition-delay: 0s;
}
.mil-main-menu li {
  line-height: 140%;
  font-weight: 600;
  text-align: center;
  list-style-type: none;
  margin-bottom: 50px;
}
.mil-main-menu li a {
  font-size: 42px;
  color: var(--cup-core);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-main-menu li:hover > a {
  color: #ff3131; /* CUP CHARGE - Red */
}
.mil-main-menu li ul {
  display: flex;
  justify-content: center;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-main-menu li ul li {
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-right: 30px;
}
.mil-main-menu li ul li a {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0;
  color: var(--cup-core); /* CUP CANVAS - White */
  transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-main-menu li ul li a:hover {
  color: var(--cup-core);
}
.mil-main-menu li ul li:last-child {
  margin-right: 0;
}
@media (max-width: 992px) {
  .mil-main-menu li {
    margin-bottom: 40px;
  }
  .mil-main-menu li a {
    font-size: 32px;
  }
  .mil-main-menu li ul {
    flex-direction: column;
  }
  .mil-main-menu li ul li {
    margin-right: 0;
    margin-top: 10px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .mil-main-menu li ul li:first-child {
    margin-top: 30px;
  }
}
.mil-main-menu li:hover ul {
  max-height: 100px;
}
@media (max-width: 992px) {
  .mil-main-menu li:hover ul {
    max-height: 500px;
  }
}
.mil-main-menu li:hover ul li a {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 1;
}

.mil-menu-window {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #0a0b0f;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition-delay: 0.4s;
}
.mil-menu-window .mil-social {
  height: 90px;
  opacity: 0;
  filter: blur(10px);
  position: absolute;
  bottom: 40px;
  left: 0;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition-delay: 0s;
}
@media (max-width: 768px) {
  .mil-menu-window .mil-social {
    bottom: 0;
    border-top: solid 1px rgba(115, 118, 123, 0.2);
  }
}
.mil-menu-window.mil-active {
  opacity: 1;
  pointer-events: all;
  transition-delay: 0s;
}
.mil-menu-window.mil-active .mil-main-menu {
  transform: translateY(0) scale(1);
  opacity: 1;
  filter: blur(0);
  transition-delay: 0.4s;
}
.mil-menu-window.mil-active .mil-social {
  transition-delay: 0.6s;
  opacity: 1;
  filter: blur(0);
}

/* -------------------------------------------

social

------------------------------------------- */
.mil-social {
  display: flex;
  align-items: center;
}
.mil-social.mil-center {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.mil-social li {
  margin-right: 30px;
  list-style-type: none;
}
.mil-social li:last-child {
  margin-right: 0;
}
.mil-social li a {
  color: var(--cup-core);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-social li a:hover {
  color: #ff3131; /* CUP CHARGE - Red */
}

/* -------------------------------------------

portfolio

------------------------------------------- */
.mil-project-card {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
.mil-project-card .mil-cover-frame {
  width: 100%;
  position: relative;
}
.mil-project-card .mil-cover-frame.mil-v {
  padding-bottom: 120%;
}
.mil-project-card .mil-cover-frame.mil-v.mil-longer {
  padding-bottom: 150%;
}
.mil-project-card .mil-cover-frame.mil-s {
  padding-bottom: 100%;
}
.mil-project-card .mil-cover-frame.mil-h {
  padding-bottom: 65%;
}
.mil-project-card .mil-cover-frame.mil-h.mil-longer {
  padding-bottom: 75%;
}
.mil-project-card .mil-cover-frame.mil-h.mil-shortened {
  padding-bottom: 55%;
}
.mil-project-card .mil-cover-frame .mil-hover-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-project-card .mil-cover-frame .mil-hover-frame img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.mil-project-card .mil-cover-frame .mil-hover-overlay {
  background-color: rgba(10, 11, 15, 0.6);
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-project-card .mil-cover-frame .mil-hover-overlay .mil-addition-btn {
  background-color: red;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffffff; /* CUP CORE - White */
}
.mil-project-card:hover .mil-cover-frame .mil-hover-frame {
  transform: scale(0.95);
}
.mil-project-card:hover .mil-cover-frame .mil-hover-overlay {
  opacity: 1;
}

.mil-project-btn-frame {
  padding-bottom: 59%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mil-project-btn-frame .mil-btn {
  position: absolute;
  top: calc(50% - 30px);
  left: auto;
  right: auto;
  bottom: auto;
}
@media (max-width: 992px) {
  .mil-project-btn-frame {
    padding-bottom: 79%;
  }
}
@media (max-width: 768px) {
  .mil-project-btn-frame {
    padding-bottom: 0;
    padding-top: 60px;
  }
  .mil-project-btn-frame .mil-btn {
    position: static;
  }
}

.mil-half-project-card {
  display: block;
  width: 100%;
  background-color: red;
}

.mil-filter a * {
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-filter a *:hover {
  color: #ff3131; /* CUP CHARGE - Red */
}
.mil-filter a *.mil-active * {
  color: #ff3131; /* CUP CHARGE - Red */
}

.mil-more-loader {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mil-more-loader.mil-mt-60 {
  margin-top: 60px;
}
.mil-more-loader .mil-loader {
  margin-bottom: 30px;
  animation: loader 1s infinite;
}
.mil-more-loader .mil-loader path {
  fill: #ffffff;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* -------------------------------------------

fullscreen slider

------------------------------------------- */
.mil-portfolio-fs-slider {
  height: 100vh;
  padding: 120px 0;
  display: flex;
  align-items: center;
}
.mil-portfolio-fs-slider .swiper-slide-next {
  z-index: -1;
}
.mil-portfolio-fs-slider .swiper-slide-next .mil-cover {
  opacity: 1 !important;
}
.mil-portfolio-fs-slider .swiper-slide-prev {
  opacity: 0;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
@media (max-width: 992px) {
  .mil-portfolio-fs-slider {
    padding: 0;
  }
}

.mil-portfolio-fs-slider-2 {
  height: 100vh;
  padding: 120px 0;
  display: flex;
  align-items: center;
}
.mil-portfolio-fs-slider-2 .swiper-slide-next {
  z-index: -1;
}
.mil-portfolio-fs-slider-2 .swiper-slide-next .mil-cover {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .mil-portfolio-fs-slider-2 {
    padding: 0;
  }
}

.mil-portfolio-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.mil-portfolio-slide .mil-cover {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  width: 60%;
  padding-bottom: 60%;
}
.mil-portfolio-slide .mil-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mil-portfolio-slide .mil-work-descr {
  position: absolute;
}
@media (max-width: 992px) {
  .mil-portfolio-slide .mil-cover {
    width: 100%;
    padding-bottom: 80%;
  }
  .mil-portfolio-slide .mil-work-descr {
    padding-left: 60px;
  }
}
@media (max-width: 768px) {
  .mil-portfolio-slide .mil-cover {
    width: 100%;
    padding-bottom: 100%;
  }
  .mil-portfolio-slide .mil-work-descr {
    padding-left: 30px;
  }
}

.mil-slider-footer {
  padding: 0 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  position: absolute;
  bottom: 0;
  z-index: 999;
  left: 0;
  width: 100%;
  width: 100%;
  border-top: solid 1px rgba(115, 118, 123, 0.1);
}
@media (max-width: 992px) {
  .mil-slider-footer {
    height: 90px;
    background-color: rgba(10, 11, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: solid 1px rgba(115, 118, 123, 0.1);
  }
}

.mil-port-nav {
  width: 100%;
  position: absolute;
  z-index: 9;
  bottom: 55px;
  left: 0;
  display: flex;
  justify-content: center;
}
.mil-port-nav .mil-port-btn {
  width: 100px;
  height: 100px;
  background-color: #ff3131; /* CUP CHARGE - Red */
  border-radius: 50%;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* CUP CORE - White */
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-port-nav .mil-port-btn:last-child {
  margin-right: 0;
}
.mil-port-nav .mil-port-btn.swiper-button-disabled {
  background-color: transparent;
  border: solid 2px #73767b;
  color: var(--cup-core); /* CUP CANVAS - White */
  cursor: not-allowed;
}

.mil-ct-frame {
  position: absolute;
  top: -125px;
  right: 15px;
}

.mil-circle-text {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  animation: rotate 4s infinite linear;
}
.mil-circle-text svg {
  transform: scale(2);
  width: 150px;
  height: 150px;
}
.mil-circle-text svg text {
  fill: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
}
.mil-circle-text:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: solid 2px #f35a38;
}
.mil-circle-text.mil-dark-inside:after {
  background-color: #0a0b0f;
}
.mil-circle-text.mil-accent-inside:after {
  background-color: #ff3131; /* CUP CHARGE - Red */
}
@media (max-width: 992px) {
  .mil-circle-text {
    display: none;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* -------------------------------------------

counters

------------------------------------------- */
.mil-counter-item .mil-prog-track {
  width: 100%;
  background-color: rgba(115, 118, 123, 0.4);
  height: 6px;
  border-radius: 5px;
}
.mil-counter-item .mil-prog-track .mil-prog {
  height: 100%;
  width: 0;
  border-radius: 5px;
  background-color: #ff3131; /* CUP CHARGE - Red */
  transition: 0.8s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-counter-item .mil-counter-text {
  display: flex;
  align-items: flex-start;
}
.mil-counter-item .mil-counter-text .mil-counter-number {
  display: flex;
  align-items: flex-end;
  padding-right: 30px;
  padding-top: 8px;
  font-size: 72px;
}
.mil-counter-item .mil-counter-text .mil-counter-number span {
  display: block;
  line-height: 75%;
}
.mil-counter-item .mil-counter-text .mil-counter-number .mil-counter {
  min-width: 95px;
}
.mil-counter-item .mil-counter-text .mil-counter-number .mil-percent {
  font-size: 38px;
}

.mil-exp-box {
  position: relative;
  background-color: #ff3131; /* CUP CHARGE - Red */
  padding: 90px 90px 50px;
}
.mil-exp-box:before {
  content: "";
  background-color: #ff3131; /* CUP CHARGE - Red */
  width: 235px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -234px;
}
.mil-exp-box:after {
  content: "";
  background-color: rgba(242, 178, 121, 0.5);
  width: calc(100% + 30px);
  height: 160px;
  display: block;
  position: absolute;
  top: -160px;
  right: calc(-100% - 30px);
}
.mil-exp-box .mil-exp-content {
  display: flex;
  align-items: baseline;
}
.mil-exp-box .mil-exp-content .mil-exp-number {
  color: #ffffff; /* CUP CORE - White */
  letter-spacing: -10px;
  margin-right: 15px;
  font-size: 300px;
  font-weight: 600;
  line-height: 80%;
  position: relative;
}
.mil-exp-box .mil-exp-content .mil-exp-number span {
  color: #ffffff;
  font-size: 120px;
  position: absolute;
  top: -60px;
  right: -30px;
  line-height: 400;
}
.mil-exp-box .mil-exp-content .mil-exp-text {
  color: #ffffff; /* CUP CORE - White */
  height: auto;
  transform: rotate(-90deg) translateY(-50px) translatex(120px);
}
.mil-exp-box.mil-type-2:before {
  right: calc(-100% - 30px);
  width: calc(100% + 30px);
  left: auto;
}
.mil-exp-box.mil-type-2:after {
  display: none;
}
@media (max-width: 992px) {
  .mil-exp-box {
    padding: 60px;
    margin-top: 30px;
  }
  .mil-exp-box:before,
  .mil-exp-box:after {
    display: none;
  }
  .mil-exp-box .mil-exp-content {
    flex-direction: column;
  }
  .mil-exp-box .mil-exp-content .mil-exp-number {
    font-size: 150px;
    margin-bottom: 30px;
  }
  .mil-exp-box .mil-exp-content .mil-exp-text {
    color: #ffffff; /* CUP CORE - White */
    height: auto;
    transform: none;
  }
  .mil-exp-box .mil-exp-content .mil-exp-text br {
    display: none;
  }
}
@media (max-width: 768px) {
  .mil-exp-box {
    padding: 30px;
  }
}

.mil-exp-box-2 {
  padding-top: 160px;
  position: relative;
  background-color: #ff3131; /* CUP CHARGE - Red */
}
.mil-exp-box-2:after {
  content: "";
  background-color: rgba(242, 178, 121, 0.5);
  width: 100%;
  height: 161px;
  display: block;
  position: absolute;
  top: -160px;
  right: 0;
}
.mil-exp-box-2 .mil-exp-content .mil-exp-number {
  text-align: center;
  line-height: 40%;
  color: #ffffff; /* CUP CORE - White */
  letter-spacing: -10px;
  font-size: 260px;
  font-weight: 600;
  position: relative;
}
.mil-exp-box-2.mil-type-2:before {
  content: "";
  background-color: rgba(242, 178, 121, 0.5);
  width: 160px;
  height: 161px;
  display: block;
  position: absolute;
  top: -320px;
  right: -320px;
}
.mil-exp-box-2.mil-type-2:after {
  width: 160px;
  height: 161px;
  top: -160px;
  right: -160px;
}
.mil-exp-box-2.mil-type-3 .mil-exp-content .mil-exp-number {
  font-size: 480px;
  text-shadow: 75px -75px 0 #f2b279;
}
.mil-exp-box-2.mil-type-3:after {
  content: "";
  width: 100%;
  height: 161px;
  top: -160px;
  right: -100%;
}
@media (max-width: 992px) {
  .mil-exp-box-2:after {
    display: none;
  }
}

.mil-exp-box-3 {
  position: relative;
  padding-bottom: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mil-exp-box-3 .mil-exp-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mil-exp-box-3 .mil-exp-content .mil-exp-number {
  text-align: center;
  line-height: 100%;
  color: #ffffff; /* CUP CORE - White */
  letter-spacing: -10px;
  font-size: 360px;
  font-weight: 600;
  position: relative;
}
.mil-exp-box-3:before {
  position: absolute;
  content: "";
  background-color: rgba(243, 90, 56, 0.2);
  width: 75%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 10%;
  border-radius: 50%;
}
@media (max-width: 1200px) {
  .mil-exp-box-3 .mil-exp-content .mil-exp-number {
    font-size: 250px;
  }
}
/* -------------------------------------------

call to action

------------------------------------------- */
.mil-cta {
  padding: 90px 90px 60px;
  background-color: #ff3131; /* CUP CHARGE - Red */
}
@media (max-width: 992px) {
  .mil-cta {
    padding: 60px 60px 30px;
  }
}
@media (max-width: 768px) {
  .mil-cta {
    padding: 30px 30px 0;
  }
}

/* -------------------------------------------

blog

------------------------------------------- */
.mil-blog-card {
  text-decoration: none;
  display: block;
}
.mil-blog-card .mil-card-cover {
  position: relative;
  overflow: hidden;
  padding-bottom: 65%;
  margin-bottom: 30px;
}
.mil-blog-card .mil-card-cover .mil-hover-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-blog-card .mil-card-cover .mil-hover-frame img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.mil-blog-card .mil-card-cover .mil-hover-overlay {
  background-color: rgba(10, 11, 15, 0.6);
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-blog-card .mil-text {
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-blog-card.mil-card-sm {
  display: flex;
  align-items: center;
}
.mil-blog-card.mil-card-sm .mil-card-cover {
  margin-bottom: 0;
  width: 90px;
  height: 90px;
  padding-bottom: 0;
}
.mil-blog-card.mil-card-sm .mil-descr {
  width: calc(100% - 120px);
  padding-left: 30px;
}
.mil-blog-card:hover .mil-card-cover .mil-hover-frame {
  transform: scale(0.95);
}
.mil-blog-card:hover .mil-card-cover .mil-hover-overlay {
  opacity: 1;
}
.mil-blog-card:hover .mil-text {
  color: #ff3131; /* CUP CHARGE - Red */
}

.mil-share {
  display: flex;
}
.mil-share p {
  margin-right: 30px;
}

.mil-category li {
  list-style-type: none;
  margin-bottom: 30px;
}
.mil-category li a {
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-category li a:hover {
  color: #ff3131; /* CUP CHARGE - Red */
}
.mil-category li:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------

comments

------------------------------------------- */
.mil-comments li {
  list-style-type: none;
}
.mil-comments li .mil-comment {
  position: relative;
  display: flex;
  margin-bottom: 60px;
}
.mil-comments li .mil-comment .mil-avatar {
  margin-right: 30px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
}
.mil-comments li .mil-comment .mil-avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.mil-comments li .mil-comment .mil-comment-text {
  padding-bottom: 60px;
  width: 90%;
  border-bottom: solid 1px rgba(115, 118, 123, 0.2);
}
.mil-comments li .mil-comment .mil-comment-text .mil-reply {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  color: var(--cup-core);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-comments li .mil-comment .mil-comment-text .mil-reply:hover {
  color: #ff3131; /* CUP CHARGE - Red */
}
.mil-comments li ul {
  padding-left: 90px;
}
@media screen and (max-width: 768px) {
  .mil-comments li .mil-comment {
    flex-direction: column;
  }
  .mil-comments li .mil-comment .mil-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .mil-comments li ul {
    padding-left: 60px;
  }
}

/* -------------------------------------------

instagram

------------------------------------------- */
.mil-instagram {
  display: flex;
  flex-wrap: wrap;
}
.mil-instagram .mil-insta {
  width: calc(50% - 5px);
  padding-bottom: 50%;
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.mil-instagram .mil-insta:nth-child(even) {
  margin-right: 0;
}
.mil-instagram .mil-insta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-instagram .mil-insta:hover img {
  transform: scale(1.1);
}

/* -------------------------------------------

reviews

------------------------------------------- */
.mil-review {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mil-review .mil-user {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.mil-review .mil-user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mil-review.mil-left {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .mil-review.mil-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.mil-reviews-image {
  width: 100%;
  margin-bottom: -3px;
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .mil-reviews-image {
    display: none;
  }
}

.mil-reviews-nav {
  position: absolute;
  bottom: 0;
  width: calc(100% - 60px);
  display: flex;
  justify-content: space-between;
  z-index: 9;
}
@media (max-width: 768px) {
  .mil-reviews-nav {
    width: calc(100% - 30px);
  }
}

/* -------------------------------------------

slider

------------------------------------------- */
.mil-pagination {
  margin-top: 30px;
  background-color: rgba(115, 118, 123, 0.2);
}
.mil-pagination .swiper-scrollbar-drag {
  background-color: var(--cup-core);
  height: 5px;
}

.mil-slider-btn {
  cursor: pointer;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mil-slider-btn svg path {
  fill: #ffffff;
}
.mil-slider-btn.mil-prev {
  transform: rotate(180deg);
}
.mil-slider-btn.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}
.mil-slider-btn:hover svg path {
  fill: #f35a38;
}

/* -------------------------------------------

about

------------------------------------------- */
.mil-about-bg {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}
.mil-about-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
@media (max-width: 1200px) {
  .mil-about-bg {
    height: auto;
    padding-top: 180px;
  }
}

.mil-about-image-frame {
  position: relative;
  padding-bottom: 60%;
}
@media (max-width: 992px) {
  .mil-about-image-frame {
    padding-bottom: 0;
  }
}

.mil-about-img {
  background-color: #ff3131; /* CUP CHARGE - Red */
  height: 100%;
  width: 120%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 15px;
}
.mil-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mil-about-img.mil-out-right {
  width: 150%;
  left: -31%;
}
@media (max-width: 992px) {
  .mil-about-img {
    position: static;
    width: 100%;
    left: 0;
  }
  .mil-about-img.mil-out-right {
    width: 100%;
    left: -31%;
  }
}

@media (max-width: 992px) {
  .mil-about-text {
    padding-bottom: 90px;
  }
}

.mil-just-image {
  position: relative;
  overflow: hidden;
}
.mil-just-image.mil-v {
  padding-bottom: 120%;
}
.mil-just-image.mil-s {
  padding-bottom: 100%;
}
.mil-just-image.mil-h {
  padding-bottom: 65%;
}
.mil-just-image.mil-h.mil-shortened {
  padding-bottom: 45%;
}
.mil-just-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mil-content-box .mil-cb-image {
  position: relative;
  overflow: hidden;
  padding-bottom: 150%;
}
.mil-content-box .mil-cb-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.mil-content-box .mil-cb-image img.mil-image-1 {
  transform: translateY(100px);
}
@media (max-width: 992px) {
  .mil-content-box .mil-cb-image img.mil-image-1 {
    transform: none;
  }
}
.mil-content-box .mil-cb-image img.mil-image-2 {
  transform: translateY(60px);
}
@media (max-width: 992px) {
  .mil-content-box .mil-cb-image img.mil-image-2 {
    transform: none;
  }
}

/* -------------------------------------------

iconbox

------------------------------------------- */
.mil-iconbox img {
  width: 100px;
}
.mil-iconbox img.mil-type-2 {
  width: 120px;
}
.mil-iconbox .mil-text {
  width: 90%;
}
.mil-iconbox.mil-center {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.mil-iconbox.mil-type-2 {
  display: flex;
}
.mil-iconbox.mil-type-2 img {
  width: 120px;
  height: 120px;
}
.mil-iconbox.mil-type-2 .mil-ib-text {
  padding-left: 40px;
}
.mil-iconbox.mil-type-2 .mil-ib-text .mil-text {
  width: 80%;
}

/* -------------------------------------------

brands

------------------------------------------- */
.mil-brand {
  width: 60%;
  opacity: 0.7;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-brand:hover {
  opacity: 1;
}

.mil-partner-card {
  text-align: center;
  padding: 60px 30px;
  background-color: #000066; /* CUP CONNECT - Dark Blue */
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-partner-card:hover {
  background-color: #ff3131; /* CUP CHARGE - Red */
}

/* -------------------------------------------

form

------------------------------------------- */
.mil-form input,
.mil-form textarea,
.mil-form select {
  font-family: var(--font-primary); /* Sans-serif font system */
  font-size: 14px;
  color: var(--cup-core);
  padding: 0 30px;
  border: none;
  height: 60px;
  width: 100%;
  background-color: #0a0b0f; /* Dark background for white text */
  border: 1px solid var(--cup-gray-300);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.mil-form input:focus,
.mil-form textarea:focus,
.mil-form select:focus {
  outline: none;
  border-color: var(--cup-accent);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  background-color: #0a0b0f; /* Dark background for white text */
}
.mil-form input::placeholder,
.mil-form textarea::placeholder {
  color: var(--cup-gray-500);
}
.mil-form textarea {
  padding-top: 25px;
  height: 180px;
}
.mil-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
  padding-right: 50px;
  cursor: pointer;
}
.mil-form select option {
  background-color: #0a0b0f;
  color: var(--cup-core);
  padding: 15px;
}
.mil-form select:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.mil-form select:focus {
  border-color: var(--cup-charge-red);
  box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.1);
}

/* Contact Form Success Message */
.cup-form-success-message {
  margin-top: 30px;
  padding: 20px 30px;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
  animation: slideIn 0.3s ease-out;
}

.cup-success-content {
  display: flex;
  align-items: center;
  color: #28a745;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
}

.cup-success-content svg {
  flex-shrink: 0;
  color: #28a745;
}

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

.mil-form.mil-subscribe {
  display: flex;
  width: 80%;
}
.mil-form.mil-subscribe input {
  margin-right: 15px;
  border: solid 1px rgba(115, 118, 123, 0.2);
}
.mil-form.mil-subscribe input:focus {
  outline: inherit;
  border: solid 1px rgba(115, 118, 123, 0.6);
}
@media (max-width: 992px) {
  .mil-form.mil-subscribe {
    width: 100%;
  }
}
.mil-form.mil-soft input,
.mil-form.mil-soft textarea {
  background-color: #000066; /* CUP CONNECT - Dark Blue */
}

/* -------------------------------------------

project

------------------------------------------- */
.mil-project-cover-frame {
  position: relative;
  padding-bottom: 50%;
}
@media (max-width: 992px) {
  .mil-project-cover-frame {
    padding-bottom: 60%;
  }
}

.mil-cover-img {
  background-color: #ff3131; /* CUP CHARGE - Red */
  height: 100%;
  width: 120%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 15px;
}
.mil-cover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mil-cover-img.mil-left {
  left: calc(-20% - 15px);
}
@media (max-width: 992px) {
  .mil-cover-img {
    top: 0;
    left: 15px;
    width: calc(100% - 30px);
  }
  .mil-cover-img.mil-left {
    left: 15px;
  }
}

@media (max-width: 992px) {
  .mil-project-text {
    padding-top: 30px;
  }
}

/* -------------------------------------------

services

------------------------------------------- */
.mil-service-item {
  display: block;
  padding: 30px 0;
  border-top: solid 1px rgba(115, 118, 123, 0.2);
}
.mil-service-item:first-child {
  border: none;
  padding-top: 0;
}
.mil-service-item:last-child {
  padding-bottom: 0;
}
.mil-service-item .mil-service-text h3 {
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-service-item .mil-service-text h3 span {
  color: #ff3131; /* CUP CHARGE - Red */
  margin-right: 30px;
}
.mil-service-item .mil-service-text p {
  padding-left: 52px;
}
.mil-service-item .mil-service-right {
  position: relative;
  padding: 60px;
  text-align: right;
}
.mil-service-item .mil-service-right .mil-service-btn {
  width: 120px;
  height: 120px;
  color: var(--cup-core);
  border: solid 2px #ffffff;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 60px);
  left: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-service-item .mil-service-right .mil-service-cover {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-service-item .mil-service-right .mil-service-icon {
  height: 160px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
@media (max-width: 992px) {
  .mil-service-item .mil-service-right .mil-service-icon {
    height: 130px;
  }
}
.mil-service-item:hover .mil-service-text h3 {
  color: #ff3131; /* CUP CHARGE - Red */
}
.mil-service-item:hover .mil-service-right .mil-service-btn {
  border: solid 2px #f35a38;
  background-color: #ff3131; /* CUP CHARGE - Red */
  color: #ffffff; /* CUP CORE - White */
}
.mil-service-item:hover .mil-service-right .mil-service-cover {
  transform: scale(1);
  opacity: 1;
}
.mil-service-item:hover .mil-service-right .mil-service-icon {
  filter: grayscale(100%) brightness(300%);
}
@media (max-width: 768px) {
  .mil-service-item .mil-service-right {
    padding: 30px 0 0 52px;
    text-align: left;
  }
  .mil-service-item .mil-service-right .mil-service-btn {
    width: auto;
    position: static;
    padding: 0 40px;
    height: 60px;
    border-radius: 60px;
    display: inline-flex;
  }
  .mil-service-item .mil-service-right .mil-service-cover,
  .mil-service-item .mil-service-right .mil-service-icon {
    display: none;
  }
}

/* -------------------------------------------

accordion

------------------------------------------- */
.mil-accordion {
  width: 100%;
}
.mil-accordion .mil-accordion-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--cup-core);
  padding: 15px 0;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-accordion .mil-accordion-menu .mil-accordion-icon {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mil-accordion .mil-accordion-menu .mil-accordion-icon:after {
  content: "+";
}
.mil-accordion .mil-accordion-menu.mil-active {
  color: #ff3131; /* CUP CHARGE - Red */
}
.mil-accordion .mil-accordion-menu.mil-active .mil-accordion-icon:after {
  content: "-";
}
.mil-accordion .mil-accordion-menu.mil-active:hover {
  color: #ff3131; /* CUP CHARGE - Red */
}
.mil-accordion .mil-accordion-content {
  height: 0;
  overflow: hidden;
  font-size: 14px;
}
.mil-accordion .mil-accordion-content p {
  margin: 40px;
}

/* -------------------------------------------

video

------------------------------------------- */
.mil-video {
  position: relative;
  overflow: hidden;
  padding-bottom: 50%;
}
@media (max-width: 768px) {
  .mil-video {
    padding-bottom: 100%;
  }
}
.mil-video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mil-video a {
  position: absolute;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  width: 120px;
  height: 120px;
  border: solid 3px #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-video a svg {
  transform: scale(1) translateX(4px);
  width: 35px;
  height: 35px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-video a svg path {
  fill: #ffffff;
}
.mil-video a:hover {
  width: 130px;
  height: 130px;
  top: calc(50% - 65px);
  left: calc(50% - 65px);
}
.mil-video a:hover svg {
  transform: scale(1.2) translateX(4px);
}

/* -------------------------------------------

price

------------------------------------------- */
.mil-switcher {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #000066; /* CUP CONNECT - Dark Blue */
  width: 245px;
  padding: 0;
  border-radius: 50px;
}
.mil-switcher:after {
  content: "30% OFF";
  background-color: #ff914d; /* CUP CHARGE - Orange */
  padding: 10px 15px;
  border-radius: 5px;
  position: absolute;
  top: -20px;
  right: -50px;
  font-family: var(--font-primary); /* Sans-serif font system */
  font-size: 12px;
  font-weight: 600;
  color: #ffffff; /* CUP CORE - White */
}
.mil-switcher span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  text-align: center;
  height: 60px;
  cursor: pointer;
  color: var(--cup-core);
  border-radius: 50px;
  font-size: 14px;
  font-family: var(--font-primary); /* Sans-serif font system */
  margin-right: 5px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-switcher span:last-child {
  margin-right: 0;
}
.mil-switcher span.mil-active {
  background-color: #ff3131; /* CUP CHARGE - Red */
  color: #ffffff; /* CUP CORE - White */
}

.mil-price-card {
  padding: 60px 30px;
  text-align: center;
  background-color: rgba(20, 21, 26, 0.4);
}
.mil-price-card .mil-sup-text {
  font-size: 18px;
  margin-left: 5px;
}
.mil-price-card.mil-featured {
  background-color: #000066; /* CUP CONNECT - Dark Blue */
}
.mil-price-card .mil-price-list {
  text-align: center;
}
.mil-price-card .mil-price-list li {
  list-style-type: none;
  margin-bottom: 30px;
}
.mil-price-card .mil-price-list li:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------

team

------------------------------------------- */
.mil-team-card .mil-portrait {
  position: relative;
  padding-bottom: 120%;
  overflow: hidden;
}
.mil-team-card .mil-portrait img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* -------------------------------------------

store

------------------------------------------- */
.mil-store-card {
  display: block;
}
.mil-store-card .mil-cover-frame {
  position: relative;
  overflow: hidden;
  background-color: #000066; /* CUP CONNECT - Dark Blue */
  text-align: center;
  padding-bottom: 120%;
}
.mil-store-card .mil-cover-frame img {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 10%;
  object-fit: contain;
  object-position: center;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-store-card:hover .mil-cover-frame img {
  transform: scale(1.1);
}
.mil-store-card.mil-sale .mil-cover-frame:after {
  content: "-40%";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #73767b;
  font-size: 14px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  color: #ffffff; /* CUP CORE - White */
  position: absolute;
  top: 15px;
  left: 15px;
}

.mil-store-item-preview {
  background-color: #000066; /* CUP CONNECT - Dark Blue */
  padding-bottom: 80%;
}
.mil-store-item-preview img {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 80%;
  object-fit: contain;
}

.mil-rating {
  display: flex;
  align-items: center;
}
.mil-rating .mil-stars {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.mil-rating .mil-stars i {
  color: #ff3131; /* CUP CHARGE - Red */
}
.mil-rating .mil-stars i.mil-empty {
  color: var(--cup-core); /* CUP CANVAS - White */
}

/* -------------------------------------------

tabs

------------------------------------------- */
.mil-tabs {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  border-bottom: solid 1px rgba(115, 118, 123, 0.2);
}

.mil-tabs li {
  cursor: pointer;
  line-height: 110%;
  font-weight: 600;
  padding: 0 60px 30px;
  transform: translateY(2px);
}

.mil-tabs li.mil-current {
  border-bottom: solid 2px #f35a38;
  color: var(--cup-core);
}

.mil-tab-content {
  display: none;
  padding: 60px 0 0;
}

.mil-tab-content.mil-current {
  display: inherit;
}

/* -------------------------------------------

quantity

------------------------------------------- */
.mil-quantity-frame {
  margin-right: 15px;
  height: 60px;
  background-color: #000066; /* CUP CONNECT - Dark Blue */
  border-radius: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  width: 150px;
  justify-content: space-between;
}
.mil-quantity-frame * {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  color: var(--cup-core); /* CUP CANVAS - White */
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-quantity-frame input {
  width: 50px;
  background-color: transparent;
  border: none;
}
.mil-quantity-frame button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.mil-quantity-frame:hover * {
  color: var(--cup-core);
}

/* -------------------------------------------

footer

------------------------------------------- */
footer {
  border-top: solid 1px rgba(115, 118, 123, 0.2);
}
footer ul {
  padding: 0;
  margin: 0;
}
footer ul li {
  list-style-type: none;
  margin-bottom: 30px;
}
footer .mil-footer-menu li a {
  color: var(--cup-core); /* CUP CANVAS - White */
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
footer .mil-footer-menu li a:hover {
  color: var(--cup-core);
}
footer .mil-footer-bottom {
  padding: 50px 0 20px;
  border-top: solid 1px rgba(115, 118, 123, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* -------------------------------------------

cup services hero section

------------------------------------------- */
.cup-services-hero {
  position: relative;
  overflow: hidden;
  background-image: url('../img/services/service-bg.webp');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10% 0 0 0;
}
.cup-collaboration-process-hero {
  position: relative;
  overflow: hidden;
  background-image: url('../img/partnerships/collaborative-process.webp');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5% 0;
}
.cup-services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 1%,
    rgba(0, 0, 0, 0.2) 20%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.8) 80%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 1;
}
.cup-collaboration-process-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 15%,
    rgba(0, 0, 0, 0.6) 20%,
    rgba(0, 0, 0, 0.4) 22%,

    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0) 80%,
    rgba(0, 0, 0, 08) 90%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 1;
}



@media (max-width: 768px) {
  .cup-collaboration-process-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.8) 15%,
      rgba(0, 0, 0, 0.6) 20%,
      rgba(0, 0, 0, 0.4) 22%,
      rgba(0, 0, 0, 0) 25%,
      rgba(0, 0, 0, 0) 80%,
      rgba(0, 0, 0, 0) 90%,
      rgba(0, 0, 0, 1) 100%
    );
  }
}


.partner-text{
max-width: 50%;
}

.cup-services-hero > .container {
  position: relative;
  z-index: 2;
}

.cup-services-heading {
  margin-bottom: 100px !important;
  z-index: 9999 !important;
}

.cup-services-row {
  margin-top: 80px;
}

.cup-service-card-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  margin-bottom: 120px; /* Space for hover text below */
}

.cup-service-card-svg {
  background: url("img/shapes/card-shape.svg") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.cup-service-card-wrapper:hover .cup-service-card-svg {
  transform: translateY(-5px);
}

/* Enhanced hover effects for SVG gradients */
.cup-service-card-wrapper:hover .cup-service-card-svg path {
  filter: brightness(1.2) saturate(1.3);
  transition: filter 0.3s ease;
}

/* Specific hover effects for each card */
.cup-service-card-wrapper:nth-child(1):hover .cup-service-card-svg path {
  filter: brightness(1.15) saturate(1.25);
}

.cup-service-card-wrapper:nth-child(2):hover .cup-service-card-svg path {
  filter: brightness(1.15) saturate(1.25);
}

.cup-service-card-wrapper:nth-child(3):hover .cup-service-card-svg path {
  filter: brightness(1.1) saturate(1.2);
  stroke-width: 3;
}

.cup-service-card-wrapper:nth-child(4):hover .cup-service-card-svg path {
  filter: brightness(1.1) saturate(1.2);
  stroke-width: 3;
}


.cup-core-values-row {
  margin-top: 80px;
}

.cup-core-values-row > .col-lg-4:nth-child(1) .cup-service-card-svg path {
  /* Brew - Orange border */
  fill: none;
  stroke: #ff2626;
  stroke-width: 2;
  transition: fill 0.3s ease;
}
.cup-core-values-row > .col-lg-4:nth-child(2) .cup-service-card-svg path {
  /* Partner - Red border */
  fill: none;
  stroke: #ff914d;
  stroke-width: 2;
  transition: fill 0.3s ease;
}
.cup-core-values-row > .col-lg-4:nth-child(3) .cup-service-card-svg path {
  /* Stream - Orange border */
  fill: none;
  stroke: #ff2626;
  stroke-width: 2;
  transition: fill 0.3s ease;
}



/* hover fill per card - target the column (real child) */
.cup-services-row > .col-lg-3:nth-child(1):hover .cup-service-card-svg path {
  fill: url(#brewGradient);
  stroke: transparent;
}

.cup-services-row > .col-lg-3:nth-child(2):hover .cup-service-card-svg path {
  fill: url(#partnerGradient);
  stroke: transparent;
}

.cup-services-row > .col-lg-3:nth-child(3):hover .cup-service-card-svg path {
  fill: url(#streamGradient);
  stroke: transparent;
}

.cup-services-row > .col-lg-3:nth-child(4):hover .cup-service-card-svg path {
  fill: url(#createGradient);
  stroke: transparent;
}








/* Default state for all service cards: show colored borders, hide fill */
.cup-services-row > .col-lg-3:nth-child(1) .cup-service-card-svg path {
  /* Brew - Orange border */
  fill: none;
  stroke: #ff914d;
  stroke-width: 2;
  transition: fill 0.3s ease;
}
.cup-services-row > .col-lg-3:nth-child(2) .cup-service-card-svg path {
  /* Partner - Red border */
  fill: none;
  stroke: #ff2626;
  stroke-width: 2;
  transition: fill 0.3s ease;
}
.cup-services-row > .col-lg-3:nth-child(3) .cup-service-card-svg path {
  /* Stream - Orange border */
  fill: none;
  stroke: #ff914d;
  stroke-width: 2;
  transition: fill 0.3s ease;
}
.cup-services-row > .col-lg-3:nth-child(4) .cup-service-card-svg path {
  /* Co-Create - Red border */
  fill: none;
  stroke: #ff2626;
  stroke-width: 2;
  transition: fill 0.3s ease;
}

/* On hover: apply the proper gradient fill per card, make borders transparent */


/* Title text: visible by default */
.cup-service-card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  opacity: 1;
  
}

.cup-service-card-title {
  color: white;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  /* letter-spacing: 1px; */
  /* text-transform: uppercase; */
  margin: 0;
  padding: 0;
  transition: color 0.3s ease;
  z-index: 10;
  /* white-space: pre-line;
  text-align: center; */
}

.cup-service-card-title-va {
  color: white;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  /* letter-spacing: 1px; */
  /* text-transform: uppercase; */
  margin: 0;
  padding: 0;
  transition: color 0.3s ease;
  z-index: 10;
  /* white-space: pre-line;
  text-align: center; */
}

.cup-service-card-wrapper:hover {
  color: #ff914d;
}

/* Hover Section */
.cup-service-hover-section {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  /* background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.9) 50%,
    rgba(0, 0, 0, 0.95) 100%
  ); */
  padding: 5%;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;

  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 5rem;
  line-height: 1;

  text-align: center;
  text-decoration: none;

  z-index: 20;
  margin-top: 1%;
}

/* Desktop hover behavior - show description on hover */
@media (min-width: 768px) {
  /* Ensure hover section is visible on desktop */
  .cup-service-hover-section {
    display: block !important;
  }

  .cup-service-card-wrapper:hover .cup-service-hover-section {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Hide mobile description on desktop */
  .cup-service-description-mobile {
    display: none !important;
  }
}

.cup-service-hover-content {
  text-align: center;
}

.cup-service-description {
  color: white;
  font-size: 20px;
  line-height: 1;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 991px) {
  .cup-services-hero {
    min-height: 600px;
  }

  .cup-service-card-wrapper {
    height: 200px;
    margin-bottom: 100px; /* Reduced space for tablets */
  }

  .cup-service-card-title {
    font-size: 20px;
  }
  .cup-service-card-title-va {
    font-size: 36px;
  }

  .cup-services-heading {
    margin-bottom: 30px !important;
  }

  .cup-services-row {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  /* .cup-services-hero {
    background-size: cover;
    background-position: center;
    min-height: auto;
    padding: 15% 0 0 0;
  } */

  .cup-service-card-svg {
    width: 90%;
    height: 100%;
    transition: transform 0.3s ease;
    margin: 0 auto;
  }

  .cup-service-card-wrapper {
    height: 150px;
    text-align: center;
    margin-bottom: 80px; /* Reduced space for mobile */
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .cup-service-card-title {
    font-size: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .cup-service-card-title-va {
    font-size: 36px;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  /* Hide hover section on mobile - we'll show description in title position instead */
  .cup-service-hover-section {
    display: none !important;
  }

  /* Mobile click state: Hide title, show description in title position */
  .cup-service-card-wrapper.cup-card-active .cup-service-card-title {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }
  .cup-service-card-wrapper.cup-card-active .cup-service-card-title-va {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  /* Apply hover-like SVG effects when card is active on mobile */
  .cup-service-card-wrapper.cup-card-active .cup-service-card-svg {
    transform: translateY(-5px);
  }

  .cup-service-card-wrapper.cup-card-active .cup-service-card-svg path {
    filter: brightness(1.2) saturate(1.3);
  }

  /* Apply gradient fills on mobile when card is active (same as hover on desktop) */
  .cup-services-row > .col-lg-3:nth-child(1) .cup-service-card-wrapper.cup-card-active .cup-service-card-svg path {
    fill: url(#brewGradient);
    stroke: transparent;
  }
  .cup-services-row > .col-lg-3:nth-child(2) .cup-service-card-wrapper.cup-card-active .cup-service-card-svg path {
    fill: url(#partnerGradient);
    stroke: transparent;
  }
  .cup-services-row > .col-lg-3:nth-child(3) .cup-service-card-wrapper.cup-card-active .cup-service-card-svg path {
    fill: url(#streamGradient);
    stroke: transparent;
  }
  .cup-services-row > .col-lg-3:nth-child(4) .cup-service-card-wrapper.cup-card-active .cup-service-card-svg path {
    fill: url(#createGradient);
    stroke: transparent;
  }

  /* Description shown in title position on mobile when clicked */
  .cup-service-description-mobile {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-10px);
    text-align: center;
    z-index: 10;
    width: 70%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: white;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    font-weight: 500;
    
  }


  
  
  .cup-service-card-wrapper.cup-card-active .cup-service-description-mobile {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .cup-service-description {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .cup-service-hover-section {
    display: none; /* Hide hover sections on very small screens */
  }

  .cup-service-card-wrapper {
    height: 160px;
    margin-bottom: 20px; /* Minimal space for very small screens */
  }

  .cup-service-card-title {
    font-size: 20px;
  }
  .cup-service-card-title-va {
    font-size: 30px;
  }
}

/* =============================================
   Our Difference Section Styles
   ============================================= */

.cup-difference-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cup-service-about-section {
  position: relative;
  /* min-height: 80vh; */
  display: flex;
  align-items: start;
  overflow: hidden;
}




.value-story-section {
  position: relative;
  display: flex;
  align-items: start;
  overflow: hidden;

  min-height: 90vh;
}
.value-partnerships-section {
  position: relative;
  display: flex;
  align-items: start;
  overflow: hidden;

  min-height: 85vh;
}
.partner-profile-section {
  position: relative;
  display: flex;
  align-items: start;
  overflow: hidden;

  min-height: 80vh;
}

.cup-difference-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: black;
}


.cup-difference-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.cup-difference-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
  z-index: 2;
}

.cup-service-about-bg {
  position: absolute;
  top: 0;
  left: 20%;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: black;

}
.cup-service-about-bg-image {
  width: 100%;
  height: 80%;
  object-fit: cover;
  object-position: -26% center;  /* or 70% 50% */
}



.cup-service-about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  
  background:
  
  
  linear-gradient(
    to bottom,
    rgba(0, 0, 0,1) 0%,
    rgba(0, 0, 0, 0) 5%,
    rgba(0, 0, 0, 0) 95%,
    rgba(0, 0, 0, 1) 100%
  ),
  
  linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.3) 35%,
    transparent 100%
  );

  z-index: 2;
}

.cup-building-section {
  position: relative;
  background: #000;
  color: #ffffff;
  padding: 0 0 80px;
  margin: 50px 0;
}

.cup-building-bg {
  position: relative;
  width: 100%;
  height: 60vh;
}

.cup-building-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center 45%;/ */
  /* display: block; */
}




.cup-building-overlay {

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background:
  
  
  linear-gradient(
    to bottom,
    rgba(0, 0, 0,1) 0%,
    rgba(0, 0, 0, 0.8) 4%,
    rgba(0, 0, 0, 0) 15%,
    rgba(0, 0, 0, 0) 85%,
    rgba(0, 0, 0, 0.8) 96%,
    rgba(0, 0, 0, 1) 100%
  );

  padding: 50px 0;

}

.cup-building-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 32px 0 0;
}

.cup-building-title {
  margin-bottom: 18px;
  text-transform: none;
}

.cup-building-text {
  color: #e8e8e8;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cup-building-strong {
  color: #ffffff;
  font-weight: 800;
}

.cup-building-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .cup-building-section {
    padding: 0 0 70px;
  }

  .cup-building-content {
    padding: 28px 0 0;
  }

  .cup-building-text {
    font-size: 16px;
    line-height: 1.6;
  }
}

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

  .cup-building-content {
    padding: 24px 0 0;
  }

  .cup-building-title {
    font-size: 26px;
  }
}

.cup-our-story-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  background: #000;
}

.cup-our-story-section .cup-service-about-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cup-our-story-section .cup-service-about-bg-image {
  height: 50%;
  width: 110%;
  object-fit: cover;
  object-position: center 85%;
}

.cup-our-story-section .cup-service-about-overlay {
  height: 100%;
  background:
  /* TOP → BOTTOM fade */
  linear-gradient(
    180deg,
    rgba(0, 0, 0,1) 0%,      /* top dark */
    rgba(0, 0, 0, 0) 5%,         /* clear after top 5% */
    rgba(0, 0, 0, 0) 40%,        /* fully clear until halfway */
    rgba(0, 0, 0, 1) 44%,      /* start fading */
    rgba(0, 0, 0, 1) 100%      /* bottom fully dark */
  ),

  /* LEFT → RIGHT fade (left fully visible) */
  linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,         /* left 100% clear */
    rgba(0, 0, 0, 0) 45%,      /* soft middle fade */
    rgba(0, 0, 0, 0.7) 70%,
    rgba(0, 0, 0, 0.9) 100%      /* right dark */
  );
}

.cup-our-story-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 140px 0 120px;
}

.cup-our-story-top {
  max-width: 540px;
  margin-left: auto;
  text-align: left;
}

.cup-our-story-kicker{
  font-size: 20px;
  font-weight:700px;

}

.cup-our-story-heading {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: #ffffff;
}

.cup-our-story-stack {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-top: 300px;
}

.cup-our-story-copy {
  color: #f5f5f5;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 520px;
}

.cup-our-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 56px;
}

.cup-our-story-grid-wg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  
}

.cup-our-story-upper {
  align-items: start;
}

.cup-our-story-lower {
  align-items: center;
}

.cup-our-story-card {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.cup-our-story-card-shell {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
}

.cup-our-story-card-shell .cup-service-card-svg {
  width: 100%;
  height: 100%;
}

.cup-our-story-card-shell .cup-service-card-content {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cup-our-story-card-shell .cup-service-card-title {
  /* font-size: 50px; */
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}



.cup-danger-frame .cup-service-card-svg path {
  stroke: var(--cup-danger);
  fill: none;
  /* stroke-width: 3; */
}

.cup-warning-frame .cup-service-card-svg path {
  stroke: var(--cup-warning);
  fill: none;
  /* stroke-width: 3; */
}

.cup-our-story-points  {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
  margin-top: 50px;
  margin-right: 35px;
  margin-left:85px;
}

.cup-our-story-points p {

  color: #f0f0f0;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cup-our-story-points p:last-child {
  margin-bottom: 0;
}

.cup-our-story-note {
  color: #ffffff;
  font-weight: 500;
  line-height: 1.6;
  font-size: 20px;
  max-width: 790px;
  text-align: right;
  margin-left:35px;
  margin-right: 85px;
}









.cup-promise-section {
  position: relative;
  min-height: 100vh;
  background: url(../img/promise/promise-bg.webp) center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
}
.cup-promise-text {
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
  max-width: 620px;
}

.cup-promise-frame {
  position: relative;
  width: min(980px, 95vw);
  aspect-ratio: 315 / 197.74;
  max-height: 80vh;
}

.cup-promise-svg {
  width: 100%;
  height: 100%;
}

.cup-promise-svg path {
  fill: none;
  stroke: var(--cup-danger);
  stroke-width: 1;
}

.cup-promise-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 80px;
}



@media (max-width: 768px) {


.cup-promise-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 4px;
}
.cup-promise-section .cup-service-card-svg {
  display: none;
}

.cup-promise-text {
  font-size: 16px;
  line-height: 0.7;
  margin: 0;
  max-width: 620px;
}

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


  .cup-promise-copy {
    padding: 25px;
    gap: 10px;

  }
}

  .cup-promise-frame {
    width: 100%;
    aspect-ratio: 315 / 197.74;
  }

  .cup-promise-title {
    font-size: 32px;
  }

  .cup-promise-text {
    font-size: 16px;
    line-height: 1.5;
  }
}








@media (max-width: 1200px) {
  .cup-our-story-heading {
    font-size: 42px;
  }

  .cup-our-story-container {
    padding: 120px 0 110px;
  }
}

@media (max-width: 992px) {
  .cup-our-story-section {
    align-items: center;
  }

  .cup-our-story-container {
    padding: 24px 0 100px;
  }

  .cup-our-story-stack {
    margin-top: 60px;
    gap: 48px;
  }

  .cup-our-story-top {
    margin-left: 0;
    max-width: 100%;
    text-align: center;
  }

  .cup-our-story-copy {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .cup-our-story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cup-our-story-grid-wg {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cup-our-story-points {
    text-align: left;
  }
  .cup-our-story-points  { 
    margin-left: 5%;
    margin-right: 5%;
  }
  .cup-our-story-points p { 
    font-size: 16px;

}
  .cup-our-story-card {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .cup-our-story-heading {
    font-size: 36px;
  }

  .cup-our-story-copy {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .cup-our-story-container {
    padding: 24px 0 90px;
  }

  .cup-our-story-card-shell {
    max-width: 420px;
    aspect-ratio: 315 / 197.74;
  }

  .cup-our-story-note {
    font-size: 16px;
    margin-left: 5%;
    margin-right: 5%;
  }
  .cup-our-story-points p { 
    font-size: 16px;

}
.cup-our-story-points  { 
  margin-left: 5%;
  margin-right: 5%;
}
.svg-up{
  order: -1;
}


}

.cup-difference-content {
  position: relative;
  z-index: 10;
  padding: 80px 0;
}
.cup-value-content {
  position: relative;
  z-index: 10;
  padding: 50px 0;
}

.cup-difference-suptitle {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}

  .cup-difference-title {
    /* font-size: 3.5rem;
    font-weight: 700; */
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 50px;
    text-transform: uppercase;
    /* letter-spacing: 1px; */

  }

.cup-difference-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cup-service-about-list {
  max-width:60%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cup-difference-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cup-value-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 45px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cup-difference-item.mil-up {
  opacity: 1;
  transform: translateY(0);
}

.cup-difference-icon {
  width: 20px;
  height: 2%;
  margin-right: 20px;
  flex-shrink: 0;
  filter: brightness(1.2) contrast(1.1);
  opacity: 1;
}

.cup-difference-text {
  font-size: 20px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 500;
  /* font-family: 'Inter', sans-serif; */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .cup-difference-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .cup-difference-section {
    min-height: 80vh;
  }

  .cup-difference-content {
    padding: 60px 0;
  }

  .cup-difference-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .cup-difference-text {
    font-size: 1rem;
  }

  .cup-difference-item {
    margin-bottom: 30px;
  }

  .cup-difference-icon {
      margin-top: 2.1%;
      width: 15px;
      height: 10%;
      margin-right: 15px;
    }

  
}

@media (max-width: 768px) {
  .cup-difference-section {
    min-height:10vh;
  }

  .cup-difference-content {
    padding: 40px 0;
  }

  .cup-difference-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .cup-difference-text {
    font-size: 16px;
  }

  .cup-difference-item {
    margin-bottom: 25px;
  }

  .cup-difference-icon {
  margin-top: 2.1%;

    width: 15px;
    height: 8%;
    margin-right: 15px;
  }




  .cup-difference-bg-image {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position:  center;
    /* Fade with a black overlay using a mask */
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    mask-mode: alpha;
    -webkit-mask-mode: alpha;
  }


  .cup-service-about-bg-image {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: center;  /* or 70% 50% */
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    mask-mode: alpha;
    -webkit-mask-mode: alpha;
  }


  /* .cup-our-story-section .cup-service-about-bg-image{

    object-position: center 50%;
  } */

}

/* @media (max-width: 576px) {
  .cup-difference-title {
    font-size: 1.8rem;
  }

  .cup-difference-text {
    font-size: 0.9rem;
  }

  .cup-difference-item {
    margin-bottom: 20px;
  }
} */

/* =============================================
   Call-to-Action Section Styles
   ============================================= */

.cup-cta-section {
  background: #000000;
  padding: 120px 0;
  text-align: center;
}

.cup-cta-content {
  max-width: 80%;
  margin: 0 auto;
}

.cup-cta-title {
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  /* letter-spacing: 0.5px; */
  margin-bottom: 40px;
  line-height: 1.2;
}

.cup-cta-description {
  font-size: 30px ;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 50px;
  font-weight: 500;
}

.cup-cta-button {
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  /* padding: 1.5% 6%;
   */
  width: 253.67px;
  height: 61.95px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  /* letter-spacing: 1px; */
  border-radius: 50px;
  transition: all 0.3s ease;
  background: transparent;
}
.cup-cta-button-wide {
  
  width: 353.67px;

}

.cup-cta-button:hover {
  background: linear-gradient(90deg, #FF3131 0%, #FF914D 100%);;
  color: #fff;
  border: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.partner-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.cup-partner-container{
  margin-top:24px;
}

@media (max-width: 768px) {
  .cup-cta-button {
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 1rem;
    /* padding: 15px 35px; */
    width: 253.67px;
    height: 55.95px;
  }
}

/* =============================================
   Footer Styles
   ============================================= */

.cup-footer {
  background: #000000;
  padding: 80px 0 60px;
  margin-bottom: 0;
  overflow-y: visible;
  position: relative;
  z-index: 10;
}

/* Ensure footer is not cut off on contact page */
#smooth-content {
  min-height: 100vh;
  padding-bottom: 0;
}

#smooth-content .cup-footer {
  margin-top: 0;
}

.cup-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.cup-footer-left {
  flex: 1;
}

.cup-footer-logo {
  margin-bottom: 30px;
  text-align: left;
}

.cup-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  object-position: center;
  
}

.cup-footer-company {
  margin-bottom: 30px;
}

.cup-company-name {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  /* letter-spacing: 1px; */
  margin-bottom: 15px;
  white-space: normal;
  text-align: left;

}

.cup-company-address {
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.cup-copyright {
  font-size: 0.8rem;
  color: #ffffff;
  margin: 0;
  text-align: left;
}

.cup-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  margin-right: 280px;
}

.cup-footer-button {
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  /* padding: 14px 40px; */
  width: 263.3px;
  height: 60px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  /* letter-spacing: 1px; */
  border-radius: 50px;
  transition: all 0.3s ease;
  background: transparent;
  margin-right: 20px;
}

.cup-footer-button:hover {
    background:linear-gradient(90deg, #FF3131 0%, #FF914D 100%);;
    color: #fff;
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  }

@media (max-width: 768px) {
  /* .cup-footer {
    padding: 50px 0 20px;
    margin-bottom: 10px;
  } */
  .cup-footer-button {
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 1rem;
    width: 223.67px;
    height: 55.95px;
  }
}

.cup-footer-nav {
  display: flex;
  gap: 150px;
}

.cup-nav-column {
  display: flex;
  flex-direction: column;
  /* justify-content: flex-start; */
  align-items: center;
  gap: 40px;
}

.cup-nav-link {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  /* letter-spacing: 1px; */
  font-size: 20px;
  transition: color 0.3s ease;
}

.cup-nav-link:hover {
  color: #cccccc;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .cup-cta-title {
    font-size: 32px;
  }

  .cup-cta-description {
    font-size: 16px;
  }

  .cup-footer-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .cup-footer-right {
    align-items: flex-start;
    margin-right:0px;
  }

  /* .cup-footer-nav {
    gap: 30px;
  } */
}

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

  .cup-cta-title {
    font-size: 30px;
  }

  .cup-cta-description {
    font-size: 16px;
  }

  .cup-footer {
    padding: 60px 0 30px;
  }

  .cup-footer-nav {
    /* flex-direction: column; */
    gap:100px;
  }
  .cup-company-name {
    font-size: 16px;
    text-align: center;
  }


  .cup-footer-right {
    align-items: center;
    margin-right:0px;
  }
 


  .cup-partner-container{
    margin-top:24px;
  }

  .cup-nav-link {
    font-size: 16px;
  }

  .cup-company-address {
    font-size: 12px;
    text-align: center;
  }

  .cup-copyright {
    text-align: center;
    font-size: 12px;
  }

  .cup-footer-button {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .cup-cta-title {
    font-size: 30px;
  }

  .cup-cta-description {
    font-size: 16px;
  }

  .cup-footer {
    padding: 40px 0 20px;
  }
}

/* ============================================
   INNOVATIVE ABOUT PAGE DESIGNS
   ============================================ */

/* Color Variables for Charge Colors */
:root {
  --cup-charge-red: #FF3131;
  --cup-charge-orange: #FF914D;
  --cup-gradient-bg: #000000;
  --cup-canvas-text: var(--cup-core);
}

.cup-charge-red-text {
  color: var(--cup-charge-red);
}

.cup-charge-orange-text {
  color: var(--cup-charge-orange);
}

.cup-blue-text {
  /* Reserved for future blue text styling */
  color: inherit;
}

/* Hero Section - Who We Are */
.cup-about-hero {
  width: 100%;
  height: 100vh; /* FULL SCREEN HEIGHT */
  position: relative;
  overflow: hidden;
}

.cup-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cup-hero-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-primary);
}

.cup-title-main {
  color: var(--cup-charge-red);
  font-size: 120px;
  letter-spacing: -2px;
  transform: translateX(-20px);
  font-family: var(--font-primary);
}

.cup-title-sub {
  color: var(--cup-core);
  font-size: 64px;
  letter-spacing: 4px;
  transform: translateX(40px);
  font-family: var(--font-primary);
}

.cup-title-accent {
  color: var(--cup-charge-orange);
  font-size: 56px;
  letter-spacing: 8px;
  transform: translateX(60px);
  font-family: var(--font-primary);
}

.cup-hero-description {
  margin-top: 40px;
}

.cup-hero-visual {
  position: relative;
  height: 500px;
}

.cup-floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cup-charge-red), var(--cup-charge-orange));
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.cup-shape-1 {
  width: 200px;
  height: 200px;
  top: 0;
  right: 0;
  animation-delay: 0s;
}

.cup-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 100px;
  right: 50px;
  animation-delay: 2s;
}

.cup-shape-3 {
  width: 100px;
  height: 100px;
  top: 150px;
  right: 150px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

/* Values Section - Asymmetric Cards */
.cup-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.cup-value-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cup-value-card:nth-child(1) {
  transform: translateY(-40px);
}

.cup-value-card:nth-child(2) {
  transform: translateY(40px);
}

.cup-value-card:nth-child(3) {
  transform: translateY(-20px);
}

.cup-value-card:hover {
  transform: translateY(-20px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 49, 49, 0.5);
  box-shadow: 0 30px 60px rgba(255, 49, 49, 0.3);
}

.cup-value-number {
  position: absolute;
  top: -20px;
  right: 30px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 49, 49, 0.15);
  line-height: 1;
  z-index: 0;
  font-family: var(--font-primary);
}

.cup-value-content {
  position: relative;
  z-index: 2;
  font-family: var(--font-primary);
}

.cup-value-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--cup-charge-red), var(--cup-charge-orange));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cup-value-card:hover .cup-value-accent {
  transform: scaleX(1);
}

/* Services Section - Zigzag Layout */
.cup-services-zigzag {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cup-service-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  align-items: center;
  padding: 50px 0;
  position: relative;
}

.cup-service-item.cup-service-right {
  grid-template-columns: 1fr 120px;
  direction: rtl;
}

.cup-service-item.cup-service-right > * {
  direction: ltr;
}

.cup-service-icon {
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 49, 49, 0.2);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: var(--font-primary);
}

.cup-service-icon::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(255, 49, 49, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.1; }
}

.cup-service-content {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--cup-charge-red);
  padding: 40px;
  border-radius: 0 24px 24px 0;
  transition: all 0.4s ease;
  font-family: var(--font-primary);
}

.cup-service-right .cup-service-content {
  border-left: none;
  border-right: 4px solid var(--cup-charge-orange);
  border-radius: 24px 0 0 24px;
}

.cup-service-item:hover .cup-service-content {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--cup-charge-orange);
  transform: translateX(20px);
}

.cup-service-right:hover .cup-service-content {
  transform: translateX(-20px);
}

/* Story Section - Split Layout */
.cup-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cup-story-main {
  padding-top: 10px;
  font-family: var(--font-primary);
}

.cup-story-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cup-story-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: all 0.4s ease;
}

.cup-story-card-1 {
  transform: translateX(40px);
}

.cup-story-card-2 {
  transform: translateX(-40px);
}

.cup-story-card:hover {
  transform: translateX(0) translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(255, 49, 49, 0.2);
}

.cup-story-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  opacity: 0.8;
  color: var(--cup-charge-red);
}

.cup-story-card-icon svg {
  width: 100%;
  height: 100%;
}

.cup-story-card-2 .cup-story-card-icon {
  color: var(--cup-charge-orange);
}

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

.cup-story-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-family: var(--font-primary);
}

.cup-story-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cup-charge-red);
  font-weight: bold;
}

/* Partnerships Section - Hub & Spoke */
.cup-partnerships-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  position: relative;
}

.cup-partner-hub {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 500px;
}

.cup-hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--cup-charge-red), var(--cup-charge-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 900;
  color: var(--cup-core);
  box-shadow: 0 20px 60px rgba(255, 49, 49, 0.4);
  z-index: 10;
  animation: hubPulse 3s ease-in-out infinite;
  font-family: var(--font-primary);
}

@keyframes hubPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

.cup-partner-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cup-partner-node {
  position: absolute;
  width: 300px;
}

.cup-partner-1 {
  top: 10%;
  left: 5%;
}

.cup-partner-2 {
  bottom: 10%;
  right: 5%;
}

.cup-partner-line {
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, var(--cup-charge-red), transparent);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.cup-partner-2 .cup-partner-line {
  top: auto;
  bottom: -100px;
  background: linear-gradient(0deg, var(--cup-charge-orange), transparent);
}

.cup-partner-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  z-index: 5;
  transition: all 0.4s ease;
  font-family: var(--font-primary);
}

.cup-partner-node:hover .cup-partner-content {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cup-charge-red);
  transform: scale(1.05);
}

.cup-partner-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.cup-partner-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-family: var(--font-primary);
}

.cup-partner-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--cup-charge-orange);
  font-size: 20px;
}

/* Contact Section - Modern Grid */
.cup-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.cup-contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary);
}

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

.cup-contact-card:hover::before {
  left: 100%;
}

.cup-contact-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cup-charge-red);
  box-shadow: 0 20px 40px rgba(255, 49, 49, 0.3);
}

.cup-contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  color: var(--cup-charge-red);
  transition: all 0.4s ease;
}

.cup-contact-card:hover .cup-contact-icon {
  transform: scale(1.2) rotate(5deg);
  color: var(--cup-charge-orange);
}

.cup-contact-icon svg {
  width: 100%;
  height: 100%;
}

.cup-contact-card a {
  transition: color 0.3s ease;
}

.cup-contact-card:hover a {
  color: var(--cup-charge-orange);
}

.cup-contact-cta {
  text-align: center;
}

.cup-contact-btn {
  display: inline-block;

}

/* Responsive Design */
@media (max-width: 992px) {
  .cup-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cup-title-main {
    font-size: 80px;
    transform: translateX(0);
  }
  
  .cup-title-sub {
    font-size: 48px;
    transform: translateX(0);
  }
  
  .cup-title-accent {
    font-size: 40px;
    transform: translateX(0);
  }
  
  .cup-values-grid {
    grid-template-columns: 1fr;
  }
  
  .cup-value-card:nth-child(1),
  .cup-value-card:nth-child(2),
  .cup-value-card:nth-child(3) {
    transform: translateY(0);
  }
  
  .cup-service-item {
    grid-template-columns: 80px 1fr;
    gap: 30px;
  }
  
  .cup-service-item.cup-service-right {
    grid-template-columns: 1fr 80px;
  }
  
  .cup-story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cup-story-card-1,
  .cup-story-card-2 {
    transform: translateX(0);
  }
  
  .cup-partner-hub {
    height: 700px;
  }
  
  .cup-partner-1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .cup-partner-2 {
    bottom: 5%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  
  .cup-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cup-hero-title {
    font-size: 48px;
  }
  
  .cup-title-main {
    font-size: 60px;
  }
  
  .cup-title-sub {
    font-size: 36px;
  }
  
  .cup-title-accent {
    font-size: 32px;
  }
  
  .cup-service-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cup-service-item.cup-service-right {
    grid-template-columns: 1fr;
  }
  
  .cup-service-icon {
    order: -1;
  }
  
.cup-service-content {
  border-left: 4px solid var(--cup-charge-red);
  border-right: none;
  border-radius: 24px;
}

.cup-service-right .cup-service-content {
  border-left: 4px solid var(--cup-charge-red);
  border-right: none;
}
}

/* Our Story Page - Timeline */
.cup-story-timeline {
  position: relative;
  padding-left: 40px;
}

.cup-story-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cup-charge-red), var(--cup-charge-orange));
  opacity: 0.3;
}

.cup-timeline-item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 40px;
}

.cup-timeline-item:last-child {
  margin-bottom: 0;
}

.cup-timeline-marker {
  position: absolute;
  left: -8px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cup-charge-red);
  border: 4px solid var(--cup-gradient-bg);
  box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.2);
  animation: pulse-timeline 2s ease-in-out infinite;
}

@keyframes pulse-timeline {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 49, 49, 0);
  }
}

.cup-timeline-content {
  font-family: var(--font-primary);
}

/* Story Highlight Card */
.cup-story-highlight {
  position: sticky;
  top: 120px;
}

.cup-highlight-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
}

.cup-highlight-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 49, 49, 0.15);
}

.cup-highlight-icon {
  width: 80px;
  height: 80px;
  /* margin: 0 auto 30px; */
  color: var(--cup-charge-red);
  opacity: 0.9;
}

.cup-highlight-icon svg {
  width: 100%;
  height: 100%;
}

/* Milestones Grid */
.cup-story-milestones {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0;
  padding-bottom:60px;
}

.cup-milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.cup-milestone-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cup-milestone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cup-charge-red), var(--cup-charge-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cup-milestone-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(255, 49, 49, 0.2);
}

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

.cup-milestone-number {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 49, 49, 0.15);
  margin-bottom: 20px;
  font-family: var(--font-primary);
  transition: color 0.4s ease;
}

.cup-milestone-card:hover .cup-milestone-number {
  color: rgba(255, 49, 49, 0.3);
}

.cup-milestone-content {
  font-family: var(--font-primary);
}

/* Value Story Cards */
.cup-value-story-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cup-value-story-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 49, 49, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cup-value-story-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(255, 49, 49, 0.2);
  border-color: rgba(255, 49, 49, 0.3);
}

.cup-value-story-card:hover::after {
  opacity: 1;
}

.cup-value-story-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 30px;
  color: var(--cup-charge-red);
  opacity: 0.9;
  transition: transform 0.4s ease;
}

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

.cup-value-story-icon svg {
  width: 100%;
  height: 100%;
}

/* Future Section */
.cup-story-future {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 49, 49, 0.03) 50%, transparent 100%);
}

.cup-future-content {
  font-family: var(--font-primary);
}

.cup-future-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.cup-future-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  max-width: 450px;
  transition: all 0.4s ease;
  position: relative;
}

.cup-future-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--cup-charge-red), var(--cup-charge-orange));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cup-future-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(255, 49, 49, 0.25);
}

.cup-future-card:hover::before {
  opacity: 1;
}

.cup-future-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  color: var(--cup-charge-red);
  opacity: 0.9;
  transition: transform 0.4s ease;
}

.cup-future-card:hover .cup-future-icon {
  transform: scale(1.1) rotate(10deg);
}

.cup-future-icon svg {
  width: 100%;
  height: 100%;
}

/* CTA Button Secondary */
.cup-cta-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--cup-canvas-text);
}

.cup-cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Responsive Styles for Our Story Page */
@media (max-width: 992px) {
  .cup-story-timeline {
    padding-left: 30px;
  }

  .cup-timeline-item {
    padding-left: 30px;
  }

  .cup-story-highlight {
    position: relative;
    top: 0;
    margin-top: 60px;
  }

  .cup-milestones-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 10px;
  }

  .cup-value-story-card {
    margin-bottom: 30px;
  }

  .cup-future-visual {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .cup-story-timeline {
    padding-left: 20px;
  }

  .cup-timeline-item {
    padding-left: 25px;
    margin-bottom: 40px;
  }

  .cup-timeline-marker {
    width: 14px;
    height: 14px;
    left: -6px;
  }

  .cup-milestone-card {
    padding: 30px 25px;
  }

  .cup-milestone-number {
    font-size: 48px;
  }

  .cup-value-story-card {
    padding: 40px 30px;
  }

  .cup-future-card {
    padding: 40px 30px;
  }
}

/* Careers Page - Life at Cup Section */
.cup-life-section {
  background: rgba(255, 255, 255, 0.02);
}

.cup-life-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  padding-left: 120px;
}

.cup-life-timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cup-charge-red), var(--cup-charge-orange));
  opacity: 0.3;
}

.cup-life-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.cup-life-item::before {
  content: '';
  position: absolute;
  left: -80px;
  top: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cup-charge-red);
  border: 4px solid var(--cup-gradient-bg);
  box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.2);
  z-index: 2;
}

.cup-life-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 49, 49, 0.3);
  box-shadow: 0 10px 30px rgba(255, 49, 49, 0.15);
}

/* Life at Cup Image Container */
.cup-life-image-container {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.cup-life-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.cup-life-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(255, 49, 49, 0.3);
  border-color: rgba(255, 49, 49, 0.4);
}

.cup-life-featured-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 24px;
}

.cup-life-image-wrapper:hover .cup-life-featured-image {
  transform: scale(1.08);
}

.cup-life-image-wrapper:hover .cup-hero-image-overlay {
  opacity: 1;
}

.cup-life-time {
  font-size: 18px;
  font-weight: 700;
  color: var(--cup-charge-red);
  font-family: var(--font-primary);
  white-space: nowrap;
  min-width: 100px;
  position: absolute;
  left:-23%;
  top: 30px;
}

.cup-life-content {
  flex: 1;
  font-family: var(--font-primary);
}

/* Team Stories Section */
.cup-team-stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.cup-story-card-modern {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cup-story-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cup-charge-red), var(--cup-charge-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cup-story-card-modern:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(255, 49, 49, 0.2);
  border-color: rgba(255, 49, 49, 0.3);
}

.cup-story-card-modern:hover::before {
  transform: scaleX(1);
}

.cup-story-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.cup-story-avatar {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.cup-story-avatar svg {
  width: 100%;
  height: 100%;
}

.cup-story-author {
  flex: 1;
  font-family: var(--font-primary);
}

.cup-story-quote {
  font-family: var(--font-primary);
  position: relative;
  padding-left: 30px;
}

.cup-story-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 48px;
  color: var(--cup-charge-red);
  opacity: 0.3;
  font-weight: 700;
  line-height: 1;
}

/* Responsive Styles for Careers Page */
@media (max-width: 1600px) {
  .cup-life-timeline {
    padding-left: 100px;
  }

  .cup-life-timeline::before {
    left: 50px;
  }

  .cup-life-item::before {
    left: -70px;
  }

  .cup-life-time {
    left: -24%;
    font-size: 17px;
  }
}

@media (max-width: 1400px) {
  .cup-life-timeline {
    padding-left: 90px;
  }

  .cup-life-timeline::before {
    left: 45px;
  }

  .cup-life-item::before {
    left: -65px;
  }

  .cup-life-time {
    left: -24%;
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .cup-life-timeline {
    padding-left: 85px;
  }

  .cup-life-timeline::before {
    left: 42px;
  }

  .cup-life-item::before {
    left: -60px;
  }

  .cup-life-time {
    left: -25%;
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .cup-life-timeline {
    padding-left: 0;
    padding-right: 0;
  }

  .cup-life-timeline::before {
    display: none;
  }

  .cup-life-image-container {
    position: relative;
    top: 0;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .cup-life-item {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
  }

  .cup-life-item::before {
    left: 0;
    top: 20px;
  }

  .cup-life-time {
    position: static;
    left: auto;
    margin-bottom: 15px;
    min-width: auto;
    font-size: 16px;
  }

  .cup-life-content {
    width: 100%;
  }

  .cup-team-stories {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .cup-life-timeline {
    padding-left: 0;
    padding-right: 0;
  }

  .cup-life-timeline::before {
    display: none;
  }

  .cup-life-item {
    padding: 20px 15px;
    flex-direction: column;
  }

  .cup-life-item::before {
    left: 5px;
    top: 6px;
  }

  .cup-life-time {
    position: static;
    left: auto;
    margin-bottom: 15px;
    min-width: auto;
    font-size: 15px;
  }

  .cup-life-content {
    width: 100%;
  }

  .cup-story-card-modern {
    padding: 30px 25px;
  }
}

/* Image Wrappers for Page Images */
.cup-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.cup-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 49, 49, 0.2);
  border-color: rgba(255, 49, 49, 0.3);
}

.cup-hero-image,
.cup-section-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.cup-hero-image {
  min-height: 400px;
  max-height: 600px;
}

/* About Hero Section - Full Bleed */
.cup-about-hero-section {
  position: relative;
  padding: 0;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
}

.cup-about-hero-media {
  position: absolute;
  inset: 0;
}

.cup-about-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
  display: block;
  
}

.cup-about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.95) 70%,
    rgba(0, 0, 0, 1) 100%
  );
    pointer-events: none;
}





.cup-story-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
  display: block;
}

@media (max-width: 768px) {
  .cup-story-hero-bg {
    object-fit: cover;
    object-position: center 0%;
  }

  .cup-footer-logo{
    text-align: center;
  }
}
.cup-story-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.95) 80%,
    rgba(0, 0, 0, 1) 90%
  );
    pointer-events: none;
}

.cup-story-milestones{
  margin-top: 24px;
  padding-bottom:0px;
}
.cup-footer-company{
  text-align: center;
}



.cup-value-content{
  padding: 24px 0;
}

.cup-about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
  padding: 80px 0 0px;
  text-align: center;
  color: #ffffff;
}


.cup-about-hero-section .cup-hero-title {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 60px;
}

.cup-about-hero-section .cup-hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto;
  max-width: 920px;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .cup-about-hero-section {
    min-height: 80vh;
  }


  .cup-about-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 0%;
    display: block;
  }

  .cup-about-hero-content {
    padding: 120px 0 140px;
  }
}

@media (max-width: 992px) {
  .cup-about-hero-section {
    min-height: 72vh;
  }

  .cup-about-hero-content {
    padding: 100px 0 120px;
  }

  .cup-about-hero-section .cup-hero-title {
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {


  .cup-about-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 0%;
    display: block;


  }



  .cup-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.3) 55%,
      rgba(0, 0, 0, 0.5) 70%,
      rgba(0, 0, 0, 1) 100%
    );
      pointer-events: none;
  }

  .cup-about-hero-section {
    min-height: 70vh;
  }

  .cup-about-hero-content {
    padding: 80px 0 0px;
  }

  .cup-about-hero-content .cup-hero-title {
    padding-bottom: 40px;
  }



  .cup-about-hero-section .cup-hero-subtitle {
    font-size: 18px;
  }
}

/* Our Story Hero Section - Optimized Layout */
.cup-story-hero-section {
  padding-top: 60px;
  padding-bottom: 120px;
}

/* Careers Hero Section - Innovative Layout */
.cup-careers-hero-section {
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.cup-careers-hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 650px;
}

.cup-careers-hero-image-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.cup-careers-hero-image-mobile {
  display: none;
}

.cup-careers-hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cup-careers-hero-image-wrapper:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 40px 100px rgba(255, 49, 49, 0.4);
  border-color: rgba(255, 49, 49, 0.5);
}

.cup-careers-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cup-careers-hero-image-wrapper:hover .cup-careers-hero-image {
  transform: scale(1.1);
}

.cup-careers-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 49, 49, 0.15) 0%, rgba(255, 145, 77, 0.1) 50%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cup-careers-hero-image-wrapper:hover .cup-careers-hero-overlay {
  opacity: 1;
}

.cup-careers-hero-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--cup-charge-red), var(--cup-charge-orange));
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 49, 49, 0.4);
  z-index: 2;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(255, 49, 49, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 49, 49, 0.6);
  }
}

.cup-badge-text {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cup-careers-hero-content-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.cup-careers-hero-content {
  width: 100%;
}

.cup-hero-badge-small {
  display: inline-block;
  background: rgba(255, 49, 49, 0.15);
  border: 1px solid rgba(255, 49, 49, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 30px;
}

.cup-hero-badge-small span {
  font-size: 14px;
  font-weight: 600;
  color: var(--cup-charge-red);
  font-family: var(--font-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.cup-careers-hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  font-family: var(--font-primary);
  letter-spacing: -0.02em;
}

.cup-careers-hero-subtitle {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--cup-core);
  font-family: var(--font-primary);
  opacity: 0.9;
}

.cup-careers-hero-tagline {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 50px;
  color: var(--cup-core);
  font-family: var(--font-primary);
  opacity: 0.85;
  font-style: italic;
}

.cup-careers-hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cup-stat-item {
  flex: 1;
}

.cup-stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--cup-charge-red);
  font-family: var(--font-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.cup-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--cup-core);
  font-family: var(--font-primary);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cup-careers-hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cup-btn-careers-primary,
.cup-btn-careers-secondary {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  text-decoration: none;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cup-btn-careers-primary {
  background: linear-gradient(135deg, var(--cup-charge-red), var(--cup-charge-orange));
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(255, 49, 49, 0.3);
}

.cup-btn-careers-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 49, 49, 0.5);
  background: linear-gradient(135deg, var(--cup-charge-orange), var(--cup-charge-red));
}

.cup-btn-careers-secondary {
  background: transparent;
  color: var(--cup-core);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cup-btn-careers-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--cup-charge-red);
  color: var(--cup-charge-red);
}

/* Responsive Styles for Careers Hero */
@media (max-width: 1200px) {
  .cup-careers-hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .cup-careers-hero-title {
    font-size: 52px;
  }

  .cup-careers-hero-stats {
    gap: 30px;
  }

  .cup-stat-number {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .cup-careers-hero-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
  }

  .cup-careers-hero-image-wrapper {
    min-height: 500px;
  }

  .cup-careers-hero-content {
    text-align: center;
  }

  .cup-careers-hero-title {
    font-size: 42px;
  }

  .cup-careers-hero-stats {
    justify-content: center;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .cup-careers-hero-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .cup-careers-hero-image-wrapper {
    min-height: 400px;
  }

  .cup-careers-hero-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .cup-careers-hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .cup-careers-hero-tagline {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .cup-careers-hero-stats {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .cup-stat-number {
    font-size: 28px;
  }

  .cup-stat-label {
    font-size: 11px;
  }

  .cup-careers-hero-cta {
    flex-direction: column;
  }

  .cup-btn-careers-primary,
  .cup-btn-careers-secondary {
    width: 100%;
    padding: 16px 30px;
  }

  .cup-careers-hero-badge {
    top: 20px;
    right: 20px;
    padding: 10px 20px;
  }

  .cup-badge-text {
    font-size: 12px;
  }


  .cup-careers-hero-image-desktop {
    display: none;
  }

  .cup-careers-hero-image-mobile {
    display: flex;
    margin: 40px 0;
    width: 100%;
    height: auto;
  }

  .cup-careers-hero-image-mobile .cup-careers-hero-image-wrapper {
    width: 100%;
    min-height: 200px;
  }
}

.cup-hero-split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 600px;
}

.cup-hero-image-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.cup-hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  max-height: 800px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.cup-hero-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(255, 49, 49, 0.3);
  border-color: rgba(255, 49, 49, 0.4);
}

.cup-hero-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.cup-hero-image-wrapper:hover .cup-hero-featured-image {
  transform: scale(1.08);
}

.cup-hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 49, 49, 0.1) 0%, rgba(255, 145, 77, 0.05) 50%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cup-hero-image-wrapper:hover .cup-hero-image-overlay {
  opacity: 1;
}

.cup-hero-content-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.cup-hero-content {
  width: 100%;
}

/* .cup-hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  font-family: var(--font-primary);
  letter-spacing: -0.02em;
} */

.cup-hero-subtitle {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--cup-core);
  font-family: var(--font-primary);
  opacity: 0.9;
}

.cup-hero-tagline {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--cup-core);
  font-family: var(--font-primary);
  opacity: 0.95;
}

/* Responsive Styles for About Hero */
@media (max-width: 1200px) {
  .cup-hero-split-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .cup-hero-title {
    font-size: 48px;
  }

  .cup-hero-subtitle {
    font-size: 20px;
  }

  .cup-hero-tagline {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .cup-hero-split-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
  }

  .cup-hero-image-container {
    order: 2;
  }

  .cup-hero-content-container {
    order: 1;
  }

  .cup-hero-image-wrapper {
    min-height: 500px;
    max-height: 500px;
  }

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

  .cup-hero-title {
    font-size: 42px;
  }
}

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

  .cup-hero-image-wrapper {
    min-height: 300px;
    max-height: 300px;

  }

  .cup-hero-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .cup-hero-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .cup-hero-tagline {
    font-size: 20px;
  }
}

.cup-section-image {
  min-height: 200px;
  max-height: 400px;
}

.cup-image-wrapper:hover .cup-hero-image,
.cup-image-wrapper:hover .cup-section-image {
  transform: scale(1.05);
}

.cup-services-image .cup-section-image {
  min-height: 250px;
  max-height: 400px;
}

/* Services Featured Layout with Vertical Image */
.cup-services-featured {
  margin-top: 40px;
}

.cup-services-vertical-image {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.cup-vertical-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.4s ease;
  max-height: 800px;
}

.cup-image-wrapper:hover .cup-vertical-image {
  transform: scale(1.02);
}

.cup-services-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.cup-service-card-modern-v2 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cup-service-card-modern-v2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cup-charge-red), var(--cup-charge-orange));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.cup-service-card-modern-v2:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 49, 49, 0.3);
  box-shadow: 0 15px 35px rgba(255, 49, 49, 0.15);
}

.cup-service-card-modern-v2:hover::before {
  transform: scaleY(1);
}

.cup-service-number-modern {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 49, 49, 0.2);
  font-family: var(--font-primary);
  flex-shrink: 0;
  min-width: 60px;
  transition: color 0.4s ease;
}

.cup-service-card-modern-v2:hover .cup-service-number-modern {
  color: rgba(255, 49, 49, 0.4);
}

.cup-service-content-modern {
  flex: 1;
  font-family: var(--font-primary);
}

/* Responsive Styles for Services Featured Layout */
@media (max-width: 992px) {
  .cup-services-vertical-image {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .cup-vertical-image {
    max-height: 600px;
  }

  .cup-services-grid-modern {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .cup-service-card-modern-v2 {
    padding: 25px 20px;
    gap: 20px;
  }

  .cup-service-number-modern {
    font-size: 36px;
    min-width: 50px;
  }

  .cup-vertical-image {
    max-height: 500px;
  }
}

/* Responsive Image Styles */
@media (max-width: 992px) {
  .cup-hero-image {
    min-height: 350px;
    max-height: 500px;
  }

  .cup-section-image {
    min-height: 250px;
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .cup-hero-image {
    min-height: 300px;
    max-height: 400px;
  }

  .cup-section-image {
    min-height: 200px;
    max-height: 300px;
  }

  .cup-image-wrapper {
    margin-bottom: 20px;
    margin-top: 10px;
    border-radius: 16px;
  }


  .cup-services-featured {
    margin-top: 10px;
  }
}

/* Contact Page - Mobile Image Order */
@media (max-width: 992px) {
  .cup-contact-hero-row {
    display: flex;
    flex-direction: column;
  }

  .cup-contact-text-col {
    order: 1;
    margin-bottom: 20px;
  }

  .cup-contact-image-col {
    order: 2;
  }

  .cup-hero-image,
  .cup-section-image {
    border-radius: 16px;
  }
}

/* ============================================
   PARTNERSHIPS PAGE - INNOVATIVE DESIGN
   ============================================ */

/* Partnerships Hero Section */
.cup-partnerships-hero-section {
  padding-top: 60px;
  padding-bottom: 120px;
}

.cup-partnerships-hero-wrapper {
  position: relative;
}

.cup-partnerships-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, rgba(255, 49, 49, 0.95) 0%, rgba(255, 145, 77, 0.95) 100%);
  padding: 12px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  z-index: 10;
  box-shadow: 0 8px 24px rgba(255, 49, 49, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(255, 49, 49, 0.4);
  }
  50% {
    box-shadow: 0 8px 32px rgba(255, 49, 49, 0.6);
  }
}

.cup-badge-text {
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cup-hero-badge-small {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 49, 49, 0.1);
  border: 1px solid rgba(255, 49, 49, 0.3);
  border-radius: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.cup-hero-badge-small span {
  color: #FF3131;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

/* Partnerships Overview Section */
.cup-partnerships-overview {
  position: relative;
}

.cup-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.cup-partnerships-image-wrapper {
  position: relative;
  overflow: visible;
}

.cup-partnerships-connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.cup-connection-svg {
  width: 100%;
  height: 100%;
  opacity: 0.6;
  animation: connection-pulse 3s ease-in-out infinite;
}

@keyframes connection-pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}

.cup-connection-node {
  animation: node-pulse 2s ease-in-out infinite;
}

.cup-connection-node:nth-child(2) {
  animation-delay: 0.5s;
}

.cup-connection-node:nth-child(3) {
  animation-delay: 1s;
}

@keyframes node-pulse {
  0%, 100% {
    r: 3;
    opacity: 0.8;
  }
  50% {
    r: 5;
    opacity: 1;
  }
}

.cup-connection-line {
  stroke-dasharray: 5, 5;
  animation: line-dash 3s linear infinite;
}

@keyframes line-dash {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 20;
  }
}

/* .cup-overview-content {
  padding-left: 20px;
} */

/* Partnerships Profiles Grid */
.cup-partnerships-profiles {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 49, 49, 0.02) 50%, transparent 100%);
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .cup-partnerships-profiles {
    padding-top: 0px;
    padding-bottom: 100px;
  }
}

.cup-partnerships-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  /* margin-top: 60px; */
}

.cup-partnership-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cup-partnership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF3131 0%, #FF914D 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cup-partnership-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 49, 49, 0.5);
  box-shadow: 0 20px 60px rgba(255, 49, 49, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

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

.cup-partnership-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #FF3131;
  opacity: 0.6;
  transition: all 0.4s ease;
}

.cup-partnership-card:hover .cup-partnership-icon {
  opacity: 1;
  transform: scale(1.1) rotate(5deg);
}

.cup-partnership-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 80px;
  font-weight: 700;
  color: rgba(255, 49, 49, 0.1);
  line-height: 1;
  transition: all 0.4s ease;
}

.cup-partnership-card:hover .cup-partnership-number {
  color: rgba(255, 49, 49, 0.2);
  transform: scale(1.1);
}

.cup-partnership-content {
  position: relative;
  z-index: 2;
}

.cup-partnership-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 49, 49, 0.1) 0%, transparent 70%);
  border-radius: 50% 0 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cup-partnership-card:hover .cup-partnership-accent {
  opacity: 1;
}

/* Partnerships Process Section */
.cup-partnerships-process {
  position: relative;
}

.cup-process-image {
  position: relative;
}

.cup-process-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cup-process-steps-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.cup-process-step-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #FF3131;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 49, 49, 0.6);
  animation: dot-pulse 2s ease-in-out infinite;
}

.cup-process-step-dot:nth-child(2) {
  animation-delay: 0.5s;
  background: #FF914D;
  box-shadow: 0 0 20px rgba(255, 145, 77, 0.6);
}

.cup-process-step-dot:nth-child(3) {
  animation-delay: 1s;
}

@keyframes dot-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}

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

.cup-process-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #FF3131;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.4s ease;
}

.cup-process-card:hover {
  transform: translateX(10px);
  border-left-color: #FF914D;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(255, 49, 49, 0.15);
}

.cup-process-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF3131 0%, #FF914D 100%);
  border-radius: 12px;
  color: white;
  font-size: 24px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 49, 49, 0.3);
}

.cup-process-connector {
  position: absolute;
  left: 30px;
  bottom: -15px;
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, #FF3131 0%, transparent 100%);
  opacity: 0.5;
}

.cup-process-card:last-child .cup-process-connector {
  display: none;
}

/* Partnerships Priority Section */
.cup-partnerships-priority {
  background: linear-gradient(135deg, rgba(255, 49, 49, 0.05) 0%, rgba(255, 145, 77, 0.05) 100%);
  border-radius: 40px;
  margin: 60px 0;
  padding: 80px 0;
}

.cup-priority-content-wrapper {
  position: relative;
}

.cup-priority-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.cup-priority-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 3px solid #FF3131;
  transition: all 0.3s ease;
}

.cup-priority-highlight:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
  border-left-color: #FF914D;
}

.cup-highlight-icon {
  width: 24px;
  height: 24px;
  color: #FF3131;
  flex-shrink: 0;
}

.cup-priority-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cup-priority-card-visual {
  position: relative;
  width: 300px;
  height: 300px;
}

.cup-visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #FF3131 0%, #FF914D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(255, 49, 49, 0.4);
  z-index: 2;
  animation: center-pulse 3s ease-in-out infinite;
}

@keyframes center-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 20px 60px rgba(255, 49, 49, 0.4);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 25px 80px rgba(255, 49, 49, 0.6);
  }
}

.cup-visual-text {
  color: white;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
}

.cup-visual-connections {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cup-visual-node {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 49, 49, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.cup-visual-node-1 {
  top: 10%;
  left: 10%;
  animation: node-float 4s ease-in-out infinite;
}

.cup-visual-node-2 {
  top: 10%;
  right: 10%;
  animation: node-float 4s ease-in-out infinite 1s;
}

.cup-visual-node-3 {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: node-float 4s ease-in-out infinite 2s;
}

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

.cup-visual-node:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FF3131;
  transform: scale(1.1);
}

.cup-visual-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, rgba(255, 49, 49, 0.3) 0%, transparent 100%);
  transform-origin: top;
  transform: translate(-50%, -50%) rotate(var(--rotation, 0deg));
  opacity: 0.5;
}

.cup-visual-node-1 .cup-visual-line {
  --rotation: -45deg;
}

.cup-visual-node-2 .cup-visual-line {
  --rotation: 45deg;
}

.cup-visual-node-3 .cup-visual-line {
  --rotation: 0deg;
  height: 80px;
}

.cup-visual-label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Partnerships Contact Section */
.cup-partnerships-contact {
  position: relative;
}

.cup-partnerships-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  /* margin-top: 60px; */
}

.cup-partnership-contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cup-partnership-contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 49, 49, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cup-partnership-contact-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 49, 49, 0.5);
  box-shadow: 0 20px 60px rgba(255, 49, 49, 0.2);
}

.cup-partnership-contact-card:hover::before {
  opacity: 1;
}

.cup-partnership-contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  color: #FF3131;
  transition: all 0.4s ease;
}

.cup-partnership-contact-card:hover .cup-partnership-contact-icon {
  transform: scale(1.1) rotate(5deg);
  color: #FF914D;
}

.cup-contact-link {
  display: inline-block;
  color: #FF3131;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.cup-contact-link:hover {
  color: #FF914D;
  text-decoration: underline;
}

/* Responsive Design for Partnerships Page */
@media (max-width: 992px) {
  .cup-partnerships-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cup-partnerships-contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cup-priority-visual {
    height: 300px;
    margin-top: 40px;
  }

  .cup-priority-card-visual {
    width: 250px;
    height: 250px;
  }

  .cup-visual-center {
    width: 100px;
    height: 100px;
  }

  .cup-visual-text {
    font-size: 24px;
  }

  .cup-process-cards {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .cup-partnerships-badge {
    top: 15px;
    right: 15px;
    padding: 8px 16px;
  }

  .cup-badge-text {
    font-size: 10px;
  }

  .cup-partnership-card {
    padding: 30px;
  }

  .cup-partnership-number {
    font-size: 60px;
  }

  .cup-partnership-contact-card {
    padding: 40px 30px;
  }

  .cup-priority-visual {
    height: 250px;
  }

  .cup-priority-card-visual {
    width: 200px;
    height: 200px;
  }

  .cup-visual-node {
    width: 60px;
    height: 60px;
  }

  .cup-visual-label {
    font-size: 10px;
    bottom: -25px;
  }
}

/* Contact page - Get in Touch layout */
.cup-get-in-touch {
  background: #000;
  color: #fff;
  padding: 140px 0 120px;
}

.cup-get-in-touch-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 130px;
}

.cup-get-in-touch-kicker {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.cup-get-in-touch-title {
  font-size: 50px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 700;

}

.cup-get-in-touch-subtitle {
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.cup-contact-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
  max-width: 1000px;
  margin: 0 auto;
}

.cup-contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  /* padding: 22px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.02); */
}

.cup-contact-copy {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cup-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* padding: 14px 28px; */
  border: 1px solid #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  width: 300.67px;

  height: 50.95px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cup-contact-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

@media (max-width: 992px) {
  .cup-get-in-touch {
    padding: 140px 0 100px;
  }

  .cup-get-in-touch-title {
    font-size: 50px;
  }

  .cup-get-in-touch-subtitle {
    font-size: 20px;
  }

  .cup-contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cup-contact-btn {
    width: 100%;
  }


  .cup-get-in-touch-header{
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .cup-get-in-touch {
    padding: 140px 0 80px;
  }

  .cup-get-in-touch-title {
    font-size: 38px;
  }

  .cup-contact-item {
    padding: 10px 20px;
    border-radius: 28px;
  }

  .cup-contact-btn {
    padding: 14px 16px;
    letter-spacing: 0.06em;
  }
}

/* Contact page - Send us a Message */
.cup-message-section{
 margin: 0 auto;
 padding: 100px 0;
  font-family: 'Barlow', sans-serif;
}

.cup-message-header{
  text-align: center;
  /* max-width: 980px; */
  margin: 0 auto 40px;
}

.cup-message-title{
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 14px;
}

.cup-message-subtitle{
  opacity: 1;
  margin: 0;
  line-height: 1.6;
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 80px;
}

.cup-message-form{
  max-width: 1100px;
  margin: 0 auto;
}

.cup-message-grid{
  row-gap: 55px;
}

.cup-field{
  width: 100%;
}




.cup-input,
.cup-textarea{
  width: 100%;
  background: rgba(0,0,0,.35);
  color: #ffffff;
  border: 0.7px solid #fff;
  border-radius: 999px;
  padding: 18px 22px;
  outline: none;
}

.cup-textarea{
  border-radius: 22px;
  resize: vertical;
  padding: 20px 22px;
  min-height: 220px;
}

.cup-input::placeholder,
.cup-textarea::placeholder{
  color: #ffffff !important;
  text-transform: uppercase;
font-weight: 600;
  font-size: 18px;
} 

.cup-input:focus,
.cup-textarea:focus{
  border-color: rgba(255,255,255,.7);
  box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}

.cup-message-actions{
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.cup-submit{
  background: rgba(0,0,0,.35);
  color: #ffffff;
  border: 0.7px solid #ffffff;
  border-radius: 999px;
  padding: 18px 100px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
}

.cup-submit:hover{
  border-color: rgba(255,255,255,.7);
}

@media (max-width: 767px){
  .cup-message-section{ padding: 70px 0 55px; }
  .cup-textarea{ min-height: 190px; }


  .cup-message-grid{row-gap: 15px;}

  .cup-input::placeholder,
  .cup-textarea::placeholder{
    font-size: 14px;
  }
}

/* Careers - Stats strip */
.cup-career-stats {
  background: #000;
  padding: 90px 0 70px;
  text-align: center;
  font-family: 'Barlow', sans-serif;
}

.cup-career-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
  margin-bottom: 36px;
}

.cup-career-stat-number {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.cup-career-stat-number--orange {
  color: #FF914D;
}

.cup-career-stat-number--red {
  color: #FF3131;
}

.cup-career-stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
}

.cup-career-stats-cta {
  display: flex;
  justify-content: center;
}

.cup-career-stats-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  min-width: 220px;
}

.cup-career-stats-button:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .cup-career-stats {
    padding: 70px 0 60px;
  }

  .cup-career-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cup-career-stats-button {
    width: 100%;
  }
}

/* Careers - Team Stories (trapezoid cards) */
.cup-team-stories-section {
  background: #000;
  color: #fff;
  font-family: 'Barlow', sans-serif;
}

.cup-team-stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  
  column-gap: 0;   /* 🔴 removes horizontal gap */
  row-gap: 36px;   /* keeps vertical spacing */
}


.cup-team-story-card {
  position: relative;
  /* padding: 16px 0px 6px; */
  /* border: 1.5px solid rgba(255, 255, 255, 0.12); */
  border-radius: 20px;
  clip-path: polygon(4% 0, 96% 0, 100% 100%, 0 100%);
  background: rgba(255, 255, 255, 0.02);
  min-height: 240px;
  padding-top: 15px;
}

.cup-team-story-card--orange {
  border-color: #FF914D;
}

.cup-team-story-card--red {
  border-color: #FF3131;
}

.cup-team-story-quote {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0 38px 28px;
}

.cup-team-story-name {
  font-size: 20px;
  font-weight: 700;
  color: #FF914D;
  margin-bottom: 6px;
}

.cup-team-story-card--red .cup-team-story-name {
  color: #FF3131;
}

.cup-team-story-role {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 992px) {
  .cup-team-stories-grid {
    
    grid-template-columns: 1fr;
  }

  .cup-team-story-card {
    min-height: auto;
  }


  .cup-team-story-quote {
    font-size: 10px;
    line-height: 1.6;
    color: #fff;
    margin: 10px 50px 28px;
  }
  .cup-our-story-card-shell .cup-service-card-svg{
    width: 90%;
    height: 100%;
  }
}


.desktop-br {
  display: none;
}

@media (min-width: 768px) {
  .desktop-br {
    display: inline;
  }
}



