/* Ultra Modern 2024 - ADJUSTED TEXT SIZES */
.ultra-modern-section {
  padding: 140px 0;
  background: linear-gradient(145deg, #0a0a1a 0%, #1a0a2e 50%, #0f0f23 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.ultra-modern-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(120, 119, 255, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255, 119, 198, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 50% 10%, rgba(120, 255, 198, 0.2) 0%, transparent 40%);
  animation: bgShift 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes bgShift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  33% { transform: scale(1.1) rotate(120deg); }
  66% { transform: scale(1.05) rotate(240deg); }
}

.container { position: relative; z-index: 2; }

/* Image Styles - UNCHANGED */
.image-container {
  height: 100%;
  min-height: 650px;
  display: flex;
  align-items: center;
  perspective: 1200px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(1.1) contrast(1.15);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.8), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.6s ease;
}

.image-shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.4), transparent 70%);
  transition: all 0.6s ease;
}

.image-wrapper:hover .hero-image {
  transform: scale(1.08) rotateX(8deg) rotateY(-8deg);
  filter: brightness(1.2) contrast(1.2);
}

.image-wrapper:hover .image-overlay { opacity: 1; }
.image-wrapper:hover .image-shine {
  top: -50%;
  left: -50%;
}

/* CONTENT - ALL TEXT ADJUSTED */
.content-stack {
  padding: 0 0 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 650px;
}

.badge {
  font-size: 0.75rem; /* Smaller */
  font-weight: 600;
  color: #a78bfa;
  letter-spacing: 0.15em;
  padding: 0.4rem 1.25rem; /* Smaller padding */
  background: rgba(167, 139, 250, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 1.5rem; /* Reduced */
  backdrop-filter: blur(10px);
}

.hero-title {
  margin: 0 0 2.5rem 0; /* Reduced */
  position: relative;
}

.title-line {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem); /* Much smaller */
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 40%, #f8fafc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; /* Tighter */
  letter-spacing: -0.02em;
}

.title-line:nth-child(1) { color: #ffffff; }
.title-line:nth-child(2) { 
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-line:nth-child(3) { color: #ffffff; }

.content-grid {
  margin-bottom: 3rem; /* Reduced */
}

.hero-text {
  font-size: 1rem; /* Smaller */
  line-height: 1.7; /* Adjusted */
  color: #d1d5db;
  margin-bottom: 1.5rem; /* Reduced */
  font-weight: 300;
  max-width: 85%; /* Slightly tighter */
}

.hero-text strong {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero-text.accent em {
  background: linear-gradient(135deg, #34d399, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Stats - Adjusted */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem; /* Reduced */
  margin-bottom: 2.5rem; /* Reduced */
}

.stat-card {
  padding: 2rem 1.5rem; /* Smaller padding */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(120, 119, 255, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.stat-card:hover::before { opacity: 1; }

.stat-number {
  font-size: clamp(2.5rem, 8vw, 4rem); /* Smaller numbers */
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem; /* Reduced */
}

.stat-label {
  font-size: 0.85rem; /* Smaller */
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Button - Adjusted */
.modern-btn {
  position: relative;
  padding: 1rem 2.5rem; /* Smaller */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.95rem; /* Smaller */
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

/* Responsive - Adjusted */
@media (max-width: 992px) {
  .content-stack { padding-left: 2rem; }
}

@media (max-width: 768px) {
  .ultra-modern-section { padding: 100px 0; }
  .content-stack { 
    padding: 0 1.5rem;
    text-align: center;
    align-items: center;
  }
  .hero-text { 
    font-size: 0.95rem; /* Even smaller on mobile */
    max-width: 100%;
  }
  .title-line { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .image-container { min-height: 400px; margin-bottom: 3rem; }
  .stat-number { font-size: clamp(2rem, 9vw, 3rem); }
}

/* Animations - UNCHANGED */
.content-stack { animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both; }
.image-container { animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px) scale(0.9); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px) scale(0.9); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
/* COMPLETELY NEW ULTRA MODERN DESIGN #3 */
.vision-mission-v3 {
  padding: 130px 0 !important;
  background: radial-gradient(ellipse at top, #1e1b4b 0%, #0f0f23 50%, #000000 100%) !important;
  position: relative !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
}

/* Floating particles */
.vision-mission-v3::before {
  content: '' !important;
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #34d399, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(96,165,250,0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, #a78bfa, transparent),
    radial-gradient(1px 1px at 130px 80px, #f472b6, transparent);
  animation: particleFloat 25s linear infinite !important;
  z-index: 1 !important;
}

@keyframes particleFloat {
  from { transform: translateY(0px) rotate(0deg); }
  to { transform: translateY(-100px) rotate(360deg); }
}

/* IMAGE SECTION */
.v3-image-container {
  height: 100% !important;
  min-height: 700px !important;
  display: flex !important;
  align-items: center !important;
}

.v3-image-stack {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 40px !important;
}

.v3-main-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 40px !important;
  box-shadow: 
    0 0 0 2px rgba(255,255,255,0.1),
    0 40px 120px rgba(0,0,0,0.6) !important;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  filter: saturate(1.2) brightness(1.1) !important;
}

.v3-image-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, 
    rgba(52,211,153,0.1) 0%, 
    rgba(96,165,250,0.08) 50%, 
    transparent 100%) !important;
  border-radius: 40px !important;
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
}

.v3-image-particle {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  width: 80px !important;
  height: 80px !important;
  background: radial-gradient(circle, rgba(255,255,255,0.3), transparent) !important;
  border-radius: 50% !important;
  opacity: 0 !important;
  animation: particleSparkle 3s ease-in-out infinite 1s !important;
}

@keyframes particleSparkle {
  0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
  50% { transform: scale(1) rotate(180deg); opacity: 1; }
}

.v3-image-stack:hover .v3-main-image {
  transform: scale(1.1) rotateY(10deg) !important;
  box-shadow: 
    0 0 0 3px rgba(52,211,153,0.5),
    0 60px 160px rgba(0,0,0,0.7) !important;
}

.v3-image-stack:hover .v3-image-overlay {
  opacity: 1 !important;
}

/* CONTENT PANEL */
.v3-content-panel {
  padding-left: 5rem !important;
  height: 100% !important;
  min-height: 700px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  position: relative !important;
  z-index: 2 !important;
}

.v3-badge {
  position: relative !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #a78bfa !important;
  letter-spacing: 0.2em !important;
  padding: 0.6rem 1.8rem !important;
  background: rgba(167,139,250,0.15) !important;
  border: 1px solid rgba(167,139,250,0.4) !important;
  border-radius: 30px !important;
  width: max-content !important;
  margin-bottom: 2.5rem !important;
  box-shadow: 0 8px 25px rgba(167,139,250,0.2) !important;
}

.v3-mission, .v3-vision {
  position: relative !important;
  padding: 1.5rem 0 !important;
}

.v3-icon-circle {
  position: absolute !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  top: 0 !important;
  left: -20px !important;
  z-index: 1 !important;
}

.mission-glow {
  background: radial-gradient(circle, #34d399, #10b981) !important;
  box-shadow: 
    0 0 30px rgba(52,211,153,0.6),
    inset 0 0 20px rgba(255,255,255,0.2) !important;
  animation: missionGlow 2.5s ease-in-out infinite !important;
}

@keyframes missionGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(52,211,153,0.6), inset 0 0 20px rgba(255,255,255,0.2); }
  50% { box-shadow: 0 0 50px rgba(52,211,153,0.9), inset 0 0 30px rgba(255,255,255,0.4); }
}

.vision-glow {
  background: radial-gradient(circle, #60a5fa, #3b82f6) !important;
  box-shadow: 
    0 0 30px rgba(96,165,250,0.6),
    inset 0 0 20px rgba(255,255,255,0.2) !important;
  animation: visionGlow 2.5s ease-in-out infinite 0.5s !important;
}

@keyframes visionGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(96,165,250,0.6), inset 0 0 20px rgba(255,255,255,0.2); }
  50% { box-shadow: 0 0 50px rgba(96,165,250,0.9), inset 0 0 30px rgba(255,255,255,0.4); }
}

.v3-title {
  font-size: clamp(2.1rem, 5vw, 3rem) !important;
  font-weight: 900 !important;
  margin: 0 0 1.2rem 60px !important;
  line-height: 1.1 !important;
  letter-spacing: -0.015em !important;
  position: relative !important;
  z-index: 2 !important;
}

.mission-gradient {
  background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.vision-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.v3-description {
  font-size: 1.02rem !important;
  line-height: 1.75 !important;
  color: #cbd5e1 !important;
  font-weight: 300 !important;
  margin: 0 0 0 60px !important;
  max-width: 90% !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Divider */
.v3-divider-container {
  position: relative !important;
  margin: 2.5rem 0 !important;
  height: 4px !important;
}

.v3-divider-line {
  height: 2px !important;
  background: linear-gradient(90deg, transparent, #64748b, transparent) !important;
  border-radius: 2px !important;
  position: relative !important;
}

.v3-divider-glow {
  position: absolute !important;
  inset: -1px !important;
  background: linear-gradient(90deg, 
    rgba(96,165,250,0.5), 
    rgba(167,139,250,0.4), 
    rgba(96,165,250,0.5)) !important;
  border-radius: 4px !important;
  filter: blur(8px) !important;
  animation: dividerShine 4s ease-in-out infinite !important;
}

@keyframes dividerShine {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

/* ICON-ONLY MISSION VISION - ULTRA MODERN */
.icon-vision-mission {
  padding: 120px 0 !important;
  background: linear-gradient(145deg, #0a0a1a 0%, #1a0a2e 50%, #0f0f23 100%) !important;
  position: relative !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
}

.icon-vision-mission::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: 
    radial-gradient(circle at 25% 25%, rgba(52,211,153,0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(96,165,250,0.2) 0%, transparent 50%) !important;
  animation: bgPulse 6s ease-in-out infinite !important;
  z-index: 1 !important;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.icon-column {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  min-height: 600px !important;
  padding: 2rem !important;
}

.icon-card {
  background: rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(30px) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 32px !important;
  padding: 4rem 3rem !important;
  width: 100% !important;
  max-width: 500px !important;
  height: fit-content !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  position: relative !important;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1) !important;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4) !important;
}

.icon-card:hover {
  transform: translateY(-20px) scale(1.02) !important;
  border-color: rgba(255,255,255,0.3) !important;
  box-shadow: 0 45px 100px rgba(0,0,0,0.6) !important;
}

.icon-wrapper {
  width: 120px !important;
  height: 120px !important;
  margin-bottom: 2rem !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.mission-icon svg, .vision-icon svg {
  width: 80px !important;
  height: 80px !important;
}

.mission-icon-card .icon-wrapper {
  background: radial-gradient(circle, rgba(52,211,153,0.2), transparent) !important;
  box-shadow: 
    0 0 40px rgba(52,211,153,0.4),
    inset 0 0 30px rgba(255,255,255,0.1) !important;
  border: 3px solid rgba(52,211,153,0.3) !important;
  animation: missionRotate 4s linear infinite !important;
}

@keyframes missionRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.vision-icon-card .icon-wrapper {
  background: radial-gradient(circle, rgba(96,165,250,0.2), transparent) !important;
  box-shadow: 
    0 0 40px rgba(96,165,250,0.4),
    inset 0 0 30px rgba(255,255,255,0.1) !important;
  border: 3px solid rgba(96,165,250,0.3) !important;
  animation: visionRotate 4s linear infinite reverse !important;
}

@keyframes visionRotate {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.icon-title {
  color: #ffffff !important;
  font-size: clamp(2.5rem, 6vw, 3.5rem) !important;
  font-weight: 900 !important;
  margin: 0 0 1.5rem 0 !important;
  text-shadow: 0 4px 15px rgba(0,0,0,0.7) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
}

.mission-icon-card .icon-title {
  color: #34d399 !important;
  text-shadow: 
    0 0 25px rgba(52,211,153,0.6),
    0 4px 15px rgba(0,0,0,0.7) !important;
}

.vision-icon-card .icon-title {
  color: #60a5fa !important;
  text-shadow: 
    0 0 25px rgba(96,165,250,0.6),
    0 4px 15px rgba(0,0,0,0.7) !important;
}

.icon-text {
  color: #d1d5db !important;
  font-size: 1.1rem !important;
  line-height: 1.75 !important;
  font-weight: 300 !important;
  margin: 0 !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5) !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .icon-vision-mission {
    padding: 80px 0 !important;
    min-height: auto !important;
  }
  
  .icon-column {
    min-height: 450px !important;
    margin-bottom: 2rem !important;
  }
  
  .icon-card {
    padding: 2.5rem 2rem !important;
    margin: 0 1rem !important;
  }
  
  .icon-title {
    font-size: clamp(2rem, 7vw, 2.8rem) !important;
  }
  
  .icon-text {
    font-size: 1rem !important;
  }
}

/* ANIMATIONS */
.icon-column:nth-child(1) .icon-card {
  opacity: 0 !important;
  transform: translateY(60px) scale(0.9) !important;
  animation: cardSlideUp 1s cubic-bezier(0.25,0.46,0.45,0.94) 0.2s both !important;
}

.icon-column:nth-child(2) .icon-card {
  opacity: 0 !important;
  transform: translateY(60px) scale(0.9) !important;
  animation: cardSlideUp 1s cubic-bezier(0.25,0.46,0.45,0.94) 0.5s both !important;
}

@keyframes cardSlideUp {
  to { 
    opacity: 1 !important; 
    transform: translateY(0) scale(1) !important; 
  }
}
/* ANIMATIONS */
.v3-image-container {
  opacity: 0 !important;
  transform: translateX(-50px) scale(0.95) !important;
  animation: zoomSlideLeft 1.3s cubic-bezier(0.25,0.46,0.45,0.94) 0.1s both !important;
}

.v3-content-panel {
  opacity: 0 !important;
  transform: translateX(50px) scale(0.95) !important;
  animation: zoomSlideRight 1.3s cubic-bezier(0.25,0.46,0.45,0.94) 0.3s both !important;
}

@keyframes zoomSlideLeft {
  to { opacity: 1 !important; transform: translateX(0) scale(1) !important; }
}

@keyframes zoomSlideRight {
  to { opacity: 1 !important; transform: translateX(0) scale(1) !important; }
}

/* IMAGE - PERFECT ALIGNMENT */
.section-image {
  width: 100%;
  max-width: 900px;
  height: 550px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.3);
}

/* CONTENT */
.content-wrapper {
  color: white;
  max-width: 500px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.95;
}

.highlights {
  display: flex;
  gap: 40px;
  margin: 40px 0;
}

.highlight-item .highlight-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.highlight-item .highlight-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  color: #1e293b;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255,255,255,0.4);
  background: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .privacy-section {
    padding: 60px 0;
    text-align: center;
  }
  
  .row {
    flex-direction: column;
    gap: 40px;
  }
  
  .section-image {
    max-width: 350px;
    height: 350px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .highlights {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.animate {
  opacity: 1;
  transform: translateY(0);
}
/* Typography */
#about-white p, .panay-lead, .panay-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

/* ULTRA-MODERN PRESIDENT SECTION - READABLE TEXT */
.president-modern-section {
  padding: 140px 0;
  background: linear-gradient(135deg, #0a0e2e 0%, #1a1b41 50%, #2d1b69 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.president-modern-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* FLOATING TITLE - HIGH CONTRAST */
.floating-title {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}

.floating-title h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

.title-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(236,72,153,0.15));
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  animation: pulse-glow 4s ease-in-out infinite;
}

/* MAIN LAYOUT */
.modern-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

/* PROFILE IMAGE */
.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-circle {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 
    0 0 0 4px rgba(255,255,255,0.2),
    0 40px 100px rgba(0,0,0,0.6);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  border: 3px solid rgba(255,255,255,0.1);
}

.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.profile-circle:hover {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 
    0 0 0 8px rgba(99,102,241,0.4),
    0 60px 150px rgba(0,0,0,0.7);
}

.status-ring {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(99,102,241,0.6);
  border-radius: 50%;
  animation: ring-pulse 2s infinite;
}

.status-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(16,185,129,0.8);
  animation: dot-pulse 1.5s infinite;
}

.profile-info h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.role {
  font-size: 1.1rem;
  color: #e2e8f0;
  font-weight: 500;
  letter-spacing: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* MESSAGE LAYOUT - HIGH CONTRAST */
.message-container {
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -25px;
  left: -50px;
  font-size: 4.5rem;
  color: rgba(99,102,241,0.4);
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(99,102,241,0.3));
  animation: float 4s ease-in-out infinite;
}

.message-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.message-column {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(25px);
  padding: 36px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.message-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #34d399, #10b981);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.message-column.highlight {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.3);
}

.message-column.highlight::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
}

.message-column:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.3);
}

.message-column p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #f9fafb !important;
  margin-bottom: 24px;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.message-column p:last-child {
  margin-bottom: 0;
}

.message-column strong {
  color: #ffffff !important;
  font-weight: 700;
}

/* BUTTONS - HIGH CONTRAST */
.action-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: #ffffff !important;
  box-shadow: 0 20px 40px rgba(16,185,129,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #f9fafb !important;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(25px);
}

.btn-primary:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 30px 60px rgba(16,185,129,0.6);
}

.btn-secondary:hover {
  transform: translateY(-6px) scale(1.05);
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}

/* ANIMATIONS */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes dot-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.23, 1, 0.320, 1);
}

.reveal.animate {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .modern-row {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .message-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .president-modern-section {
    padding: 80px 0;
  }
  
  .profile-circle {
    width: 260px;
    height: 260px;
  }
  
  .action-buttons {
    justify-content: center;
  }
  
  .quote-mark {
    font-size: 3rem;
    left: -20px;
  }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .mission-vision-row {
    padding: 60px 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .mission-vision-card {
    margin-top: 40px;
    padding: 40px 30px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .company-logo {
    height: 350px !important;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}
/* Motion Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Apply animations */
#about-white .sell p {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
#about-white .sell p:nth-child(1) { animation-delay: 0.2s; }
#about-white .sell p:nth-child(2) { animation-delay: 0.4s; }
#about-white .sell p:nth-child(3) { animation-delay: 0.6s; }

.mission-vision-card {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease forwards 0.8s;
}

.panay-lead, .panay-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}
.panay-lead { animation-delay: 0.4s; }
.panay-text:nth-of-type(1) { animation-delay: 0.6s; }
.panay-text:nth-of-type(2) { animation-delay: 0.8s; }
.panay-text:nth-of-type(3) { animation-delay: 1s; }
.panay-text:nth-of-type(4) { animation-delay: 1.2s; }

.panay-image-container {
  opacity: 0;
  transform: scale(0.9);
  animation: zoomIn 1s ease forwards 1.4s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .panay-title, .section-title {
    font-size: 1.6rem;
    text-align: center;
  }
  .panay-lead, .panay-text, .section-text {
    font-size: 0.95rem;
    text-align: justify;
    padding: 0 10px;
  }
  .panay-image-container, .company-image {
    margin-top: 20px;
  }
}
/* Base motion states */
.fly-up, .fly-left, .fly-right, .fly-zoom {
  opacity: 0;
  transition: all 0.8s ease;
}

/* Active states when in view */
.fly-up.active {
  opacity: 1;
  transform: translateY(0);
}
.fly-left.active {
  opacity: 1;
  transform: translateX(0);
}
.fly-right.active {
  opacity: 1;
  transform: translateX(0);
}
.fly-zoom.active {
  opacity: 1;
  transform: scale(1);
}

/* Initial transforms */
.fly-up { transform: translateY(40px); }
.fly-left { transform: translateX(-60px); }
.fly-right { transform: translateX(60px); }
.fly-zoom { transform: scale(0.9); }
/* Dark Mode Section Styling */
#about-white.dark-mode, .panay-broadband-section.dark-mode {
  background-color: #0d0d0d;
  color: #eaeaea;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* LOGO VERSION - ULTRA MODERN */
.panay-broadband-section {
  padding: 120px 0 !important;
  background: linear-gradient(145deg, #0a0a1a 0%, #1a0a2e 50%, #0f0f23 100%) !important;
  min-height: 100vh !important;
  position: relative !important;
}

.panay-broadband-section::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at 80% 20%, rgba(96,165,250,0.25) 0%, transparent 50%) !important;
  z-index: 1 !important;
}

/* TEXT */
.panay-title {
  font-size: clamp(2.8rem, 6vw, 4rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 2rem !important;
  line-height: 1.05 !important;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8) !important;
}

.panay-highlight {
  color: #60a5fa !important;
  text-shadow: 0 0 25px rgba(96,165,250,0.6) !important;
}

.panay-lead {
  color: #e2e8f0 !important;
  font-size: 1.1rem !important;
  line-height: 1.65 !important;
  margin-bottom: 1.5rem !important;
}

.panay-text {
  color: #cbd5e1 !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
  margin-bottom: 1.3rem !important;
}

/* LOGO CONTAINER */
.panay-logo-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 450px !important;
  padding: 2rem !important;
  position: relative !important;
}

.panay-logo {
  max-width: 300px !important;
  max-height: 300px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 20px !important;
  box-shadow: 
    0 30px 70px rgba(0,0,0,0.6),
    0 0 0 2px rgba(96,165,250,0.3) !important;
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1) !important;
  filter: drop-shadow(0 10px 30px rgba(96,165,250,0.3)) !important;
}

.panay-logo-container::before {
  content: '' !important;
  position: absolute !important;
  width: 120px !important;
  height: 120px !important;
  background: radial-gradient(circle, rgba(96,165,250,0.3), transparent) !important;
  border-radius: 50% !important;
  top: 20% !important;
  right: 10% !important;
  opacity: 0.6 !important;
  animation: floatOrb 6s ease-in-out infinite !important;
}

.panay-logo-container::after {
  content: '' !important;
  position: absolute !important;
  width: 80px !important;
  height: 80px !important;
  background: radial-gradient(circle, rgba(52,211,153,0.25), transparent) !important;
  border-radius: 50% !important;
  bottom: 20% !important;
  left: 10% !important;
  opacity: 0.5 !important;
  animation: floatOrb 8s ease-in-out infinite reverse !important;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-15px) scale(1.1); }
}

.panay-logo:hover {
  transform: scale(1.1) rotate(5deg) !important;
  filter: drop-shadow(0 15px 40px rgba(96,165,250,0.5)) !important;
  box-shadow: 
    0 40px 90px rgba(0,0,0,0.7),
    0 0 0 3px rgba(96,165,250,0.5) !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .panay-broadband-section {
    padding: 80px 0 !important;
  }
  
  .panay-logo-container {
    min-height: 350px !important;
  }
  
  .panay-logo {
    max-width: 250px !important;
    max-height: 250px !important;
  }
}
/* BIG LOGO - ULTRA PROMINENT */
.panay-logo {
  width: 380px !important; /* BIGGER */
  height: 380px !important; /* BIGGER */
  max-width: 380px !important;
  max-height: 380px !important;
  border-radius: 50% !important; /* KEEP CIRCLE */
  object-fit: cover !important;
  box-shadow: 
    0 50px 120px rgba(0,0,0,0.8),
    0 0 0 8px rgba(96,165,250,0.5),
    inset 0 4px 20px rgba(255,255,255,0.2),
    inset 0 0 40px rgba(0,0,0,0.4) !important;
  transition: all 0.7s cubic-bezier(0.25,1,0.5,1) !important;
  filter: brightness(1.18) saturate(1.25) contrast(1.12) !important;
  display: block !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 20 !important;
}

.panay-logo:hover {
  transform: scale(1.15) rotate(5deg) !important;
  box-shadow: 
    0 70px 160px rgba(0,0,0,0.9),
    0 0 0 12px rgba(96,165,250,0.7),
    0 0 80px rgba(96,165,250,0.6),
    inset 0 6px 25px rgba(255,255,255,0.25) !important;
  filter: brightness(1.35) saturate(1.35) !important;
}

/* BIGGER CONTAINER */
.col-md-5 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 650px !important; /* TALLER */
  padding: 1.5rem !important;
}

.skill_1l {
  width: 100% !important;
  padding: 1rem !important;
}

/* RESPONSIVE BIG LOGO */
@media (max-width: 992px) {
  .panay-logo {
    width: 320px !important;
    height: 320px !important;
  }
  
  .col-md-5 {
    min-height: 550px !important;
  }
}

@media (max-width: 768px) {
  .panay-logo {
    width: 280px !important;
    height: 280px !important;
  }
  
  .col-md-5 {
    min-height: 480px !important;
    padding: 1rem !important;
  }
}

@media (max-width: 576px) {
  .panay-logo {
    width: 240px !important;
    height: 240px !important;
  }
  
  .col-md-5 {
    min-height: 420px !important;
  }
}
/* ONE COLUMN TEXT + BIG LOGO LAYOUT */
.panay-broadband-section {
  padding: 100px 0 !important;
  background: linear-gradient(145deg, #0a0a1a 0%, #1a0a2e 50%, #0f0f23 100%) !important;
  min-height: 100vh !important;
}

.skill_1r {
  padding-right: 0 !important; /* FULL WIDTH */
}

/* BIG LOGO */
.logo-showcase {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 500px !important;
  padding: 2rem !important;
}

.panay-logo {
  width: 320px !important;
  height: 320px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  box-shadow: 
    0 45px 100px rgba(0,0,0,0.75),
    0 0 0 8px rgba(96,165,250,0.4),
    inset 0 4px 20px rgba(255,255,255,0.2) !important;
  transition: all 0.6s ease !important;
  filter: brightness(1.15) !important;
}

.panay-logo:hover {
  transform: scale(1.12) !important;
  box-shadow: 
    0 65px 140px rgba(0,0,0,0.85),
    0 0 0 12px rgba(96,165,250,0.6),
    0 0 50px rgba(96,165,250,0.5) !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .panay-broadband-section {
    padding: 70px 0 !important;
  }
  
  .logo-showcase {
    min-height: 400px !important;
    order: -1 !important; /* LOGO ON TOP MOBILE */
    margin-bottom: 2.5rem !important;
  }
  
  .panay-logo {
    width: 280px !important;
    height: 280px !important;
  }
}

@media (max-width: 576px) {
  .panay-logo {
    width: 240px !important;
    height: 240px !important;
  }
}
