 
/* =========================================
   1. VARIABLES & RESET
   ========================================= */
   @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;800&display=swap');
:root {
  --primary: #3b82f6;
  --primary-blue: #3b82f6;
  --ultra-deep-blue: #001a4d;
  --bg: #030712;
  --dark-bg: #030712;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --card-bg: #ffffff;
  --main-content-bg: #ffffff;
  --main-text-blue: #1e40af;
  --brand-cyan: #38BDFF;
  --primary-dark: #0f172a;
  --text-muted: #64748b;
  --shell-red: #ef4444;
  --primary-red: #1fa3bd;
  --transition-speed: 0.5s;
  --border: #38bdff;
  --heading-color: #060AF5; /* Deep Blue */
  --underline-color: #FF7F7F;
   --bg-color: #0f172a;
            
            --surface-color: #1e293b;
            --accent-color: #f59e0b;
            --accent-hover: #060AF5
            ;
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
   font-family: 'Plus Jakarta Sans', sans-serif;
            
           
            overflow-x: hidden;

            font-family: var(--font-main);
            background-color: var(--bg-color);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            padding: 0;

            
}


        /* Glassmorphism utility */
        .glass-card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Smooth track styling */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0f19;
        }
        ::-webkit-scrollbar-thumb {
            background: #1f293d;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ef4444;
        }
        

/* Parent container controls alignment 
.section-header {
  text-align: center;
}

   /* Modern Reset & Base Styles */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
        }
 
        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--text-primary);
        }

        .logo span {
            color: var(--accent-color);
        }

        /* Main Service Section */
      .delivery-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;

    padding: 4rem 3rem; /* inside spacing */
    margin: 4rem auto; /* outside spacing around section */
    border-radius: 20px; /* optional for a cleaner look */
}

        @media (min-width: 768px) {
            .delivery-section {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Content Area */
        .content-area {
            opacity: 0; /* Animated by GSAP */
            transform: translateY(30px);
        }

        .badge {
            display: inline-block;
            background-color: rgba(245, 158, 11, 0.1);
            color: var(--accent-color);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid rgba(245, 158, 11, 0.2);
        }

        

        .description {
            font-size: 1.125rem;
            color: #4b5563;
            margin-bottom: 2rem;
            max-width: 540px;
        }

        /* Feature List */
        .features {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 1rem;
           color: var(--text-muted);
        }

        .feature-item svg {
          color: var(--brand-cyan);
  font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* CTA Button */
        .cta-btn {

          
            display: inline-block;
            
              background: var(--primary-blue);
  color: #fff;
            font-weight: 700;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
            text-align: center;
        }

        .cta-btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
        }

        /* Image Column (Responsive Container) */
        .image-container {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0; /* Animated by GSAP */
            transform: scale(0.95);
        }

        /* RE-USABLE RESPONSIVE IMAGE UTILITY */
        .custom-responsive-img {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
           /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);*/
            object-fit: cover;
        }

        /* Placeholder graphic layout style */
        .image-placeholder-box {
            width: 100%;
            max-width: 550px;
            aspect-ratio: 4 / 3;
            background-color: var(--surface-color);
            border: 2px dashed #475569;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            text-align: center;
            color: var(--text-secondary);
        }

        .placeholder-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

/* Universal Heading 
.fancy-heading {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 18px;
  color: var(--heading-color);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: capitalize;
    
  
}

/* Underline scales with text width  
.fancy-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 85%;
  min-width: 60px;
  max-width: 100%;
  height: 4px;
  border-radius: 999px;
  background: #FF7F7F;
}*/
/*
@media (max-width: 768px) {
  .fancy-heading {
    padding-bottom: 14px;
  }

  .fancy-heading::after {
    height: 3px;
  }
}*/
/* =========================================
   2. LAYOUT WRAPPERS
   ========================================= */
main {
  background-color: var(--main-content-bg);
  color: var(--main-text-blue);
  position: relative;
  z-index: 20;
  margin-top: 100vh;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  width: 100%;
  overflow-x: hidden;
}

/* =========================================
   3. HERO SECTION (TOP)
   ========================================= */
.hero {
  will-change: transform;
  contain: paint;
   height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 10;
  background: #ffffff;
}

.parallax-container {
  position: absolute;
  inset: -50px 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  /*filter: brightness(0.55) contrast(1.15) saturate(1.1);*/
  transform: scale(1.1);
  transition: opacity 1.5s ease-in-out, transform 6s linear;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  z-index: 10;
  padding: 0 20px;
  margin-top: -30px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 5px;
  color: #38bdf8;
  text-transform: uppercase;
}

.dynamic-text {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 35px;
  min-height: 1.6em;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-subtext {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.btn-hero {
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid var(--primary-blue);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-glass-primary {
  color: white !important;
  border: 1px solid var(--primary-blue);
  /*box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);*/
}

.btn-glass-primary:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(59, 130, 246, 0.4);
}

.btn-glass-secondary {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--primary-blue) !important;
}

.btn-glass-secondary:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: var(--primary-blue);
  transform: translateY(-3px);
}

/* Indicators */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--primary-blue);
  border-radius: 15px;
  position: relative;
}

.mouse::after {
  content: "";
  width: 4px;
  height: 8px;
  background: var(--primary-blue);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  border-radius: 2px;
  animation: wheel 2s infinite;
}

.scroll-arrow {
  width: 15px;
  height: 15px;
  border-right: 2.5px solid var(--primary-blue);
  border-bottom: 2.5px solid var(--primary-blue);
  transform: rotate(45deg);
  animation: arrowFade 2s infinite;
}

@keyframes wheel {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 25px;
  }
}

@keyframes arrowFade {
  0% {
    opacity: 0;
    transform: rotate(45deg) translateY(-10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translateY(10px);
  }
}
 
/* ==========================
   STATS SECTION
   ========================== */
.stats-section {
  padding: 80px 5%;
 /* background: linear-gradient(135deg, #0f172a, #1e293b); */
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-box {
  background: #ffffff;
  padding: 35px 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.25);
}

.stat-box h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-box h2 small {
  font-size: 1.2rem;
  color: #64748b;
}

.stat-box p {
  font-size: 1rem;
  color: #475569;
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================
   TABLET
   ========================== */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================
   MOBILE
   ========================== */
@media (max-width: 600px) {
  .stats-section {
    padding: 60px 20px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-box {
    padding: 30px 15px;
  }

  .stat-box h2 {
    font-size: 2.5rem;
  }

  .stat-box p {
    font-size: 0.9rem;
  }
}

/* =========================================
   5. SERVICES SECTION
   ========================================= */
.services-section-header {
  padding: 80px 20px 40px;
  text-align: center;
}
/*.services-section-header h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 15px;
  color: #38bdf8;
}*/

.services-wrapper {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.section-card.show {
  opacity: 1;
  transform: translateY(0);
}

.section-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.section-card:hover .image-box img {
  transform: scale(1.1);
}

.content-box {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.content-box h2 {
  font-size: 1.4rem;
  color: var(--main-text-blue);
  margin-bottom: 10px;
  align-items: center;
}

.content-box p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 20px;
}

.card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-card {
  background: var(--primary-blue);
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: capitalize;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-card-secondary {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
  border: 1px solid var(--border);
}

.btn-card:hover {
  background-color: #38bdf8;
  color: #fff;
}

/* =========================================
   6. AMENITIES SECTION
   ========================================= */
.amenities-section {
  padding: 60px 5% 150px;
}

.header-area {
  text-align: center;
  margin-bottom: 40px;
}

 

.header-area .sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 10px;
  font-weight: 600;
}

.amenity-row {
  display: flex;
  align-items: center;
  gap: 80px;
  visibility: hidden;
}

.amenity-row:nth-child(even) {
  flex-direction: row-reverse;
}

.img-container {
  flex: 1.2;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  position: relative;
}

.img-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.content-container {
  flex: 1;
}

/*.content-container h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--brand-cyan);
  margin-bottom: 20px;
}*/

.content-container p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--primary-dark);
}

.feature-list i {
  color: var(--brand-cyan);
  font-size: 1.2rem;
}

/* =========================================
   7. WHY US & FAQ SECTION
   ========================================= */
.why-us {
  padding: 100px 20px 40px;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.accent-text {
  display: block;
  text-align: center;
  color: var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

 /* Import Font --------------------------------------------------------------------------------*/



.fancy-heading {
        position: relative;
        display: inline-block;
        margin: 0;
        padding-bottom: 18px;
        color: var(--heading-color);
      /*  font-size: clamp(2rem, 5vw, 4rem);*/
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.03em;
        text-transform: capitalize;
         font-size: 2.8rem;
        margin-bottom: 20px;
        font-family: "Plus Jakarta Sans", sans-serif;
}

/* Responsive Underline */
.fancy-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 85%;
  min-width: 60px;
  height: 4px;
  border-radius: 999px;
  background: var(--underline-color);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.why-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.why-card:hover {
  transform: translateY(-10px);
  background: var(--ultra-deep-blue);
  border-color: var(--primary-blue);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 25px;
  transition: 0.4s;
}

.why-card:hover .why-icon {
  background: var(--primary-blue);
  color: #fff;
}

.why-card h3 {
  font-size: 1.5rem;
  color: var(--ultra-deep-blue);
  margin-bottom: 15px;
  transition: 0.4s;
}

.why-card p {
  color: #64748b;
  line-height: 1.6;
  transition: 0.4s;
}

.why-card:hover h3,
.why-card:hover p {
  color: #fff;
}

.faq-wrapper {
  max-width: 900px;
  margin: 40px auto 30px;
  padding: 0 20px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}

.faq-question h4 {
  color: var(--primary-blue);
  font-size: 1.1rem;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 20px;
}

.faq-answer p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  padding-bottom: 20px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 1s ease-in-out;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

 
/* =========================================
   9. MIDDLE HERO & STICKY FEATURES
   ========================================= */
.middle_hero-feature {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("pictures/qmServing.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.middle_hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.middle_hero-content-wrap {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
}

.middle_hero-title {
  font-family: "Arial Black", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.middle_hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.middle_hero-cta {
  display: inline-block;
  padding: 14px 35px;
  background-color: #1daab4;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: 0.3s;
}

.middle_sticky-wrapper {
  height: 120vh;
  position: relative;
  z-index: 25;
  margin-bottom: -120px;
}

.middle_sticky-element {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.middle_sticky-img {
  position: absolute;
  inset: 0;
  background-image: url("pictures/east_lagon_marts.webp");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.middle_sticky-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.middle_sticky-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #38bdf8;
  padding: 0 20px;
}

.middle_sticky-pop-text {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 5px;
  opacity: 0;
  transform: scale(0.6) translateY(50px);
}

.middle_sticky-subtext {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0;
}

.sticky-hero {
  position: relative;
  height: 100vh;
  background-color: #030712;
  background-image: linear-gradient(rgba(3, 7, 18, 0.75), rgba(3, 7, 18, 0.75)),
    url("pictures/pumpAttendant.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 20;
}

.hero-inner {
  max-width: 1000px;
  padding: 2rem;
  opacity: 0;
  transform: scale(0.9);
}

/* =========================================
   10. WAREHOUSE SECTION (FIXED BG)
   ========================================= */
.warehouse-wrapper {
  position: relative;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0);
}

.warehouse-sticky-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("pictures/shellSelect.webp");
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: brightness(0.55) contrast(1.15) saturate(1.1);
  will-change: transform;
  backface-visibility: hidden;
}

.warehouse-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.warehouse-content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 20px;
}

.warehouse-title {
  color: #38bdff;
  font-size: clamp(3rem, 12vw, 6.5rem);
  font-weight: 900;
  letter-spacing: 9px;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.direction-card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 30px;
  border-radius: 28px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-subtitle {
  color: #38bdf8;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin: 15px 0 25px 0;
}

.direction-btn {
  display: block;
  background: #38bdf8;
  color: #1e40af;
  padding: 18px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (hover: hover) {
  .direction-btn:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
  }
}

.direction-btn:active {
  transform: scale(0.95);
}
.awards-section {
        padding: 60px 20px;
        width: 100%;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

  .awards-section h2 {
        font-size: 2.5rem;
        color: #38bdff;
        margin-bottom: 40px;
        font-family: "Plus Jakarta Sans", sans-serif;
        text-align: center;
    }

    .showcase-container {
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

/* --- AWARDS SECTION --- */
    .awards-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .awards-section h2 {
        font-size: 2.5rem;
        color: #38bdff;
        margin-bottom: 40px;
        font-family: "Plus Jakarta Sans", sans-serif;
    }

    .awards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        justify-items: center;
    }

    .award-card {
        width: 100%;
        max-width: 200px;
        aspect-ratio: 1 / 1;
        perspective: 1000px;
        cursor: pointer;
        opacity: 0;
    }

    .award-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.6s;
        transform-style: preserve-3d;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }

    .award-card.is-flipped .award-inner {
        transform: rotateY(180deg);
    }

    .award-front,
    .award-back {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .award-front img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .award-back {
        background-color: #001a4d;
        color: white;
        transform: rotateY(180deg);
        padding: 15px;
        flex-direction: column;
        font-size: 0.85rem;
    }

    .award-back h4 {
        margin-bottom: 5px;
        color: #38bdff;
    }

    /* --- SHOWCASE / 3D FLIP ARCHITECTURE --- */
    .showcase-container {
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .award-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        width: 100%;
        perspective: 1500px;
    }

    .flip-card {
        background-color: transparent;
        height: 290px;
        cursor: pointer;
        transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
    }

    .flip-card.hidden {
        display: none;
        opacity: 0;
        transform: translateY(15px);
    }

    .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
        transform-style: preserve-3d;
    }

    .flip-card.flipped .flip-card-inner {
        transform: rotateY(180deg);
    }

    .card-front, .card-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .card-front {
        background: var(--card-bg);
        border: 1px solid var(--glass-border);
        z-index: 2;
    }

    .trophy-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .flip-card:hover .trophy-image {
        transform: scale(1.04);
    }

    .hint-badge {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 11px 5px;
        font-size: 0.55rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #161ae7;
        font-weight: 600;
        background: linear-gradient(transparent, rgba(59, 130, 246, 0.3));
        text-align: center;
        pointer-events: none;
    }

    .card-back {
        background: var(--main-content-bg);
        padding: 14px;
        justify-content: center;
        align-items: center;
        border: 2px solid var(--border);
        transform: rotateY(180deg);
        box-shadow: 0 8px 30px rgba(56, 189, 255, 0.15);
    }

    .card-back::after {
        content: '';
        position: absolute;
        top: 6px; bottom: 6px; left: 6px; right: 6px;
        border: 1px dashed rgba(30, 64, 175, 0.2);
        border-radius: 8px;
        pointer-events: none;
    }

    .series-tag {
        font-size: 0.52rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--primary-blue);
        margin-bottom: 5px;
        position: relative;
        z-index: 2;
    }

    .main-title {
        font-family: 'Cinzel', serif;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--ultra-deep-blue);
        margin-bottom: 6px;
        line-height: 1.2;
        position: relative;
        z-index: 2;
    }

    .divider {
        width: 30px;
        height: 2px;
        background-color: var(--brand-cyan);
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
    }

    .data-label {
        font-size: 0.52rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-muted);
        font-weight: 600;
        margin-bottom: 2px;
        position: relative;
        z-index: 2;
    }

    .data-value {
        font-size: 0.65rem;
        font-weight: 600;
        color: var(--primary-dark);
        line-height: 1.2;
        margin-bottom: 8px;
        padding: 0 4px;
        position: relative;
        z-index: 2;
    }

    .data-value.prominent {
        font-family: 'Montserrat', sans-serif;
        color: var(--main-text-blue);
        font-weight: 700;
        font-size: 0.78rem;
        letter-spacing: 0.2px;
    }

    .load-more-btn {
        margin-top: 40px;
        padding: 12px 35px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        background: rgba(59, 130, 246, 0.1);
        color: var(--primary-blue);
        border: 1px solid var(--border);
        border-radius: 25px;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .load-more-btn:hover {
        background-color: #161ae7 !important;
        color: #ffffff !important;
        border-color: var(--primary-blue);
        box-shadow: 0 8px 25px rgba(56, 189, 255, 0.4);
        transform: translateY(-2px);
    }

    /* --- TEAM SECTION (LOCKED DESKTOP RATIOS) --- */
    .team-section {
        padding: 80px 15px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        font-family: "Plus Jakarta Sans", sans-serif;
        background-color: #ffffff;
    }

    .team-section h2 {
        font-size: 2.8rem;
        color: #38bdff;
        margin-bottom: 60px;
        font-weight: 800;
        letter-spacing: -1px;
    }

    .team-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
        align-items: stretch;
    }

    .team-card {
        width: 350px; /* Locked width to match container sizing exactly */
        background: #ffffff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: 1px solid #f0f0f0;
        display: flex;
        flex-direction: column;
    }

    .team-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(56, 189, 255, 0.15);
        border-color: #38bdff;
    }

    .img-container {
        width: 350px;       /* Fixed desktop dimensions locked */
        height: 450px;      
        overflow: hidden;
        background: #f8f9fa;
        margin: 0 auto;
        position: relative;
    }

    .team-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 10%; /* Specific portrait framing rule preserved */
        transition: transform 0.6s ease;
    }

    .team-card:hover img {
        transform: scale(1.08);
    }

    .team-info {
        padding: 25px 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #fff;
        box-sizing: border-box;
    }

    .team-info h4 {
        margin: 0;
        font-size: 1.3rem;
        color: #001a4d;
        font-weight: 800;
        line-height: 1.2;
    }

    .team-info p {
        margin: 8px 0 15px;
        font-size: 0.85rem;
        color: #38bdff;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.2px;
    }

    .team-info a {
        align-self: center;
        color: #555;
        text-decoration: none;
        font-size: 0.8rem;
        padding: 8px 20px;
        background: #f4f7fa;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .team-info a:hover {
        background: #38bdff;
        color: #fff;
    }
    .load-more-link {
    padding: 10px 24px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    background: rgba(59, 130, 246, 0.06);
    color: var(--primary-blue);

    border: 1px solid var(--border);
    border-radius: 10px;

    text-decoration: none;
    text-align: center;

    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;

    min-width: 140px;
    max-width: 180px;
    width: auto;
}
.load-more-link:hover {
    background-color: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}
    /* --- RESPONSIVE MEDIA QUERIES --- */
    @media (max-width: 950px) {
        .award-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        .flip-card { height: 280px; }
    }

    @media (max-width: 768px) {
        .hero-wrapper { height: 150vh; }
        .btn-group { flex-direction: column; width: fit-content; }
        .diagonal-shape { height: 20vh; clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%); }
        .hero-bg { background-position: 70% center; }
        
        .about-row { flex-direction: column; }
        .about-hero { background-attachment: fixed !important; }
        .about-text p { text-align: justify; }

        .awards-grid {
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        /* Fluid resizing triggers only on narrow/mobile viewports */
        .team-card { max-width: 92%; width: 100%; }
        .img-container { width: 100%; height: 380px; } 
        .team-info h4 { font-size: 1.4rem; }
         .load-more-link {
        max-width: 160px;
        padding: 8px 18px;
        font-size: 0.65rem;
    }
  }
    @media (max-width: 650px) {
        .award-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .flip-card { height: 290px; }
    }

    @media (max-width: 480px) {
        .about-text p {
            text-align: left;
            hyphens: none;
        }
    }

/* =========================================
   11. ANIMATIONS & REVEALS
   ========================================= */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.5s ease-out;
}

.word.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-read-more {
  opacity: 0;
  transform: translateX(-50px);
  transition: 0.8s ease-out;
}

.slide-in-read-more.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-from-left {
  opacity: 0;
  transform: translateX(-150px);
}

.slide-from-right {
  opacity: 0;
  transform: translateX(150px);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 3;
  opacity: 0.1;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -10%;
  right: -5%;
}

.glow-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-blue);
  bottom: 10%;
  left: -5%;
}

@keyframes floatGlow {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-40px);
  }
}

/* =========================================
   12. MEDIA QUERIES (RESPONSIVE)
   ========================================= */
@media (max-width: 768px) {
  html,
  body {
    position: relative;
    overflow-x: hidden;
    width: 100%;
  }

  .hero {
    height: 100vh;
    height: 100dvh;
    clip-path: none;
    position: relative;
    width: 100%;
  }
   .fancy-heading {
    padding-bottom: 14px;
  }

  .fancy-heading::after {
    height: 3px;
  }

  main {
    margin-top: 0;
    border-radius: 40px 40px 0 0;
    padding-top: 20px;
    z-index: 5;
    position: relative;
    width: 100%;
    overflow-x: hidden;
  }

  .stats-section {
    padding: 25px 15px 50px;
    margin-top: -15px;
  }

  .parallax-container {
    inset: 0;
    width: 100%;
  }

  .hero-title {
    font-size: 1.8rem;
    width: 100%;
  }

  .dynamic-text {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  .hero-subtext {
    font-size: 0.65rem;
    gap: 5px;
    width: 100%;
  }

  .btn-hero {
    padding: 10px 22px;
    font-size: 0.75rem;
    border-radius: 8px;
  }

  .middle_sticky-wrapper {
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: -40px !important;
  }

  .middle_sticky-wrapper + .amenities-section {
    margin-top: 30px;
  }

  .amenities-section {
    padding-top: 40px;
  }

  .amenity-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
  }

  .img-container,
  .content-container {
    width: 100%;
    max-width: 100%;
  }

  .img-container img {
    height: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .services-wrapper {
    align-items: center;
    width: 100%;
    padding: 0 15px;
  }

  .section-card {
    width: 100%;
    margin: 10px 0;
    max-width: 100%;
  }

  .slide-from-left,
  .slide-from-right {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

@media (max-width: 992px) {
  .amenity-row,
  .amenity-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }
  .img-container img {
    height: 350px;
  }
}

@media (min-width: 992px) {
  .hero {
    height: 100vh;
    clip-path: ellipse(180% 100% at 50% 0%);
  }
  main {
    margin-top: 100vh;
    border-radius: 100px 50px 0 0;
  }
  .services-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .section-card {
    width: calc(50% - 20px);
    max-width: 500px;
  }
}

.diagonal {
  display: none !important;
}
  .gallery-grid {
    columns: 1;
  }
  #sticky-container{
    overflow: visible;
}

.scroll-text-step{
    min-height:100vh;
}

#image-panel{
    opacity:1;
    background-size:cover;
    background-position:center;


}
  /* Full Width Wrapper: Stretching edge to edge */
.cta-full-width-wrapper {
    width: 100vw;
    background: linear-gradient(135deg, #060AF5 0%, #020440 100%);
    padding: 80px 10%; /* Uses percentages to keep content centered on ultra-wide screens */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Subtle Geometric Background Accent */
.cta-full-width-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(59, 113, 237, 0.08);
    transform: rotate(45deg);
    border-radius: 60px;
    pointer-events: none;
}

/* Left Side: Typography Content */
.cta-text-side {
    flex: 1.2;
    position: relative;
    z-index: 2;
}

.cta-tag {
    color: #ff7c54;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.cta-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 700px;
}

.cta-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Right Side: Action Target Container */
.cta-action-side {
    flex: 0.8;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.cta-form-replacement {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-submit-btn {
    background-color: #3b71ed;
    color: #ffffff;
    border: none;
    outline: none;
    padding: 16px 45px;
    border-radius: 26px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-submit-btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 113, 237, 0.2);
}

/* Responsive Breakpoints for Mobile View */
@media (max-width: 992px) {
    .cta-full-width-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 24px;
        gap: 35px;
        width: 100%;
    }
    .cta-title {
        font-size: 2.2rem;
    }
    .cta-action-side {
        justify-content: flex-start;
    }
    .cta-form-replacement {
        background: transparent;
        border: none;
        padding: 0;
        width: 100%;
    }
    .cta-submit-btn {
        width: 100%;
        border-radius: 8px;
        padding: 16px;
    }
}


 