/* === VELODRONES MASTER STYLESHEET === */

:root {
  /* LOGO-BASED COLOR PALETTE */
  --bg-dark: #050505;
  --bg-darker: #020202;
  --bg-card: #0f1115;
  --text-main: #ffffff;
  --text-muted: #a0a5b0;
  
  /* ELECTRIC BLUE (From Logo) */
  --accent: #007BFF;
  --accent-light: #00C6FF;
  --accent-dark: #0056b3;
  
  /* METALLIC SILVER (From Logo) */
  --silver: #e0e0e0;
  --silver-dark: #999999;
  
  /* UTILITIES */
  --border-color: #1f2329;
  --success: #00d084;
  --warning: #ffb800;
  --error: #ff4757;
  
  /* TYPOGRAPHY */
  --font-primary: 'Inter', sans-serif;
  
  /* SPACING */
  --section-padding: 100px 0;
  --container-width: 1200px;
}

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--text-main) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
}

/* === LAYOUT === */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
}

.bg-dark { background-color: var(--bg-dark); }
.bg-darker { background-color: var(--bg-darker); }
.bg-card { background-color: var(--bg-card); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 198, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--text-main);
  margin-left: 1rem;
}

.btn-secondary:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.btn-full {
  width: 100%;
}

/* === HEADER & NAVIGATION === */
/* --- BRANDED HEADER STYLING --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
    /* THE BRAND GRADIENT FOR THE HEADER BAR */
    background: linear-gradient(90deg, 
        #000000 0%,          /* Pure Black on left */
        #0a0a2e 30%,         /* Deep Navy transition */
        #007bff 60%,         /* Brand Blue */
        #87CEEB 85%,         /* Sky Blue */
        #ffffff 100%);       /* White on right */
        
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styling */
.logo a {
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.logo span {
    color: #87CEEB !important; /* Sky Blue for 'DRONES' */
}

/* Navigation Links - White for contrast against gradient */
.nav-links li a {
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #87CEEB !important; /* Sky Blue on hover */
    transform: translateY(-2px);
}

/* Contact Button in Header */
.nav-links .btn-primary {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #87CEEB;
    padding: 0.6rem 1.8rem;
    border-radius: 5px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
    transition: all 0.3s ease;
}

.nav-links .btn-primary:hover {
    background: #87CEEB !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.6);
}

/* Mobile Menu Toggle */
.hamburger i {
    color: #ffffff !important;
    font-size: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 3px;
}

.logo span {
  color: var(--accent-light);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-light);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* === HERO SECTION === */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url('https://images.unsplash.com/photo-1473968512647-3e447244af8f?auto=format&fit=crop&w=1920&q=80') 
              center/cover no-repeat fixed;
}

.hero-content {
  max-width: 900px;
  padding: 0 2rem;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === PAGE HERO === */
.page-hero {
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
              url('https://images.unsplash.com/photo-1508614589041-895b8c9d7ef5?auto=format&fit=crop&w=1920&q=80') 
              center/cover no-repeat;
  margin-top: 0;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* === GRIDS === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* === CARDS === */
.card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card p {
  color: var(--text-muted);
}

/* === SERVICE CARDS === */
.service-card {
  composes: card;
  text-align: center;
}

.service-card i {
  font-size: 3rem;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

/* === CHALLENGE CARDS === */
.challenge-card {
  composes: card;
  border-left: 4px solid var(--error);
}

.challenge-card i {
  color: var(--error);
}

/* === SOLUTION SECTION === */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  text-align: center;
}

.solution-item {
  padding: 2rem;
}

.solution-icon {
  width: 90px;
  height: 90px;
  background: rgba(0, 123, 255, 0.1);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--accent-light);
  transition: all 0.3s ease;
}

.solution-item:hover .solution-icon {
  background: var(--accent);
  color: var(--text-main);
  transform: rotateY(360deg);
}

/* === ROI SECTION === */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.roi-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 8px;
  border-left: 4px solid var(--success);
}

.roi-item i {
  color: var(--success);
  font-size: 1.5rem;
}

/* === PORTFOLIO === */
.portfolio-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: var(--text-main);
  border-color: var(--accent);
}

.project-card {
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
}

.project-media {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.project-media img,
.project-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  padding: 2rem;
}

.project-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 123, 255, 0.1);
  color: var(--accent-light);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.project-content h3 {
  margin-bottom: 1rem;
}

.project-content p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.project-roi {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  color: var(--success);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* === CONTACT FORM === */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info-box {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 8px;
  height: fit-content;
}

.contact-info-box h3 {
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.contact-detail i {
  color: var(--accent-light);
  font-size: 1.2rem;
  width: 24px;
}

.contact-form {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-main);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-success {
  background: var(--success);
  color: var(--text-main);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: none;
}

.form-error {
  background: var(--error);
  color: var(--text-main);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: none;
}

/* === INDUSTRIES === */
.industry-card {
  composes: card;
  text-align: center;
  padding: 3rem 2rem;
}

.industry-card i {
  font-size: 3rem;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  display: block;
}

/* === VALUES === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.value-card i {
  color: var(--accent-light);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--text-main);
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* === SERVICE DETAIL === */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
}

.service-detail-grid img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-detail-grid ul {
  margin: 1.5rem 0;
}

.service-detail-grid ul li {
  padding: 0.75rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-detail-grid ul li i {
  color: var(--success);
}

/* === FOOTER === */
.footer {
  background: var(--bg-darker);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-col h3 span {
  color: var(--accent-light);
}

.footer-col h4 {
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-col p {
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.contact-info i {
  color: var(--accent-light);
  width: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--text-muted);
  margin: 0 0.5rem;
}

.footer-bottom a:hover {
  color: var(--accent-light);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-wrapper,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-darker);
    flex-direction: column;
    justify-content: center;
    transition: left 0.3s ease;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-secondary {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .contact-form,
  .contact-info-box {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .card {
    padding: 1.5rem;
  }
}

/* === PLYR VIDEO PLAYER CUSTOMIZATION === */
.plyr {
  --plyr-color-main: var(--accent);
  --plyr-video-background: var(--bg-dark);
  border-radius: 8px;
  overflow: hidden;
}

.plyr--full-ui input[type=range] {
  color: var(--accent-light);
}

/* === LOADING STATE === */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--accent);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-accent { color: var(--accent-light); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }


/* Hero Section with Background Video */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(5, 5, 5, 0.7) 0%, 
        rgba(0, 123, 255, 0.3) 100%);
    z-index: 1;
}

/* Ensure hero content is above video */
.hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

/* Add text shadows for better readability */
.hero h1 {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
}

.hero p {
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .header {
        background: rgba(0, 0, 0, 0.9); 
    }
    
    /* REMOVE display: none FROM HERE */
    .hero-video {
        /* display: none;  <-- DELETE OR COMMENT OUT THIS LINE */
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}




/* Hero Section with Background Video - Adjusted Positioning */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Add top padding to account for navbar */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(5, 5, 5, 0.7) 0%, 
        rgba(0, 123, 255, 0.3) 100%);
    z-index: 1;
}

/* Ensure hero content is above video */
.hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    margin-top: -50px; /* Move content up slightly */
}

/* Add text shadows for better readability */
.hero h1 {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    font-size: 3rem; /* Adjust if needed */
    line-height: 1.2;
}

.hero p {
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
    .hero {
        background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
        padding-top: 120px; /* More padding on mobile */
    }
    .hero-overlay {
        display: none;
    }
    .hero .hero-content {
        margin-top: 0;
    }
    .hero h1 {
        font-size: 2rem;
    }
}



/* --- HERO BUTTONS - HIGH CONTRAST & BRANDED --- */

/* Primary Button: Solid Black with Sky Blue Glow */
.hero .btn-primary {
    background-color: #000000 !important; /* Solid Black */
    color: #ffffff !important;            /* White Text */
    border: 2px solid #00bfff !important; /* Sky Blue Border */
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.6) !important; /* Sky Blue Glow */
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero .btn-primary:hover {
    background-color: #00bfff !important; /* Sky Blue on hover */
    color: #000000 !important;            /* Black text on hover */
    box-shadow: 0 0 30px rgba(0, 191, 255, 1) !important;   /* Brighter glow */
    transform: translateY(-3px) !important;
}

/* Secondary Button: Solid White with Black Text */
.hero .btn-secondary {
    background-color: #ffffff !important; /* Solid White */
    color: #000000 !important;            /* Black Text */
    border: 2px solid #ffffff !important; /* White Border */
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero .btn-secondary:hover {
    background-color: transparent !important;
    color: #ffffff !important;            /* White text on hover */
    border-color: #00bfff !important;     /* Sky Blue border on hover */
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.6) !important;
    transform: translateY(-3px) !important;
}

/* Ensure buttons sit side-by-side nicely */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}




/* --- MOBILE OPTIMIZATION: Static Image Instead of Video --- */
@media (max-width: 768px) {
    /* Hide video on mobile */
    .hero-video {
        display: none;
    }
    
    /* Show static background image on mobile */
    .hero {
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.8) 0%, 
            rgba(0, 123, 255, 0.5) 50%, 
            rgba(135, 206, 235, 0.6) 100%),
            url('../assets/images/mobile-hero-bg.jpeg') center/cover no-repeat fixed;
    }
    
    /* Ensure overlay still works on mobile */
    .hero-overlay {
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.7) 0%, 
            rgba(0, 123, 255, 0.4) 50%, 
            rgba(135, 206, 235, 0.5) 100%);
    }
    
    /* Adjust text for mobile */
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

/* Desktop: Video plays normally (no changes needed) */
@media (min-width: 769px) {
    .hero {
        background: none; /* Remove background image on desktop */
    }
}











/* ============================================================
   UNIFIED VELODRONES BRAND - Dark Navy + Sky Blue Glow
   Applied to ALL sections for cinematic consistency
   ============================================================ */

/* --- ALL SECTIONS: Dark Navy Gradient Background --- */
.section.bg-dark,
.section.bg-darker,
#services,
#solutions,
#industries {
    background: linear-gradient(135deg, 
        #000814 0%, 
        #001d3d 30%, 
        #003566 60%, 
        #001d3d 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Subtle sky blue radial glow effect */
.section.bg-dark::before,
.section.bg-darker::before,
#services::before,
#solutions::before,
#industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(135, 206, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section.bg-dark .container,
.section.bg-darker .container,
#services .container,
#solutions .container,
#industries .container {
    position: relative;
    z-index: 1;
}

/* --- Section Titles: Glowing Sky Blue --- */
.section-title {
    color: #87CEEB !important;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.5), 
                 0 0 60px rgba(0, 191, 255, 0.3) !important;
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.5px !important;
}

/* --- Section Subtitles: Light Gray --- */
.section-subtitle {
    color: #b8d4e8 !important;
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
    opacity: 0.95 !important;
    max-width: 700px !important;
    margin: 0 auto 3rem auto !important;
}

/* --- ALL CARDS: Dark Navy with Subtle Borders --- */
.service-card,
.challenge-card,
.solution-item,
.industry-card,
.roi-item {
    background: rgba(0, 29, 61, 0.6) !important;
    border: 1px solid rgba(0, 191, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 2rem 1.5rem !important;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

/* Hover effect - sky blue glow */
.service-card:hover,
.challenge-card:hover,
.solution-item:hover,
.industry-card:hover,
.roi-item:hover {
    background: rgba(0, 53, 102, 0.7) !important;
    border-color: rgba(0, 191, 255, 0.5) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 191, 255, 0.2) !important;
}

/* --- Card Headings: White --- */
.service-card h3,
.challenge-card h3,
.solution-item h3,
.industry-card h3 {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.8rem !important;
}

/* --- Card Text: Light Gray --- */
.service-card p,
.challenge-card p,
.solution-item p,
.industry-card p {
    color: #b8d4e8 !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
}

/* --- Icons: Sky Blue --- */
.service-card i,
.challenge-card .card-icon,
.solution-icon i,
.industry-card i {
    color: #00bfff !important;
    font-size: 2.2rem !important;
    margin-bottom: 1.2rem !important;
    display: block;
}

/* --- Learn More Links: Sky Blue --- */
.text-accent {
    color: #00bfff !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem !important;
}

.text-accent:hover {
    color: #87CEEB !important;
    gap: 0.8rem;
}

/* --- ROI Items: Special Styling with Green Checkmarks --- */
.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.roi-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.roi-item i {
    color: #00d484 !important; /* Green checkmark */
    font-size: 1.5rem !important;
    flex-shrink: 0;
}

.roi-item span {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
}

/* --- CTA Section: Enhanced Gradient --- */
.section.bg-darker.text-center {
    background: linear-gradient(135deg, 
        #000814 0%, 
        #001d3d 40%, 
        #003566 70%, 
        #00bfff 100%) !important;
    padding: 6rem 0 !important;
}

.section.bg-darker.text-center h2 {
    color: #ffffff !important;
    font-size: 3rem !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.section.bg-darker.text-center .section-subtitle {
    color: #e0f2ff !important;
}

/* --- CTA Buttons: High Contrast --- */
.btn-primary {
    background: #00bfff !important;
    color: #000000 !important;
    border: 2px solid #00bfff !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.4) !important;
}

.btn-primary:hover {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5) !important;
}

.btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #00bfff !important;
    color: #00bfff !important;
    transform: translateY(-3px) !important;
}

/* --- Footer: Matching Dark Navy --- */
.footer {
    background: linear-gradient(180deg, #000814 0%, #000000 100%) !important;
    border-top: 2px solid rgba(0, 191, 255, 0.3);
    color: #b8d4e8 !important;
}

.footer h3, .footer h4 {
    color: #ffffff !important;
}

.footer h3 span {
    color: #00bfff !important;
}

.footer a {
    color: #87CEEB !important;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #00bfff !important;
}

.footer .contact-info i {
    color: #00bfff !important;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 191, 255, 0.2);
    color: #4a6a8a !important;
}

/* --- Mobile Optimization --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
    }
    
    .section.bg-darker.text-center h2 {
        font-size: 2rem !important;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.9rem 2rem !important;
        font-size: 1rem !important;
        width: 100%;
        text-align: center;
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   ABOUT PAGE - Dark Navy Cinematic Theme (Matches Homepage)
   ============================================================ */

/* About page hero section - Dark Navy Gradient */
.page-hero {
    background: linear-gradient(135deg, 
        #000814 0%, 
        #001d3d 30%, 
        #003566 60%, 
        #001d3d 100%) !important;
    padding: 10rem 0 5rem !important;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 191, 255, 0.3);
}

/* Subtle sky blue radial glow */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(0, 191, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(135, 206, 235, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: #87CEEB !important;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.5), 
                 0 0 60px rgba(0, 191, 255, 0.3) !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
}

.page-hero p {
    color: #b8d4e8 !important;
    font-size: 1.2rem !important;
    max-width: 700px !important;
    margin: 0 auto !important;
}

/* About page sections - Dark Navy Background */
body.about-page .section {
    background: linear-gradient(135deg, 
        #000814 0%, 
        #001d3d 30%, 
        #003566 60%, 
        #001d3d 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 !important;
}

/* Subtle glow effect on sections */
body.about-page .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(135, 206, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body.about-page .section .container {
    position: relative;
    z-index: 1;
}

/* Section Titles - Glowing Sky Blue */
body.about-page h2 {
    color: #87CEEB !important;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.5), 
                 0 0 60px rgba(0, 191, 255, 0.3) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
}

/* Body Text - Light Gray */
body.about-page p {
    color: #b8d4e8 !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
}

/* About page cards - Dark Navy with Sky Blue Borders */
body.about-page .card {
    background: rgba(0, 29, 61, 0.6) !important;
    border: 1px solid rgba(0, 191, 255, 0.2) !important;
    border-left: 4px solid #00bfff !important;
    border-radius: 12px !important;
    padding: 2.5rem 2rem !important;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

body.about-page .card:hover {
    background: rgba(0, 53, 102, 0.7) !important;
    border-color: rgba(0, 191, 255, 0.5) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 191, 255, 0.2) !important;
}

body.about-page .card h3 {
    color: #ffffff !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

body.about-page .card p {
    color: #b8d4e8 !important;
    line-height: 1.7 !important;
}

body.about-page .card-icon {
    color: #00bfff !important;
    font-size: 2.2rem !important;
    margin-bottom: 1.2rem !important;
    display: block;
}

/* About page image styling */
body.about-page img {
    border: 2px solid rgba(0, 191, 255, 0.3) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2) !important;
}

/* Grid layout for about page */
body.about-page .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

/* Section dividers */
body.about-page .section {
    border-top: 2px solid rgba(0, 191, 255, 0.2);
    border-bottom: 2px solid rgba(0, 191, 255, 0.2);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .page-hero {
        padding: 8rem 0 3rem !important;
    }
    
    .page-hero h1 {
        font-size: 2rem !important;
    }
    
    body.about-page h2 {
        font-size: 1.8rem !important;
    }
    
    body.about-page .card {
        padding: 2rem 1.5rem !important;
    }
    
    body.about-page .grid-2 {
        grid-template-columns: 1fr;
    }
}




/* Enhanced Services Section with Images */
.service-card {
    background: rgba(0, 29, 61, 0.6) !important;
    border: 1px solid rgba(0, 191, 255, 0.2) !important;
    border-radius: 16px !important;
    padding: 0 !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: rgba(0, 53, 102, 0.8) !important;
    border-color: rgba(0, 191, 255, 0.6) !important;
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(0, 191, 255, 0.3) !important;
}

/* Service Image Wrapper */
.service-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-bottom: 3px solid rgba(0, 191, 255, 0.3);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 191, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    color: #ffffff;
    font-size: 2.5rem;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.service-card:hover .service-overlay i {
    transform: scale(1);
}

/* Service Icon Wrapper */
.service-icon-wrapper {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00bfff 0%, #007bff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
    z-index: 2;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.service-icon-wrapper i {
    color: #ffffff;
    font-size: 1.8rem;
}

/* Service Content */
.service-card h3 {
    color: #87CEEB !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin: 1.5rem 1.5rem 0.8rem !important;
    padding-right: 70px;
}

.service-short-desc {
    color: #b8d4e8 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin: 0 1.5rem 1rem !important;
    font-style: italic;
    font-weight: 500;
}

/* Service Highlights */
.service-highlights {
    list-style: none !important;
    padding: 0 1.5rem !important;
    margin: 0 0 1.5rem !important;
}

.service-highlights li {
    color: #e0f2ff !important;
    padding: 0.5rem 0 !important;
    font-size: 0.95rem !important;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-highlights li i {
    color: #00d484 !important;
    font-size: 0.9rem;
}

/* Learn More Button */
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00bfff !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    margin: 0 1.5rem 1.5rem !important;
    padding: 0.8rem 1.5rem !important;
    border: 2px solid rgba(0, 191, 255, 0.3) !important;
    border-radius: 8px !important;
    background: rgba(0, 191, 255, 0.05) !important;
    transition: all 0.3s ease !important;
    align-self: flex-start;
}

.btn-learn-more:hover {
    background: rgba(0, 191, 255, 0.15) !important;
    border-color: #00bfff !important;
    color: #ffffff !important;
    transform: translateX(5px) !important;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3) !important;
}

.btn-learn-more i {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .service-image-wrapper {
        height: 160px;
    }
    
    .service-card h3 {
        padding-right: 1.5rem !important;
        font-size: 1.2rem !important;
    }
    
    .service-short-desc {
        font-size: 0.95rem !important;
    }
    
    .service-highlights li {
        font-size: 0.9rem !important;
    }
}




/* ============================================================
   HORIZONTAL SERVICE ROWS - Matching Screenshot Layout
   ============================================================ */

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
    background: rgba(0, 29, 61, 0.5);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-row:hover {
    background: rgba(0, 53, 102, 0.6);
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 191, 255, 0.15);
    transform: translateY(-5px);
}

/* Alternate layout for visual rhythm (image on right for even rows) */
.service-row:nth-child(even) {
    grid-template-columns: 1.4fr 1fr;
}

.service-row:nth-child(even) .service-row-image {
    order: 2;
}

.service-row:nth-child(even) .service-row-content {
    order: 1;
}

/* Image Side */
.service-row-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 191, 255, 0.3);
}

.service-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-row:hover .service-row-image img {
    transform: scale(1.08);
}

/* Content Side */
.service-row-content {
    padding: 1rem 0;
}

.service-row-content h3 {
    color: #ffffff !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.8rem !important;
    letter-spacing: -0.5px;
}

.service-tagline {
    color: #87CEEB !important;
    font-size: 1.1rem !important;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 1.2rem !important;
    line-height: 1.5;
}

.service-brief {
    color: #b8d4e8 !important;
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    margin-bottom: 2rem !important;
    opacity: 0.95;
}

/* Discover Button */
.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #00bfff !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    padding: 1rem 2rem !important;
    border: 2px solid rgba(0, 191, 255, 0.4) !important;
    border-radius: 10px !important;
    background: rgba(0, 191, 255, 0.05) !important;
    transition: all 0.3s ease !important;
}

.btn-discover:hover {
    background: rgba(0, 191, 255, 0.15) !important;
    border-color: #00bfff !important;
    color: #ffffff !important;
    transform: translateX(8px) !important;
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3) !important;
}

.btn-discover i {
    transition: transform 0.3s ease;
}

.btn-discover:hover i {
    transform: translateX(5px);
}

/* Mobile Optimization */
@media (max-width: 968px) {
    .service-row,
    .service-row:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-row:nth-child(even) .service-row-image {
        order: 0;
    }
    
    .service-row:nth-child(even) .service-row-content {
        order: 0;
    }
    
    .service-row-image {
        height: 240px;
    }
    
    .service-row-content h3 {
        font-size: 1.6rem !important;
    }
    
    .service-tagline {
        font-size: 1rem !important;
    }
    
    .service-brief {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .service-row {
        padding: 1.5rem;
    }
    
    .service-row-image {
        height: 200px;
    }
    
    .btn-discover {
        width: 100%;
        justify-content: center;
    }
}



/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float i {
    display: block;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #ffffff;
    color: #000000;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile */
    }
}


.cert-badge-mini {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 29, 61, 0.4);
    border-top: 1px solid rgba(0, 191, 255, 0.2);
    margin-top: 2rem;
}

.cert-badge-mini img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.cert-badge-mini p {
    color: #00d484;
    font-size: 0.85rem;
    margin: 0.5rem 0 0;
}

.cert-badge-mini i {
    margin-right: 0.3rem;
}



/* Mini KCAA Certification Badge */
.cert-badge-mini {
    text-align: center;
    padding: 2rem 1rem 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(1, 42, 56, 0.2);
}

.cert-badge-mini img {
    max-width: 140px;
    height: auto;
    /* REMOVED: filter: brightness(0) invert(1); */
    display: block;
    margin: 0 auto 0.8rem;
    /* Optional: Add a subtle drop shadow so it pops against dark bg */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.cert-badge-mini p {
    color: #00d484;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.cert-badge-mini i {
    font-size: 0.9rem;
}




/* Fixed Header Height */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 100px; /* FIXED height - header never changes */
}

/* Navbar fills the fixed header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%; /* Fills the 75px header exactly */
    padding: 0 5%; /* ZERO top/bottom padding */
}

/* Bigger Logo Without Increasing Header */
.header-logo {
    height: 100px; /* Almost fills the entire 75px header */
    width: auto;
    display: block;
    object-fit: contain;
    mix-blend-mode: screen;
    background: transparent !important;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        height: 65px;
    }
    .header-logo {
        height: 55px;
    }
}




/* --- GLOBAL PREMIUM HEADER STYLES --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 90px;
    
    /* The Signature Gradient */
    background: linear-gradient(90deg, 
        #000814 0%,      /* Deep black left */
        #001d3d 40%,     /* Navy middle */
        #003566 70%,     /* Blue right */
        #00bfff 100%     /* Sky blue edge */
    );
    
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0 5%;
}

/* Seamless Logo Blending */
.logo {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    background: transparent !important;
    border: none !important;
}

.header-logo {
    height: 70px;
    width: auto;
    display: block;
    
    /* Makes black background transparent */
    mix-blend-mode: screen; 
    background: transparent !important;
    object-fit: contain;
    
    transition: transform 0.3s ease, filter 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00bfff;
}

/* White Contact Button */
.nav-links .btn-primary {
    background: #ffffff;
    color: #000000;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.nav-links .btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #00bfff;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .header { height: 70px; }
    .header-logo { height: 50px; }
    .nav-links { display: none; } /* Handled by JS toggle */
}



/* === MOBILE NAVIGATION FIX (Works with existing JS) === */

@media (max-width: 768px) {
    /* 
       CRITICAL FIX: 
       We use display:none by default so it's hidden.
       When your JS adds .active, we switch to display:flex 
       and change direction to column.
    */
    .nav-links {
        display: none !important; /* Hidden by default on mobile */
        
        position: fixed;
        top: 90px; /* Push down below header */
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(0, 8, 20, 0.98); /* Solid dark bg */
        backdrop-filter: blur(15px);
        z-index: 999;
        
        /* Stack items vertically when shown */
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 4rem;
        gap: 2rem;
        
        margin: 0;
        padding-left: 0; /* Remove default ul padding */
        list-style: none;
    }

    /* This class is added by YOUR existing JavaScript */
    .nav-links.active {
        display: flex !important; /* Show only when active */
    }

    /* Style links for mobile touch targets */
    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    /* Staggered fade-in animation */
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }

    .nav-links a {
        font-size: 1.4rem !important;
        color: #ffffff !important;
        padding: 1rem 2rem !important;
        display: block;
        width: 100%;
    }

    .nav-links a:hover {
        color: #00bfff !important;
        background: rgba(0, 191, 255, 0.05);
    }

    /* Fix Contact Button on Mobile */
    .nav-links .btn-primary {
        background: #ffffff !important;
        color: #000000 !important;
        margin-top: 1rem;
        width: auto !important;
        display: inline-block !important;
        border-radius: 6px;
    }

    /* Hamburger Icon Styling */
    .hamburger {
        display: flex !important;
        cursor: pointer;
        z-index: 1001;
        padding: 0.5rem;
    }

    .hamburger i {
        font-size: 1.8rem;
        color: #ffffff;
        transition: transform 0.3s ease;
    }

    /* Rotate icon when active (handled by your JS toggling classes) */
    .hamburger.active i {
        transform: rotate(90deg);
    }
}

/* Desktop Reset */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
        position: static;
        height: auto;
        width: auto;
        background: transparent;
        flex-direction: row;
        padding-top: 0;
        gap: 2rem;
    }
    
    .nav-links li {
        opacity: 1 !important;
        transform: none !important;
        width: auto;
    }
}