:root {
  /* Font Families */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Font Weights */
  --thin: 200;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;

  /* Color Palette */
  --primary: #2ecc71;
  --primary-light: #4cda85;
  --primary-dark: #27ae60;
  --secondary: #7f8c8d;
  --dark: #2c3e50;
  --black: #000000;
  --bg: #f5f5f5;
  --white: #ffffff;

  /* Spacing */
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;

  /* transitions */
  --dropdown-transition: cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Lenovo Brand Colors */
  --lenovo-red: #E2231A;
  --lenovo-dark: #000000;
  --lenovo-light: #F2F2F2;

  /* Section Specific */
  --content-bg: var(--lenovo-dark);
  --text-light: var(--lenovo-light);
  --text-muted: #b3b3b3;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --transition: all 0.4s var(--dropdown-transition);
}
/* *,
*::before,
*::after {
    box-sizing: border-box;
    outline: 2px solid lime;
}   */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    overflow-x: hidden ;
}

.highlight {
  color: var(--primary);
}


/* About Us Page Specific Styles - Namespaced to avoid conflicts */
/* Who We Are Section - Premium Styling */
/* ========================================== */
/* Omni Digital Identity Section - Conflict-Free */
/* ========================================== */

.od-identity-section {
  font-family: var(--font-body);
  margin-top: -6rem;
}

/* Shared Tier Styles */
.od-tier {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.od-section-title {
  font-size: 2.8rem;
  font-weight: var(--semibold);
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.od-section-text {
  font-size: 1.1rem;
  color: var(--secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ========================================== */
/* Tier 1: Video Background */
/* ========================================== */
/* Video Background Tier */
.od-tier-video-bg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.od-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 84vh;
  object-fit: cover;
  z-index: 1;
}

.od-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 84vh;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

.od-video-content {
  position: relative;
  z-index: 3;
  color: white;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.od-video-title {
  margin-top: -5rem;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  
}

.od-highlight {
  color: var(--primary);
}

.od-video-text {
  margin-left: 16rem;
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;

}

.od-team-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  max-width: 600px;
  margin-top: -1rem;
  margin-left: 33%;
}

.od-feature-item {
  padding: 1rem 1.5rem;
  margin-bottom: 0.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border-left: 3px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0 4px 4px 0;
  width: 60%;
  border-radius: 8px;
}

.od-feature-icon {
  color: var(--primary);
  font-size: 1.2rem;
  width: 1.5em;
  text-align: center;
}

.od-products-bar {
  position: absolute;
  top: 73vh;
  bottom: 2rem;
  width: 100%;
  text-align: center;
  color: rgba(255,255,255,0.9);
  z-index: 3;
  font-size: 1.1rem;
}

.od-divider {
  color: var(--primary);
  margin: 0 0.5rem;
}

/* Responsive */
/* Existing styles remain unchanged, only adding/refining media queries */

/* Tablet and smaller devices (max-width: 768px) */
@media (max-width: 768px) {
  
  .od-tier-video-bg {
    min-height: 80vh; /* Reduce height for smaller screens */
  }

  .od-bg-video {
    height: 100%; /* Ensure video covers the section */
  }

  .od-video-overlay {
    height: 100%; /* Match video height */
  }

  .od-video-title {
    font-size: 2.5rem;
    margin-top: -3rem; /* Adjust for smaller screens */
  }

  .od-video-text {
    font-size: 1.1rem;
    margin-left: 0; /* Remove left margin for centered text */
    max-width: 90%; /* Ensure text doesn't overflow */
    text-align: center;
    margin: 0 auto 1.5rem; /* Center and adjust spacing */
  }

  .od-team-features {
    margin-left: 0; /* Center the feature list */
    max-width: 90%; /* Prevent overflow */
    margin: 0 auto; /* Center align */
  }

  .od-feature-item {
    width: 100%; /* Full width for better readability */
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
  }

  .od-products-bar {
    font-size: 0.9rem; /* Slightly smaller font */
    top: auto; /* Remove fixed positioning for better flow */
    bottom: 1rem;
    padding: 0 1rem;
    line-height: 1.5; /* Improve readability */
    display: flex; /* Flexbox for wrapping */
    flex-wrap: wrap; /* Allow product items to wrap */
    justify-content: center;
    gap: 0.5rem; /* Add spacing between items */
  }

  .od-divider {
    margin: 0 0.3rem; /* Reduce divider spacing */
  }
}

/* Mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .od-tier-video-bg {
    min-height: 70vh; /* Further reduce height for small screens */
  }

  .od-video-title {
    font-size: 1.8rem; /* Smaller title for mobile */
    margin-top: -2rem;
    line-height: 1.3;
  }

  .od-video-text {
    font-size: 0.95rem; /* Smaller text */
    max-width: 95%;
    margin-bottom: 1rem;
  }

  .od-team-features {
    max-width: 95%; /* Tighter margins for small screens */
  }

  .od-feature-item {
    padding: 0.6rem 0.8rem; /* Tighter padding */
    font-size: 0.9rem; /* Slightly smaller font */
    gap: 0.8rem; /* Reduce icon-text gap */
  }

  .od-feature-icon {
    font-size: 1rem; /* Smaller icons */
  }

  .od-products-bar {
    font-size: 0.8rem; /* Smaller font for product bar */
    flex-direction: column; /* Stack items vertically */
    gap: 0.3rem; /* Reduce gap */
  }

  .od-divider {
    display: none; /* Hide dividers for vertical layout */
  }
}
@media (max-width: 395px) {
  
  .od-video-title {
    margin-top: 7rem;
    font-size: 2.5rem; /* Even smaller title */
  }
  .od-team-features{
    margin-top: 2rem;
  }

  .od-video-text {
    font-size: 0.85rem;
  }

  .od-feature-item {
    font-size: 0.85rem;
    padding: 0.5rem 0.7rem;
  }

  .od-products-bar {
    display: none;
  }
}
/* Extra small devices (max-width: 360px) */
@media (max-width: 380px) {
  .od-video-title {
    margin-top: 7rem;
    font-size: 1.5rem; /* Even smaller title */
  }

  .od-video-text {
    font-size: 0.85rem;
  }

  .od-feature-item {
    font-size: 0.85rem;
    padding: 0.5rem 0.7rem;
  }

  .od-products-bar {
    display: none;
  }
}
/*  */
.line-divider {
  max-height: 10px;
  width: 100%;
  background: var(--primary);
}
/* ========================================== */
/* Tier 2: Vision */
/* ========================================== */
        /* Mobile-First Layout */
        .vm-toggle-section {
            padding: 1.5rem 15px;
            background: linear-gradient(to bottom, var(--bg), var(--white));
            overflow: visible;
            font-family: var(--font-body);
        }

        .vm-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
            transition: var(--transition);
        }

        .vm-content-panel {
            flex: 1;
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            min-height: auto;
            display: flex;
            align-items: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
            order: 2; /* Content comes after button on mobile */
            margin-bottom: 3rem;
        }

        .vm-content-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
        }

        .vm-content {
            opacity: 0;
            transition: opacity 0.4s ease;
            position: absolute;
            width: calc(100% - 40px);
        }

        .vm-active {
            opacity: 1;
            position: relative;
        }

        /* Content Cards with Images - Mobile Layout */
        .vm-content-card {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
            width: 100%;
        }

        .vm-content-text {
            flex: 1;
            width: 100%;
        }

        .vm-content-image {
            width: 100%;
            max-width: 250px;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
            transition: all 0.3s ease;
            margin: 0 auto;
        }

        .vm-content-image:hover {
            transform: scale(1.03);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }

        /* Text Content - Mobile Adjustments */
        .vm-content h2 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            font-weight: var(--semibold);
            line-height: 1.2;
            font-family: var(--font-heading);
            text-align: center;
        }

        .highlight {
            color: var(--primary);
            position: relative;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(46, 204, 113, 0.3);
            z-index: -1;
            border-radius: 4px;
        }

        .vm-content p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            width: 100%;
            font-weight: var(--light);
            text-align: center;
        }

        .vm-value-pills, .vm-process-flow {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1.5rem;
            justify-content: center;
        }

        .vm-pill {
            background: rgba(46, 204, 113, 0.1);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            border: 1px solid rgba(46, 204, 113, 0.3);
            transition: var(--transition);
            font-weight: var(--medium);
        }

        .vm-pill:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Mission Process Steps with Icons - Mobile */
        .vm-process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0.5rem;
            background: rgba(0, 0, 0, 0.03);
            padding: 1rem;
            border-radius: 10px;
            transition: var(--transition);
            width: 100%;
        }

        .vm-process-step:hover {
            background: rgba(0, 0, 0, 0.07);
            transform: translateY(-5px);
        }

        .vm-step-number {
            background: var(--primary);
            color: var(--white);
            width: 36px;
            height: 36px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            font-weight: var(--semibold);
            flex-shrink: 0;
            font-family: var(--font-heading);
        }

        .vm-process-step p {
            margin: 0;
            color: var(--text-dark);
            font-size: 0.9rem;
            font-weight: var(--regular);
            flex: 1;
        }

        /* Mobile Toggle Button */
        .vm-toggle-container {
          top: -2rem;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            order: 1; /* Button comes first on mobile */
            margin-bottom: 1rem;
        }

        .vm-toggle-btn {
            position: relative;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .vm-icon-container {
          margin-top: 4.5rem;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 0.5rem;
            background: var(--white);
            box-shadow: var(--shadow);
        }

        .vm-btn-icon {
            width: 80px;
            height: 80px;
            filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
            transition: var(--transition);
        }

        .vm-enter-btn {
            position: relative;
            width: 180px;
            height: 44px; /* Better touch target */
            background: linear-gradient(to bottom, #f0f0f0, #e0e0e0);
            border: none;
            border-radius: 4px;
            box-shadow: 
                0 2px 0 #b0b0b0,
                0 4px 4px rgba(0,0,0,0.2),
                inset 0 1px 0 white,
                inset 0 -1px 0 #d0d0d0;
            font-family: var(--font-heading);
            font-weight: var(--semibold);
            color: #555;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.1s ease;
            outline: none;
            font-size: 0.9rem;
            margin-bottom: -3rem;
        }

        .vm-enter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, #e0e0e0, #f0f0f0);
            border-radius: 4px;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .vm-enter-btn:hover {
            color: #333;
            background: linear-gradient(to bottom, #e8e8e8, #d8d8d8);
        }

        .vm-enter-btn.vm-btn-click {
            transform: translateY(2px);
            box-shadow: 
                0 0 0 #b0b0b0,
                0 2px 2px rgba(0,0,0,0.2),
                inset 0 1px 0 white,
                inset 0 -1px 0 #d0d0d0;
        }

        .vm-enter-btn.vm-btn-click::before {
            opacity: 1;
        }

        .vm-btn-text {
            position: relative;
            z-index: 1;
            font-size: 0.8rem;
            transition: var(--transition);
        }

        .vm-enter-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 4px;
            background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
            pointer-events: none;
        }

        /* Tablet and Desktop Styles */
        @media (min-width: 768px) {
            .vm-toggle-section {
              top: -2rem;
              position: relative;
                padding: 3rem 20px;
            }
            
            .vm-container {
              
                flex-direction: row;
                gap: 3rem;
            }
            
            .vm-content-panel {
                padding: 3rem;
                min-height: 380px;
                order: unset;
            }
            
            .vm-content-card {
                flex-direction: row;
                gap: 2rem;
            }
            
            .vm-content-text {
                text-align: left;
            }
            
            .vm-content h2 {
                font-size: 2.5rem;
                text-align: left;
            }
            
            .vm-content p {
                text-align: left;
                font-size: 1.1rem;
            }
            
            .vm-content-image {
                width: 300px;
                height: 300px;
                margin: 0;
            }
            
            .vm-value-pills, .vm-process-flow {
                justify-content: flex-start;
            }
            
            .vm-process-step {
                flex-direction: row;
                text-align: left;
            }
            
            .vm-toggle-container {
                position: relative;
                bottom: 11rem;
                margin-bottom: 0;
                order: unset;
            }
            
            .vm-icon-container {
                width: 250px;
                height: 250px;
                top: -4.5rem;
                margin-bottom: 2rem; 
                margin-left: 1rem;
            }
            
            .vm-btn-icon {
              
                width: 200px;
                height: 200px;
            }
            
            .vm-container.show-mission {
                flex-direction: row-reverse;
            }
        }

        /* Large Mobile Devices (Landscape) */
        @media (max-width: 767px) and (orientation: landscape) {
            .vm-content-panel {
                min-height: 300px;
            }
            
            .vm-content-card {
                flex-direction: row;
            }
            
            .vm-content-text {
                text-align: left;
            }
            
            .vm-content h2 {
                text-align: left;
                font-size: 1.5rem;
            }
            
            .vm-content p {
                text-align: left;
                font-size: 0.9rem;
            }
            
            .vm-content-image {
                max-width: 120px;
            }
            
            .vm-process-step {
                flex-direction: row;
                text-align: left;
            }
        }


/* ========================================== */

/* ========================================== */




/*============================================
 Interactive Map 
============================================*/
/* Areas Served Section Styling with Unique Classes */
.omni-coverage-section {
  padding: 6rem 0;
    background: 
    /* Vertical gradient from white to bg */
    linear-gradient(
      to bottom, 
      var(--white) 0%, 
      var(--white) 20%, 
      color-mix(in srgb, var(--white) 80%, var(--bg) 20%) 40%,
      color-mix(in srgb, var(--white) 50%, var(--bg) 50%) 60%,
      color-mix(in srgb, var(--white) 20%, var(--bg) 80%) 80%,
      var(--bg) 100%
    );
  position: relative;
  bottom: 6.5rem;
  overflow: hidden;
}

.omni-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.omni-section-header {
  position: relative;
  top: -3rem;
  text-align: center;
  margin-bottom: 3rem;
}

.omni-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.omni-section-subtitle {
  font-size: 1.1rem;
  color: var(--secondary);
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-body);
}

.omni-divider {
  width: 80px;
  height: 3px;
  background: var(--primary);
  margin: 1.5rem auto;
}

.omni-coverage-grid {
  position: relative;
  bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.omni-countries-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.omni-country-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}

.omni-country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.omni-country-icon {
  font-size: 1.5rem;
  color: var(--primary);
  background: rgba(46, 204, 113, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.omni-country-info h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.omni-country-info p {
  color: var(--secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.omni-map-container-about {
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  margin-top: 0rem;
    position: relative;
    pointer-events: none; 
}

.omni-map-container-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46,204,113,0.1) 0%, rgba(46,204,113,0) 100%);
  pointer-events: none;
}

.omni-iframe-map-about {
  width: 100%;

  height: 125%;
  border: none;
  margin-top: -20%;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 992px) {
  .omni-coverage-grid {
    grid-template-columns: 1fr;
  }
  
  .omni-map-container {
    height: 400px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .omni-section-title {
    font-size: 2rem;
  }
  
  .omni-country-card {
    flex-direction: column;
    gap: 1rem;
  }
  
  .omni-country-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
/* .about-map-container {
    height: 500px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: var(--space-lg);
    position: relative;
    pointer-events: none; 
    overflow: hidden; 
}

.about-map-container iframe {
    margin-top: -50px;
    height: calc(100% + 50px);
    pointer-events: none; 
}

.about-map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: var(--space-md);
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
} */


/* ============================================= */
/* Lenovo Certifications Section - Full CSS */
/* ============================================= */

.certifications-section {
  position: relative;
  top: -10rem;
  padding: var(--space-xl) 0;
  background: var(--bg);
  position: relative;
  font-family: var(--font-body);
}

.lenovo-logo-wrapper {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.lenovo-logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  margin-top: -4rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title-lenovo {
  font-family: var(--font-heading);
  font-weight: var(--semibold);
  color: var(--dark);
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.section-subtitle-lenovo {
  color: var(--secondary);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.divider-lenovo {
  margin-top: 2rem;
  width: 300px;
  height: 4px;
  background: linear-gradient(90deg, var(--lenovo-red) 0%, var(--dark) 100%);
  margin: var(--space-md) auto;
  border-radius: 2px;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.certificate-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s var(--dropdown-transition);
  border: 1px solid rgba(0,0,0,0.03);
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.certificate-img {
  height: 220px;
  background: var(--lenovo-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.certificate-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 17, 15, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.certificate-card:hover .hover-overlay {
  opacity: 1;
}

.view-btn {
  color: white;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: white;
  color: var(--lenovo-red);
  transform: scale(1.1);
}

.certificate-info {
  padding: var(--space-lg);
  text-align: center;
}

.certificate-info h3 {
  font-family: var(--font-heading);
  font-weight: var(--semibold);
  color: var(--dark);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.certificate-info p {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.certificate-year {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(90deg, var(--lenovo-red) 0%, var(--dark) 100%);
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: var(--semibold);
  letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .certificates-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 395px) {
  .section-title-lenovo{
    font-size: 2rem;
  }
  .certifications-section{
    margin-top: -2rem;
  }
}
@media (max-width: 380px) {
  .section-subtitle-lenovo{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}




/* Address */
.btm-section.adress {
  margin-top: -15rem;
  background: var(--bg);
  padding-left: 10rem;
  padding-right: 10rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 180px;
}

.btm-adress {
  position: relative;
  bottom: -2rem;
  background: var(--dark);
  height: 160px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.btm-address-icon.adress {
  margin: 1rem;
  font-size: 40px;
  color: var(--primary);
}

.btm-title.adress {
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.btm-text.adress {
  color: var(--white);
  font-family: var(--font-body);
}

/* Responsive */
@media (max-width: 768px) {
  .btm-section.adress {
    position: relative;
    top: -8rem;
    padding-left: 2rem;
    padding-right: 2rem;
    height: auto; /* Allow natural height */
    min-height: 140px; /* Ensure enough space */
    
  }

  .btm-adress {
    height: auto; /* Allow content to dictate height */
    padding: 1.5rem; /* Add padding for content */
    bottom: 0; /* Remove absolute positioning */
  }

  .btm-address-icon.adress {
    font-size: 32px; /* Smaller icon */
    margin: 0.5rem;
  }

  .btm-title.adress {
    font-size: 1.5rem; /* Smaller title */
    margin-bottom: 0.8rem;
  }

  .btm-text.adress {
    font-size: 0.95rem; /* Smaller text */
    line-height: 1.5; /* Improve readability */
    max-width: 90%; /* Prevent overflow */
    margin: 0 auto; /* Center text */
  }
}

@media (max-width: 480px) {
  .btm-section.adress {
    margin-top: -4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: 120px;
  }

  .btm-adress {
    padding: 1rem;
    border-top-left-radius: 10px; /* Smaller radius */
    border-top-right-radius: 10px;
  }

  .btm-address-icon.adress {
    font-size: 28px; /* Smaller icon */
    margin: 0.4rem;
  }

  .btm-title.adress {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }

  .btm-text.adress {
    font-size: 0.85rem;
    max-width: 95%;
  }
}

@media (max-width: 360px) {
  .btm-section.adress {
    margin-top: -3rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .btm-adress {
    padding: 0.8rem;
  }

  .btm-address-icon.adress {
    font-size: 24px; /* Smaller icon */
    margin: 0.3rem;
  }

  .btm-title.adress {
    font-size: 1.1rem;
  }

  .btm-text.adress {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}






/* 
.about-section.adress {
    background-color: transparent;
    margin-top: -3rem;
    width: 90%;
    margin-left: 5rem;
     align-items: center;
  justify-content: center;
  text-align: center;
}

.title.adress {
    font-family: var(--font-heading);
    margin-bottom: 0.8rem;
 
}
.text.adress {
    font-family: var(--font-body);
    margin-bottom: 1rem;
    line-height: 1.7rem;
    margin-bottom: -2.5rem;
}
.about-address-section.adress {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--dark);
    color: var(--white);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.about-address-icon.adress {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}
.address-container.adress {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
} */

  
/* Namespaced Animations */
@keyframes aboutFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aboutFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Media Queries */
@media (max-width: 480px) {
    .about-video-bg {
        height: 70vh;
    }  
    .about-header-title {
        margin-top: -2rem;
    }
    .about-header-text {
        color: var(--white);
        text-shadow: none;
        margin-top: 1rem;
    }
    
}


@media (max-width: 575px) {
    .about-header-title {
        font-size: 3.5rem;
        justify-content: left;
        text-align: left;
        margin-top: 3rem;
    }
    .about-header-text {
        text-align: left;
    }
    .about-section {
        margin-top: 12rem;
    }
    .about-feature-card {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .about-mission-vision {
        margin-top: -10rem;
    }
    .about-mission-card,
    .about-vision-card {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .about-map-container iframe {
    margin-top: -60px;
    height: calc(100% + 60px);
    }
    .about-company-card {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .about-section.group {
        margin-bottom: -5rem;
    }
    .about-section.adress {
        margin-top: -5rem;
    }
    .about-map-overlay {
        width: 170px;
    }
    .about-section.one {
        margin-top: 12rem;
    }
    
}












/*============================   brands*/

.premium-brands-section {
  position: relative;
  top: 1.3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.premium-section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.premium-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1.4rem;
  position: relative;
}

.premium-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 4px;
   background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 50%, var(--dark) 100%);
  border-radius: 2px;

}

.premium-section-subtitle {
  font-weight: var(--light);
  color: var(--secondary);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  margin-bottom: -1.2rem;
}

.premium-brands-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  grid-template-rows: auto auto;
}

.premium-brand-category {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.premium-brand-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.premium-category-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: var(--space-lg);
}

.premium-category-title {
  font-family: var(--font-heading);
  font-weight: var(--semibold);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.premium-category-description {
  font-weight: var(--light);
  font-size: 0.9rem;
  opacity: 0.9;
}

.premium-brands-list {
  padding: var(--space-lg);
}

.premium-brand-item {
  display: flex;
  align-items: center;
  padding: var(--space-md);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.premium-brand-item:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: scale(1.02);
}

.premium-brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-right: var(--space-md);
  background: var(--white);
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.premium-brand-info {
  flex: 1;
}

.premium-brand-name {
  font-family: var(--font-heading);
  font-weight: var(--medium);
  margin-bottom: 2px;
  color: var(--lenovo-dark);
}

.premium-brand-description {
  font-size: 0.85rem;
  color: var(--secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.premium-brand-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.premium-brand-modal.active {
  opacity: 1;
  visibility: visible;
}

.premium-modal-content {
  background: var(--white);
  border-radius: 16px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-xl);
  position: relative;
  transform: scale(0.8);
  transition: var(--transition);
}

.premium-modal-content.active {
  transform: scale(1);
}

.premium-close-modal {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary);
  transition: var(--transition);
}

.premium-close-modal:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.premium-modal-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.premium-modal-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: var(--space-lg);
  background: var(--white);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.premium-modal-title {
  font-family: var(--font-heading);
  font-weight: var(--semibold);
  font-size: 2rem;
  color: var(--lenovo-dark);
}

.premium-modal-category {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-top: var(--space-sm);
}

.premium-modal-description {
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  color: var(--secondary);
}

.premium-modal-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.premium-feature-item {
  background: rgba(0, 0, 0, 0.05);
  padding: var(--space-md);
  border-radius: 8px;
  transition: var(--transition);
}

.premium-feature-item:hover {
  background: rgba(46, 204, 113, 0.1);
}

.premium-feature-title {
  font-family: var(--font-heading);
  font-weight: var(--medium);
  color: var(--primary-dark);
}

@media (max-width: 992px) {
  .premium-brands-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .premium-section-title {
    font-size: 2rem;
  }
    .premium-brands-section{
      margin-top: 3rem;
    }
.premium-section-header {
  margin-bottom: 10px;
}
  .premium-modal-header {
    flex-direction: column;
    text-align: center;
  }
  .premium-modal-logo {
    margin-right: 0;
    margin-bottom: var(--space-md);
  }
  .premium-modal-features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .premium-brands-container {
    grid-template-columns: 1fr;
  }
  .premium-section-subtitle{
    margin-bottom: 1rem;
  }
}

/* =============== Services Section =============== */
.service-section-bg {
    background: linear-gradient(to bottom, var(--bg) 60%, var(--primary) 100%);
    height: 40vh;
}
.svc-section {
    position: relative;
    top: -4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
}

.svc-section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.svc-section-title {
  margin-top: 2rem;
    font-family: var(--font-heading);
    font-weight: var(--semibold);
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: var(--space-md);
    position: relative;
}

.svc-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 50%, var(--dark) 100%);
    border-radius: 2px;
}

.svc-section-subtitle {
    font-family: var(--font-body);
    font-weight: var(--light);
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.svc-button-container {
    position: relative;
    top: -1rem;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.svc-button {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-heading);
    font-weight: var(--medium);
    font-size: 1rem;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.svc-button:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.svc-button i {
    font-size: 1.2rem;
    color: var(--primary);
}

.svc-button:hover i {
    color: var(--white);
}

.svc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.svc-overlay.active {
    opacity: 1;
    visibility: visible;
}

.svc-overlay-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-xl);
    position: relative;
    transform: scale(0.8);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.svc-overlay-content.active {
    transform: scale(1);
}

.svc-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary);
    transition: var(--transition);
}

.svc-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.svc-overlay-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: var(--space-lg);
}

.svc-overlay-title {
    font-family: var(--font-heading);
    font-weight: var(--semibold);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.svc-overlay-description {
    font-family: var(--font-body);
    font-weight: var(--light);
    color: var(--secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.svc-overlay-buttons {
    margin-top: var(--space-md);
    display: flex;
    justify-content: center;
}

.svc-overlay-button {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-heading);
    font-weight: var(--medium);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.svc-overlay-button:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .svc-section-title {
        font-size: 2rem;
    }

    .svc-button {
        font-size: 0.9rem;
        padding: var(--space-sm) var(--space-md);
    }

    .svc-overlay-content {
        width: 95%;
        padding: var(--space-lg);
    }

    .svc-overlay-image {
        height: 150px;
    }

    .svc-overlay-title {
        font-size: 1.5rem;
    }

    .svc-overlay-button {
        font-size: 0.9rem;
        padding: var(--space-xs) var(--space-sm);
    }
}
@media (max-width: 395px) {
  .svc-section {
    height: 160%;
    margin-bottom: 2rem;
  }
}








/* ==================CTA Section */
.bs-cta-section {
    background: var(--primary);
    padding: var(--space-xl) var(--space-md);
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.bs-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.bs-cta-content h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
}

.bs-cta-content .highlight {
    color: var(--white);
    font-weight: var(--semibold);
}

.bs-cta-content p {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.bs-cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.bs-cta-button {
    padding: var(--space-md) var(--space-lg);
    border-radius: 8px;
    font-weight: var(--medium);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.bs-cta-button.primary {
    background: var(--white);
    color: var(--primary);
}

.bs-cta-button.primary:hover {
    background: #f0f7ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bs-cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.bs-cta-button.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

/* Brands Showcase Image */
/* Brands Showcase Image */
.img-bg {
  position: relative;
  top: -1rem;
  margin: 0;
  padding: 0;
  height: 30vh;
  background: var(--bg);
}

.bs-showcase-image {
  position: relative;
  top: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.bs-showcase-image img {
  position: relative;
  top: -1.5rem;
  width: 100%;
  
  display: block;
  overflow: hidden;
}

.bs-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--white);
  padding: var(--space-lg);
  border-radius: 0 0 16px 16px;
}

.bs-image-overlay h3 {
  position: relative;
  top: -13rem;
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
  color: var(--dark);
  text-align: center;
}

.bs-image-overlay p {
  position: relative;
  text-align: center;
  top: -13rem;
  color: var(--secondary);
  opacity: 0.9;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  .img-bg {
    top: 0; /* Remove negative positioning */
    height: auto; /* Allow natural height */
    height: 15vh; /* Ensure enough space */
    margin-bottom: 8rem;
  }
  /* header {
    background: var(--bg);
  } */
  .bs-showcase-image {
    top: 1.5rem; /* Reduce offset */
    padding: 0 var(--space-sm); /* Smaller padding */
    margin-bottom: 2rem; /* Adjust for inline margin-bottom */
  }

  .bs-showcase-image img {
    top: 3rem; /* Remove negative positioning */
    border-radius: 12px; /* Smaller radius for mobile */
  }

  .bs-image-overlay {
    position: relative;
    top: -8rem;
    padding: var(--space-md);
    position: relative; /* Change to relative for better flow */
    bottom: auto;
  
  }

  .bs-image-overlay h3 {
    top: 0; /* Remove negative positioning */
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .bs-image-overlay p {
    top: 0; /* Remove negative positioning */
    font-size: 0.95rem;
    max-width: 90%; /* Prevent overflow */
    margin: 0 auto; /* Center text */
  }
  .omni-footer-v2.home {
  margin-top: -9rem;}
}

@media (max-width: 480px) {
    header.scrolled {
  background: rgba(44, 62, 80, 0.6);
}
  .img-bg {
    height: 17vh; /* Smaller min-height */
  }

  .bs-showcase-image {
    top: 1rem;
    margin-bottom: 1.5rem;
  }

  .bs-showcase-image img {
    border-radius: 10px;
  }

  .bs-image-overlay {
    padding: var(--space-sm);
  }

  .bs-image-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }

  .bs-image-overlay p {
    font-size: 0.85rem;
    max-width: 95%;
  }
}

@media (max-width: 395px) {
  .img-bg {
    min-height: 10vh;
    
  }
  .bs-cta-content{
    position: relative;
    top: 2.5rem;
    height: 320px;
  }
  .bs-showcase-image {
    top: 0.5rem;
    padding: 0 var(--space-md); /* Even smaller padding */
    margin-bottom: 1rem;
  }

  .bs-showcase-image img {
    height: auto;
    width: 360px;
    
  }

  .bs-image-overlay {
    padding: var(--space-xs);
  }

  .bs-image-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    margin-top: 1rem;
  }

  .bs-image-overlay p {
    font-size: 0.8rem;
    line-height: 1.4; /* Improve readability */
  }
 
  .omni-footer-v2.home{
    margin-top: -9rem;
  }

  
}