

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
:root {
    --primary-color: #005792;
    --secondary-color: #00334e;
    --accent-color: rgb(43, 125, 233);
    --light-accent: #3ab6f8;
    --text-color: #000000;
    --light-color: #ffffff;
    --bg-color: #f8f9fc;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #0077c2);
    --shadow: 0 10px 30px rgba(0, 87, 146, 0.1);
    --shadow-hover: 0 15px 35px rgba(0, 87, 146, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 12px;
  }



/* *********************************************************************************** */
/* ********************************* section 1 *************************************** */
/* *********************************************************************************** */
.section1 {

  min-height: 100vh;
  padding: 120px 2rem 60px;
  display: flex;
  align-items: center;
  color: white;
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1400px;
  margin: auto;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  background: #1f1f1f;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.image-fallback {
  display: none;
  padding: 3rem;
  text-align: center;
  font-size: 1.2rem;
  color: #aaa;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 198, 255, 0.1);
  color: #00c6ff;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(0, 198, 255, 0.3);
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.mega-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #00c6ff;
  margin-bottom: 1.5rem;
}

.small-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.btn-wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.see-more-btn,
.contact-btn {
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.see-more-btn {
  background: linear-gradient(135deg, #0046ff, #00c6ff);
  color: white;
  border: none;
}

.contact-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(10px);
}

.see-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 70, 255, 0.4);
}

.contact-btn:hover {
  color: #00c6ff;
  border-color: #00c6ff;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-image {
    order: 2;
    width: 100%;
  }

  .hero-content {
    order: 1;
    max-width: 100%;
  }

  .btn-wrapper {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .mega-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .small-text {
    font-size: 0.95rem;
  }

  .see-more-btn,
  .contact-btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-image {
    max-width: 100%;
  }
}


/* *********************************************************************************** */
/* ********************************* SECTION 2 REDESIGNED *************************** */
/* *********************************************************************************** */

.section2 {
    padding: 100px 5%;
    
    position: relative;
    overflow: hidden;
}

.section2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.section2 .info-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 80px;
    opacity: 1;
    transform: translateY(50px);
}

/* Enhanced Image Grid */
.section2 .image-grid-wrapper {
    width: 45%;
    position: relative;
}

.section2 .floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.1), rgba(74, 144, 226, 0.1));
    backdrop-filter: blur(10px);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.section2 .floating-element-1 {
    width: 120px;
    height: 120px;
    top: -60px;
    right: -60px;
    animation-delay: 0s;
}

.section2 .floating-element-2 {
    width: 80px;
    height: 80px;
    bottom: -40px;
    left: -40px;
    animation-delay: 2s;
}

.section2 .floating-element-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: -30px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.section2 .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.section2 .image-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.1), rgba(74, 144, 226, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section2 .image-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 198, 255, 0.2);
}

.section2 .image-item:nth-child(1) {
    grid-row: span 2;
}

.section2 .image-item:nth-child(4) {
    grid-column: span 2;
}

.section2 .grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    opacity: 1;
    transform: scale(0.8);
}

.section2 .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.8), rgba(74, 144, 226, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section2 .image-item:hover .image-overlay {
    opacity: 1;
}

.section2 .overlay-icon {
    width: 60px;
    height: 60px;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Enhanced Text Content */
.section2 .info-text {
    width: 55%;
    position: relative;
}

.section2 .text-decoration {
    position: absolute;
    top: -20px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section2 .text-accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00c6ff, #4a90e2);
    border-radius: 2px;
}

.section2 .text-accent-dot {
    width: 8px;
    height: 8px;
    background: #00c6ff;
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px #00c6ff; }
    to { box-shadow: 0 0 20px #00c6ff, 0 0 30px #00c6ff; }
}

.section2 .info-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.section2 .title-gradient {
    background: linear-gradient(135deg, #00c6ff, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section2 .title-highlight {
    color: var(--light-color);
    position: relative;
}

.section2 .title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00c6ff, transparent);
    border-radius: 2px;
}

.section2 .info-description-wrapper {
    margin-bottom: 40px;
}

.section2 .info-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 20px;
    text-align: justify;
}

.section2 .info-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #00c6ff, transparent);
    border-radius: 2px;
}

.section2 .highlight-text {
    color: #00c6ff;
    font-weight: 600;
    position: relative;
}

.section2 .info-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.section2 .stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.section2 .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 198, 255, 0.1);
    border-color: rgba(0, 198, 255, 0.3);
}

.section2 .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00c6ff;
    margin-bottom: 5px;
}

.section2 .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* *********************************************************************************** */
/* ********************************* SECTION 3 REDESIGNED *************************** */
/* *********************************************************************************** */

.section3 {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section3-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.section3 .bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.05), transparent 70%);
    animation: slowFloat 20s ease-in-out infinite;
}

.section3 .bg-circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -200px;
    animation-delay: 0s;
}

.section3 .bg-circle-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: -150px;
    animation-delay: 7s;
}

.section3 .bg-circle-3 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes slowFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.section3 .section3-container {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 20px; */
    position: relative;
    z-index: 2;
}

/* Enhanced Header */
.section3 .section3-header {
    margin-bottom: 60px;
}

.section3 .section3-mega-title {
    margin-bottom: 20px;
    opacity: 1;
    transform: translateY(20px);
}

.section3 .title-word {
    display: inline-block;
    font-size: 4rem;
    font-weight: 700;
    margin-right: 20px;
    color: #ffffff;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

.section3 .title-word.highlight {
    background: linear-gradient(135deg, #00c6ff, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 2s ease-in-out infinite;
}

.section3 .title-subtitle {
    display: block;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-top: 10px;
    font-style: italic;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% { 
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

@keyframes titlePulse {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.02);
    }
}

.section3 .title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.section3 .decoration-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00c6ff, transparent);
}

.section3 .decoration-dot {
    width: 6px;
    height: 6px;
    background: #00c6ff;
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite alternate;
}

/* Enhanced Content */
.section3 .section3-content {
    margin-bottom: 80px;
}

.section3 .content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.section3 .section3-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-align: left;
    padding: 0 20px;
    text-align: justify;
}

.section3 .text-highlight {
    color: #00c6ff;
    font-weight: 600;
}

.section3 .brand-highlight {
    background: linear-gradient(135deg, #00c6ff, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section3 .achievement-highlight {
    color: #00c6ff;
    font-weight: 700;
    position: relative;
}

.section3 .achievement-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00c6ff, #4a90e2);
    border-radius: 1px;
}

.section3 .content-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.section3 .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.section3 .feature-item:hover {
    background: rgba(0, 198, 255, 0.1);
    border-color: rgba(0, 198, 255, 0.3);
    transform: translateY(-2px);
}

.section3 .feature-icon {
    width: 24px;
    height: 24px;
    color: #00c6ff;
}

.section3 .feature-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Quality Section */
.section3 .section3-quality {
    margin-bottom: 60px;
}

.section3 .section3-small-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--light-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section3 .quality-icon {
    width: 30px;
    height: 30px;
    color: #00c6ff;
}

.section3 .section3-blue-line-container {
    display: flex;
    justify-content: center;
    margin: 20px 0 40px 0;
}

.section3 .section3-blue-line {
    height: 4px;
    background: linear-gradient(90deg, transparent, #00c6ff, #4a90e2, #00c6ff, transparent);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.section3 .line-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Stats Section */
.section3 .section3-stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    /* flex-wrap: wrap; */

}

.section3 .section3-stat-column {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.5s ease;
    min-width: 250px;
}

.section3 .section3-stat-column:hover {
    transform: translateY(-10px);
    background: rgba(0, 198, 255, 0.05);
    border-color: rgba(0, 198, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 198, 255, 0.1);
}

.section3 .section3-stat-icon {
    position: relative;
    width: 40px;
    height:40px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section3 .section3-stat-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.section3 .icon-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(0, 198, 255, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.section3 .icon-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section3 .section3-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00c6ff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
}

.section3 .section3-stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-color);
    margin-bottom: 10px;
}

.section3 .section3-stat-caption {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 15px;
}

.section3 .section3-stat-badge {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #00c6ff, #4a90e2);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Brands Section */
.section3 .section3-brands {
    text-align: center;
}

.section3 .section3-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section3 .subtext-icon {
    width: 20px;
    height: 20px;
    color: #00c6ff;
}

.section3 .section3-logo-slider {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.section3 .section3-slider-track {
    display: flex;
    animation: slide 20s linear infinite;
    width: calc(200% + 40px);
}

.section3 .logo-item {
    flex: 0 0 auto;
    margin-right: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.section3 .logo-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.section3 .section3-slider-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1);
    transition: all 0.3s ease;
}

.section3 .section3-slider-img:hover {
    filter: grayscale(0%) brightness(1) invert(0);
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.section3 .slider-progress {
    margin-top: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
}

.section3 .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00c6ff, #4a90e2);
    width: 0%;
    animation: progressFill 20s linear infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section2 .info-container {
        gap: 60px;
    }
    
    .section3 .section3-stats-container {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .section2 .info-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .section2 .image-grid-wrapper,
    .section2 .info-text {
        width: 100%;
    }
    
    .section2 .info-title {
        font-size: 2.5rem;
    }
    
    .section3 .title-word {
        font-size: 3rem;
    }
    
    .section3 .section3-stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .section3 .content-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .section2 .image-grid {
        height: 400px;
    }
    
    .section2 .info-title {
        font-size: 2rem;
    }
    
    .section3 .title-word {
        font-size: 2.5rem;
        margin-right: 10px;
    }
    
    .section3 .section3-stat-column {
        min-width: 200px;
        padding: 30px 20px;
    }
    
    .section3 .section3-stat-number {
        font-size: 2.5rem;
    }
}

/* *********************************************************************************** */
/* ********************************* section 4 *************************************** */
/* *********************************************************************************** */
/* Section 4 - Modern Manufacturing Process Design */
.section4 {
    width: 100%;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.section4-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section4-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--light-color);
    font-weight: 700;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}



/* Process Timeline Layout */
.process-timeline {
    position: relative;
    margin-top: 40px;
}


.process-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition);
    position: relative;
}

.process-item:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.process-item:nth-child(even) .process-content {
    text-align: right;
    padding-left: 0;
    padding-right: 40px;
}

.process-item:nth-child(odd) .process-content {
    padding-right: 0;
    padding-left: 40px;
}

.process-image-container {
    flex: 0 0 400px;
    height: 300px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-image-container:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.process-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color)33, var(--accent-color)22);
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
}

.process-image-container:hover::before {
    opacity: 1;
}

.process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.process-image-container:hover .process-image {
    transform: scale(1.1);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 87, 146, 0.3);
}

.process-content {
    flex: 1;
    padding: 20px 40px;
}

.process-title {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.process-item:nth-child(even) .process-title::after {
    left: auto;
    right: 0;
}

.process-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-color);
    margin-bottom: 25px;
    opacity: 0.9;
    text-align: justify;
}

.process-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.feature-tag {
    background: linear-gradient(135deg, var(--light-accent)22, var(--accent-color)11);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--light-accent)33;
    transition: var(--transition);
}

.feature-tag:hover {
    background: var(--light-accent);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Floating Elements Animation */
.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--light-accent)11, var(--accent-color)08);
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 3s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-30px) rotate(180deg); 
    }
}


/* Responsive Design */
@media (max-width: 1024px) {
    .process-image-container {
        flex: 0 0 350px;
        height: 250px;
    }
    
    .process-title {
        font-size: 1.8rem;
    }
    
    .section4-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section4 {
        padding: 60px 20px;
    }
    
    
    
    .process-item,
    .process-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
        transform: translateY(30px);
    }
    
    .process-content,
    .process-item:nth-child(even) .process-content,
    .process-item:nth-child(odd) .process-content {
        padding: 30px 0 0 0;
        text-align: center;
    }
    
    .process-title::after,
    .process-item:nth-child(even) .process-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-image-container {
        flex: none;
        width: 100%;
        max-width: 400px;
        height: 250px;
        margin: 0 auto;
    }
    
   
    
    .section4-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .process-image-container {
        height: 200px;
    }
    
    .process-title {
        font-size: 1.5rem;
    }
    
    .process-description {
        font-size: 1rem;
    }
    
    .section4-title {
        font-size: 1.8rem;
    }
}

/* *********************************************************************************** */
/* ************************** section 5 *************************************** */
/* *********************************************************************************** */
.section5 {
padding: 20px 15px;
text-align: center;
}

.section5-title {
font-size: 2.5rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 15px;
position: relative;
display: inline-block;
}

.section5-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #3ab6f8, #005792);
border-radius: 2px;
}

.section5-subtitle {
font-size: 1.1rem;
color: #ffffff;
margin-bottom: 40px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.section5-cards-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
gap: 30px;
max-width: 1200px;
margin: 0 auto;
}

.section5-card {
width: 320px;
background-color: #ffffff;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
margin-bottom: 20px;
position: relative;

}

.section5-card::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 0;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(79, 70, 229, 0.1) 100%);
transition: height 0.6s ease;
z-index: -1;
}

.section5-card:hover {
transform: translateY(-15px);
box-shadow: 0 30px 60px rgba(84, 92, 235, 0.15), 
        0 0 0 2px rgba(84, 92, 235, 0.03);
}

.section5-card:hover::after {
height: 100%;
}

.section5-card-content {
padding: 30px;
position: relative;
}

.section5-card-icon {
width: 60px;
height: 60px;
background-color: rgba(58, 182, 248, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15px;
}

.section5-card-icon svg {
width: 30px;
height: 30px;
color: #005792;
}

.section5-card-number {
position: absolute;
top: 20px;
right: 20px;
font-size: 3.5rem;
font-weight: 800;
color: rgba(2, 16, 75, 0.1);
line-height: 1;
}

.section5-card-title {
font-size: 1.5rem;
font-weight: 700;
color: #005792;
margin-bottom: 15px;
text-align: left;
}

.section5-card-divider {
width: 50px;
height: 3px;
background: linear-gradient(90deg, #3ab6f8, #005792);
border-radius: 2px;
margin-bottom: 15px;
}

.section5-card-text {
font-size: 1rem;
line-height: 1.6;
color: #666;
text-align: left;
text-align: justify;
}

/* Animation for cards */
@keyframes fadeInUp {
from {
opacity: 1;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Simplified subtle floating animations */
@keyframes floatCard1 {
0% { transform: translateY(0); }
50% { transform: translateY(-5px); }
100% { transform: translateY(0); }
}

@keyframes floatCard2 {
0% { transform: translateY(0); }
50% { transform: translateY(-6px); }
100% { transform: translateY(0); }
}

@keyframes floatCard3 {
0% { transform: translateY(0); }
50% { transform: translateY(-4px); }
100% { transform: translateY(0); }
}

/* Apply initial fade in and then floating */
.section5-card:nth-child(1) {
animation: fadeInUp 0.8s ease forwards, floatCard1 4s ease-in-out infinite;
animation-delay: 0.1s, 0.9s;
opacity: 1;
}

.section5-card:nth-child(2) {
animation: fadeInUp 0.8s ease forwards, floatCard2 5s ease-in-out infinite;
animation-delay: 0.3s, 1.1s;
opacity: 1;
}

.section5-card:nth-child(3) {
animation: fadeInUp 0.8s ease forwards, floatCard3 4.5s ease-in-out infinite;
animation-delay: 0.5s, 1.3s;
opacity: 1;
}

/* Card hover effects */
.section5-card:hover .section5-card-icon {
background: rgba(99, 102, 241, 0.15);
transform: scale(1.05);
}

.section5-card:hover .section5-card-icon svg {
transform: scale(1.1);
}

.section5-card:hover .section5-card-number {
color: rgba(79, 70, 229, 0.15);
}

.section5-card:hover .section5-card-title {
color: #3ab6f8;
}

.section5-card:hover .section5-card-divider {
width: 80px;
}

/* Responsive styles */
@media (max-width: 1100px) {
.section5-cards-container {
max-width: 800px;
}
}

@media (max-width: 768px) {
.section5-title {
font-size: 2.2rem;
}

.section5-card {
width: 100%;
max-width: 320px;
}
}

@media (max-width: 480px) {
.section5 {
padding: 40px 10px;
}

.section5-title {
font-size: 1.8rem;
}

.section5-subtitle {
font-size: 0.95rem;
margin-bottom: 30px;
}

.section5-card {
width: 100%;
max-width: 300px;
}

.section5-card-content {
padding: 25px 20px;
}

.section5-card-icon {
width: 50px;
height: 50px;
}

.section5-card-icon svg {
width: 25px;
height: 25px;
}

.section5-card-number {
font-size: 3rem;
}

.section5-card-title {
font-size: 1.3rem;
}
}

/* section 6 */
/* Mobile Layout (Code 1) */
#section6 {
display: flex;
flex-direction: column;
min-height: 100vh;
position: relative;
margin: 0;
padding: 20px;
/* width: 100%; */
overflow: hidden;
}

/* Top content */
#section6-top {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 0 20px;
opacity: 1;
transform: translateY(30px);
}

#section6-top h1 {
font-size: 4rem;
margin: 0;
color: #ffffff;
}

#section6-top p {
font-size: 1.2rem;
margin: 20px 0 0;
max-width: 700px;
opacity: 1;
transform: translateY(20px);
color: #ffffff;
text-align: justify;
}

/* Slider container */
#section6-slider {
flex: 1;
position: relative;
width: 100%;
}

#section6-container {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
padding: 0;
}

/* Ensure the canvas fills the entire container */
#section6-container canvas {
width: 100% !important;
height: 100% !important;
display: block;
}

/* Slider controls */
#section6-slider-controls {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: center;
gap: 10px;
z-index: 10;
}

#section6-slider-controls button {
background: rgba(0, 102, 204, 0.8);
color: white;
border: none;
border-radius: 50%;
width: 40px;
height: 40px;
font-size: 18px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}

#section6-slider-controls button:hover {
background: rgba(0, 102, 204, 1);
transform: scale(1.1);
}

/* Image title - New Addition */
#section6-image-title {
position: absolute;
top: 20px;
left: 15%;
transform: translateX(-50%);
font-size: 20px;
font-weight: bold;
color: #ffffff;
text-shadow: 0 0 10px rgba(0,0,0,0.5);
z-index: 5;
text-align: center;
width: 80%;
opacity: 1;
pointer-events: none; /* Ensures it doesn't interfere with hover effects */
}

/* Desktop & Tablet Layout (Code 2) */
@media (min-width: 769px) {
#section6 {
flex-direction: row;
}

/* Left side content */
#section6-top {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
text-align: left;
padding: 0 50px;
}

/* Right side slider */
#section6-slider {
flex: 1;
position: relative;
display: flex;
flex-direction: column;
}

#section6-slider-controls {
bottom: 60px;
}

/* Image title for desktop */
#section6-image-title {
top: 40px;
font-size: 20px;
width: 70%;
}
}

/* Mobile styles */
@media (max-width: 768px) {
#section6 {
padding: 20px;
align-items: center;
justify-content: center;
}
#section6-top h1 {
font-size: 2.5rem;
}

#section6-top p {
font-size: 1.1rem;
}

#section6-slider {
height: 70vh;
}

/* Image title for mobile */
#section6-image-title {
top: 15px;
font-size: 1.5rem;
width: 85%;
}
}

@media (max-width: 480px) {
#section6-top {
padding: 20px 15px;
}

#section6-top h1 {
font-size: 2rem;
}

#section6-top p {
font-size: 1rem;
margin-top: 10px;
}

#section6-slider {
height: 65vh;
}

#section6-slider-controls button {
width: 36px;
height: 36px;
font-size: 16px;
}

/* Image title for small mobile */
#section6-image-title {
top: 10px;
font-size: 1.3rem;
}
}

/* 

/***********************************************
* SECTION 8 - ISO Quality
***********************************************/
.section8 {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;

  }
  
  .section8 .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
    padding-top: 0;

  }
  
  .section8 .header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
  }
  
  .section8 .badge {
    line-height: 1.6;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
  }
  
  .section8 .header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
  }
  
  .section8 .header h1 {
    text-align: center;
    color: var(--light-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .section8 .header p {
    font-size: 1.3rem;
    color: var(--light-color);
    opacity: 1.8;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .section8 .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;

    justify-content: space-around;
    justify-items: stretch;
  }
  
  /* Card styling */
  .section8 .card {
    background-color: var(--light-color);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 400px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    will-change: transform, opacity;
  }
  
  .section8 .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    opacity: 1;
    transition: var(--transition);
    z-index: -1;
    border-radius: var(--border-radius);
  }
  
  .section8 .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
  }
  
  .section8 .card:hover::before {
    opacity: 1.05;
  }
  
  .section8 .card-icon-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #eaeaea;
  }
  
  .section8 .card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
    opacity: 1.9;
  }
  
  .section8 .card:hover .card-icon {
    animation: floatIcon 2s ease-in-out infinite;
  }
  
  @keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  .section8 .card-image {
    max-width: 100px;
    max-height: 80px;
    transition: var(--transition);
  }
  
  .section8 .card:hover .card-image {
    transform: scale(1.1);
    animation: floatImage 2s ease-in-out infinite;
  }
  
  @keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  .section8 .card-content {
    padding: 0 25px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
  }
  
  .section8 .card h2 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
  }
  
  .section8 .card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .section8 .card-link {
    display: inline-block;
    color: #005792;
    font-weight: 500;
    padding-bottom: 3px;
    border-bottom: 1px solid #005792;
    align-self: flex-start;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
  }
  
  .section8 .card-link:hover {
    color: #003a61;
    border-bottom-color: #003a61;
  }
  
  .section8 .card .meta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--primary-color);
  }
  
  .section8 .card .meta i {
    margin-right: 5px;
  }
  
  /* Modal/Popup Styles */
  .section8 .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 51, 78, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(5px);
    padding: 20px;
    z-index: 10000;
  }
  
  .section8 .modal-overlay.active {
    opacity: 1;
    visibility: visible;
    
  }
  
  .section8 .modal {
    background-color: var(--light-color);
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 0;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 51, 78, 0.3);
    transform: scale(0.9) translateY(30px);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, opacity;
    z-index: 10000;
    
  }
  
  .section8 .modal-overlay.active .modal {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  
  .section8 .modal-header {
    display: flex;
    padding: 30px;
    background: var(--gradient-primary);
    color: var(--light-color);
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
  }
  
  .section8 .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .section8 .modal-icon {
    font-size: 3rem;
    color: var(--light-color);
    margin-right: 25px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    will-change: transform, opacity;
  }
  
  .section8 .modal-header h2 {
    color: var(--light-color);
    font-size: 2.2rem;
    margin: 0;
    font-weight: 600;
  }
  
  .section8 .modal-content {
    padding: 30px;
    color: var(--text-color);
  }
  
  .section8 .modal-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 1.9;
  }
  
  .section8 .modal-content strong {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .section8 .modal-image {
    text-align: center;
    margin: 30px 0;
  }
  
  .section8 .modal-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }
  
  .section8 .modal-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  .section8 .modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 20px 30px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .section8 .btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .section8 .btn i {
    margin-right: 10px;
  }
  
  .section8 .btn-primary {
    background: var(--gradient-primary);
    color: var(--light-color);
    border: none;
    box-shadow: 0 10px 20px rgba(0, 87, 146, 0.2);
  }
  
  .section8 .btn-primary:hover {
    box-shadow: 0 15px 25px rgba(0, 87, 146, 0.4);
    transform: translateY(-3px);
  }
  
  .section8 .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
  }
  
  .section8 .close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
  }
  
  .section8 .certificate-features {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .section8 .feature-item {
    background-color: rgba(0, 87, 146, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    will-change: transform, opacity;
  }
  
  .section8 .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  .section8 .feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .section8 .feature-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .section8 .timeline {
    position: relative;
    max-width: 100%;
    margin: 40px auto 20px;
  }
  
  .section8 .timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: rgba(0, 87, 146, 0.2);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
  }
  
  .section8 .timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
  }
  
  .section8 .timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--light-color);
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  .section8 .timeline-left {
    left: 0;
    text-align: right;
  }
  
  .section8 .timeline-right {
    left: 50%;
    text-align: left;
  }
  
  .section8 .timeline-left::after {
    right: -10px;
  }
  
  .section8 .timeline-right::after {
    left: -10px;
  }
  
  .section8 .timeline-content {
    padding: 15px 20px;
    background-color: rgba(0, 87, 146, 0.05);
    position: relative;
    border-radius: 10px;
  }
  
  .section8 .timeline-date {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
  }
  
  /* Animation utility classes */
  @keyframes cardEnter {
    0% {
      opacity: 1;
      transform: scale(0.8) translateY(50px);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
  
  .section8 .modal-entrance {
    animation: modalEntrance 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
  
  @keyframes modalEntrance {
    0% {
      opacity: 1;
      transform: scale(0.8) translateY(50px);
    }
    70% {
      transform: scale(1.02) translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .section8 .header h1 {
      font-size: 2.4rem;
    }
    
    .section8 .header p {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 768px) {
    .section8 .container {
      padding: 30px 15px;
    }
    
    .section8 .header {
      margin-bottom: 40px;
    }
    
    .section8 .cards-container {
      grid-template-columns: 1fr;
      max-width: 450px;
    }
    
    .section8 .modal {
      width: 95%;
      padding: 0;
    }
    
    .section8 .modal-header {
      flex-direction: column;
      text-align: center;
      padding: 25px 20px;
    }
    
    .section8 .modal-icon {
      margin-right: 0;
      margin-bottom: 15px;
    }
  
    .section8 .timeline::after {
      left: 31px;
    }
  
    .section8 .timeline-item {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
  
    .section8 .timeline-left, .section8 .timeline-right {
      left: 0;
      text-align: left;
    }
  
    .section8 .timeline-left::after, .section8 .timeline-right::after {
      left: 21px;
    }
    
    .section8 .header h1 {
      font-size: 1.5rem;
    }
  
    .section8 .header p {
      font-size: 1.1rem;
    }
  }

