
 :root {
            --primary: #22c55e;
            --secondary: #1a237e;
            --dark: #0f172a;
            --light: #f8fafc;
            --accent: #3b82f6;
        }
        
        /* Base Styles */
        body {
            margin: 0;
            padding: 0;
           font-family: Copperplate, "Copperplate Gothic Light", serif;
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }


.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
  padding: 10px;
}

/* التنسيقات الخاصة بالجوال */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -40px;
    width: 100%;
    background: #191825;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
  
  .nav-links a {
    width: 90%;
    text-align: center;
    padding: 12px;
  }
  
  .logo img {
    height: 40px;
  }
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 40px;
  background: #191825ee;
  border-bottom: 1.5px solid #14532d;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 24px #0005;
  backdrop-filter: blur(6px);
}
.logo img {
  height: 60px;
  vertical-align: middle;
  display: block;
  border-radius: 50%;
  transition: box-shadow 0.22s, background 0.22s;
  background: transparent;
}
.logo:hover img {
  background: #22c55e;
  box-shadow: 0 0 0 10px #22c55e33, 0 2px 16px #0005;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 36px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25em;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  letter-spacing: 1.1px;
}
.nav-links a:hover {
  background: linear-gradient(90deg, #22c55e 0%, #1a237e 100%);
  color: #191825;
  box-shadow: 0 2px 16px #22c55e55;
}


        
        /* ISE Header Section */
        .ise-header {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at center, rgba(26,35,126,0.2) 0%, rgba(15,23,42,0.8) 100%);
        }
        
        .ise-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1064&q=80') no-repeat center center/cover;
            opacity: 0.15;
            z-index: -1;
        }
        
        .ise-header-content {
            max-width: 1200px;
            padding: 0 20px;
            z-index: 2;
        }
        
        .ise-title {
            font-size: 5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.1;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease-out 0.5s forwards;
        }
        
        .ise-subtitle {
            font-size: 1.5rem;
            color: #94a3b8;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 1s forwards;
        }
        
        .ise-divider {
            width: 200px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            margin: 0 auto 40px;
            border-radius: 4px;
            transform: scaleX(0);
            transform-origin: center;
            animation: scaleIn 1.5s ease-out 1.5s forwards;
        }
        
        /* ISE Definition Section */
        .ise-definition {
            padding: 100px 20px;
            background: linear-gradient(180deg, var(--dark) 0%, rgba(15,23,42,0.95) 100%);
            position: relative;
        }
        
        .ise-definition-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            align-items: center;
        }
        
        .ise-definition-text {
            opacity: 0;
            transform: translateX(-50px);
            animation: fadeInRight 1s ease-out forwards;
        }
        
        .ise-definition-text h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--light);
        }
        
        .ise-definition-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #cbd5e1;
            margin-bottom: 30px;
        }
        
        .ise-pillars {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            opacity: 0;
            transform: translateX(50px);
            animation: fadeInLeft 1s ease-out 0.5s forwards;
        }
        
        .pillar {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }
        
        .pillar:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .pillar-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .pillar h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--light);
        }
        
        .pillar p {
            font-size: 0.9rem;
            color: #94a3b8;
            line-height: 1.6;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes scaleIn {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .ise-title {
                font-size: 4rem;
            }
            
            .ise-subtitle {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .ise-title {
                font-size: 3rem;
            }
            
            .ise-definition-content {
                grid-template-columns: 1fr;
            }
            
            .ise-definition-text, .ise-pillars {
                transform: none !important;
            }
        }
        
        @media (max-width: 480px) {
            .ise-title {
                font-size: 2.5rem;
            }
            
            .ise-subtitle {
                font-size: 1.1rem;
            }
            
            .ise-definition-text h2 {
                font-size: 2rem;
            }
        }





.ise-video-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transform: perspective(1000px) rotateX(5deg);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-wrapper:hover {
  transform: perspective(1000px) rotateX(0) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border: none;
}

.video-glowing-border {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #22c55e, #3b82f6, #22c55e);
  background-size: 200% 200%;
  z-index: 1;
  border-radius: 18px;
  opacity: 0.7;
  animation: glowAnimation 4s ease infinite;
}

@keyframes glowAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.video-pulse-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(34,197,94,0.2) 0%, rgba(34,197,94,0) 70%);
  border-radius: 16px;
  z-index: 3;
  pointer-events: none;
  animation: pulse 6s ease infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.2; }
  100% { transform: scale(1); opacity: 0.5; }
}

.video-pillars {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
}

.pillar-icon.active {
  color: white;
  background: rgba(34,197,94,0.2);
  border-color: #22c55e;
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(34,197,94,0.3);
}

.pillar-icon i {
  transition: all 0.3s ease;
}

.pillar-icon:hover:not(.active) {
  color: white;
  background: rgba(59,130,246,0.2);
  border-color: #3b82f6;
}

.pillar-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  opacity: 0;
  animation: ripple 2s infinite;
}

.pillar-icon.active::after {
  opacity: 0.7;
}

@keyframes ripple {
  0% { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(1.3); opacity: 0; }
}

@media (max-width: 768px) {
  .video-wrapper {
    transform: none;
  }
  
  .video-wrapper:hover {
    transform: scale(1.01);
  }
  
  .pillar-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

 /* Partnership Section Styles */
  .partnership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
  }

  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }

  .section-title {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #1a237e);
  }

  .section-intro {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
  }

  .partnership-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }

  .partnership-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
  }

  .partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #22c55e;
  }

  .partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #1a237e);
  }

  .partnership-icon {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 20px;
  }

  .partnership-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
  }

  .partnership-card p {
    color: #94a3b8;
    margin-bottom: 20px;
  }

  .partnership-details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
  }

  .partnership-details h4 {
    color: #3b82f6;
    margin-bottom: 10px;
  }

  .partnership-details ul {
    padding-left: 20px;
    margin-bottom: 15px;
  }

  .partnership-details li {
    color: #cbd5e1;
    margin-bottom: 8px;
    position: relative;
  }

  .partnership-details li::before {
    content: '•';
    color: #22c55e;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }

  .commitment {
    font-style: italic;
    color: #3b82f6;
    font-weight: 500;
  }

  .partnership-process {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .partnership-process h3 {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 40px;
    position: relative;
  }

  .partnership-process h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #1a237e);
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }

  .step {
    text-align: center;
    position: relative;
  }

  .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #1a237e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
  }

  .step h4 {
    color: white;
    margin-bottom: 10px;
  }

  .step p {
    color: #94a3b8;
    font-size: 0.9rem;
  }

  .contact-box {
    text-align: center;
    margin-top: 40px;
  }

  .contact-box p {
    color: #94a3b8;
    margin-bottom: 20px;
  }

  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #22c55e, #1a237e);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .partnership-types {
      grid-template-columns: 1fr;
    }
    
    .process-steps {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .process-steps {
      grid-template-columns: 1fr;
    }
    
    .partnership-process {
      padding: 20px;
    }
  }

.innovative-partnership {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
}

/* Floating Particles */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  filter: blur(1px);
  animation: float 15s infinite linear;
}

.particle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.particle-2 {
  width: 300px;
  height: 300px;
  bottom: 15%;
  right: 10%;
  animation-delay: 5s;
}

.particle-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 30%;
  animation-delay: 8s;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, 30px) rotate(10deg); }
  50% { transform: translate(0, 50px) rotate(0deg); }
  75% { transform: translate(-20px, 30px) rotate(-10deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* Main Container */
.partnership-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  position: relative;
  z-index: 2;
}

/* Timeline Visual */
.timeline-visual {
  width: 100px;
  position: relative;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-line {
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 0;
}

.timeline-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
  z-index: 2;
}

.timeline-node.active {
  background: linear-gradient(135deg, #22c55e, #1a237e);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.timeline-node .node-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.node-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.3);
  animation: pulse 2s infinite;
  opacity: 0;
}

.timeline-node.active .node-pulse {
  opacity: 1;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.7; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { opacity: 0; }
}

/* Content Area */
.partnership-content {
  flex: 1;
}

.partnership-header {
  margin-bottom: 60px;
  text-align: center;
}

.partnership-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #22c55e, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.partnership-header h2 span {
  display: block;
  font-size: 1.5rem;
  margin-top: 10px;
}

.header-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #22c55e, #1a237e);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.partnership-header p {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Partnership Steps */
.partnership-step {
  display: none;
  align-items: center;
  gap: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partnership-step.active {
  display: flex;
}

.step-visual {
  flex: 1;
  position: relative;
}

.visual-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visual-circle:hover .step-image {
  transform: scale(1.05);
}

.circle-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.3) 0%, rgba(34,197,94,0) 70%);
  animation: glowPulse 4s infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: white;
  position: relative;
  display: inline-block;
}

.step-content h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #1a237e);
}

.step-features {
  display: grid;
  gap: 20px;
}

.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.feature-text h4 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 8px;
}

.feature-text p {
  color: #94a3b8;
  line-height: 1.6;
}

/* Navigation */
.step-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.nav-btn:hover:not(:disabled) {
  background: linear-gradient(90deg, #22c55e, #1a237e);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.step-indicator {
  color: #94a3b8;
  font-weight: 600;
}

.step-indicator .current-step {
  color: white;
  font-size: 1.2rem;
}

/* CTA Section */
.partnership-cta {
  margin-top: 80px;
  background: linear-gradient(135deg, #22c55e, #1a237e);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #14532d;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('troph3.jpg');
  background-size: 100px 100px;
  opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .partnership-container {
    flex-direction: column;
  }
  
  .timeline-visual {
    width: 100%;
    height: 100px;
    margin-right: 0;
    margin-bottom: 40px;
    flex-direction: row;
    justify-content: center;
  }
  
  .timeline-line {
    width: 100%;
    height: 4px;
    top: 50%;
    left: 0;
  }
  
  .timeline-node {
    margin: 0 30px;
  }
  
  .partnership-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .visual-circle {
    width: 200px;
    height: 200px;
  }
  
  .partnership-header h2 {
    font-size: 2.2rem;
  }
  
  .partnership-step {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .partnership-header h2 {
    font-size: 1.8rem;
  }
  
  .partnership-header h2 span {
    font-size: 1.2rem;
  }
  
  .step-navigation {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-btn {
    width: 100%;
    justify-content: center;
  }
}

 /* Sponsorship Section Styles */
  .sponsorship-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  }

  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }

  .section-title {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 20px;
  }

  .section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #1a237e);
    margin: 0 auto 30px;
    border-radius: 2px;
  }

  .section-intro {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
  }

  /* Sponsorship Tiers */
  .sponsorship-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }

  .tier-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }

  .tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
  }

  .platinum {
    border-color: #e5e4e2;
  }
  .platinum::before { background: linear-gradient(90deg, #e5e4e2, #b4b2b0); }
  
  .gold {
    border-color: #ffd700;
  }
  .gold::before { background: linear-gradient(90deg, #ffd700, #daa520); }
  
  .silver {
    border-color: #c0c0c0;
  }
  .silver::before { background: linear-gradient(90deg, #c0c0c0, #a8a8a8); }
  
  .bronze {
    border-color: #cd7f32;
  }
  .bronze::before { background: linear-gradient(90deg, #cd7f32, #b87333); }

  .tier-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
  }

  .tier-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .platinum .tier-header i { color: #e5e4e2; }
  .gold .tier-header i { color: #ffd700; }
  .silver .tier-header i { color: #c0c0c0; }
  .bronze .tier-header i { color: #cd7f32; }

  .tier-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
  }

  .tier-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #22c55e;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(15deg);
  }

  .tier-benefits {
    padding-left: 20px;
    margin-bottom: 25px;
  }

  .tier-benefits li {
    color: #cbd5e1;
    margin-bottom: 10px;
    position: relative;
    font-size: 0.95rem;
  }

  .tier-benefits li::before {
    content: '•';
    color: #22c55e;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }

  .tier-cta {
    text-align: center;
  }

  .cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(90deg, #22c55e, #1a237e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
  }

  /* Custom Sponsorship */
  .custom-sponsorship {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .custom-sponsorship h3 {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
  }

  .custom-sponsorship p {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 1.1rem;
  }

  .custom-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .custom-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .custom-card:hover {
    background: rgba(34, 197, 94, 0.05);
    border-color: #22c55e;
    transform: translateY(-5px);
  }

  .custom-card i {
    font-size: 2rem;
    color: #22c55e;
    margin-bottom: 15px;
  }

  .custom-card h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
  }

  .custom-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
  }

  /* Benefits Section */
  .benefits-section {
    margin-bottom: 60px;
  }

  .benefits-section h3 {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 40px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
  }

  .benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .benefit-card:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: #3b82f6;
  }

  .benefit-card i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 15px;
  }

  .benefit-card h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
  }

  .benefit-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
  }

  /* Process Section */
  .process-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .process-section h3 {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 40px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }

  .step {
    text-align: center;
  }

  .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #1a237e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
  }

  .step h4 {
    color: white;
    margin-bottom: 10px;
  }

  .step p {
    color: #94a3b8;
    font-size: 0.9rem;
  }

  .contact-cta {
    text-align: center;
  }

  .contact-cta p {
    color: #94a3b8;
    margin-bottom: 20px;
  }

  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #22c55e, #1a237e);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .custom-sponsorship,
    .process-section {
      padding: 25px;
    }
    
    .sponsorship-tiers {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 480px) {
    .process-steps {
      grid-template-columns: 1fr;
    }
    
    .section-header {
      margin-bottom: 40px;
    }
  }

        .footer {
  background: #14532d;
  color: #eee;
  padding: 38px 0 0 0;
  margin-top: 44px;
  border-top: 1px solid #0c2a17;
  flex-shrink: 0;
  box-shadow: 0 -2px 16px #0003;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
}
.footer-links-main {
  display: flex;
  gap: 36px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-links-main a {
  color: #fff;
  text-decoration: none;
  font-size: 1.18em;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.footer-links-main a:hover {
  background: #22c55e;
  color: #191825;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 32px;
}
@media (max-width: 900px) {
  .consult-row {
    flex-direction: column;
    gap: 24px;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 16px;
  }
  .footer-links-main {
    flex-wrap: wrap;
    gap: 18px;
  }
}
.footer .contact-info {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.footer .contact-info span {
  color: #cce6d1;
  font-size: 1.08em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer .social {
  display: flex;
  gap: 12px;
}
.footer .social a {
  color: #fff;
  background: #166534;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px #0002;
}
.footer .social a:hover {
  background: #22c55e;
  color: #14532d;
}
.footer-copyright {
  width: 100%;
  text-align: center;
  font-size: 1.08em;
  color: #cce6d1;
  margin-top: 28px;
  padding-bottom: 12px;
  letter-spacing: 0.5px;
}