/* 
   Homepage Section Background Pattern (Alternating):
   - Hero: Uses particles.js background (no change)
   - About Growth: Style 1 (Hexagon pattern) 
   - Services: Style 2 (Square grid) 
   - Portfolio Showcase: Style 1 (Hexagon pattern)
   - Testimonials: Style 2 (Square grid)
   - Contact CTA: Style 1 (Hexagon pattern)
   - Booking Promo: Style 2 (Square grid)
   
   This creates a true alternating pattern: 1-2-1-2-1-2
*/

/* Hero Section Styles */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Hero buttons - only target solid buttons, let outline buttons keep their own styling */
#home .hero-buttons .btn:not(.btn-outline),
#home .hero-buttons a.btn:not(.btn-outline) {
    color: #003034 !important;  /* Dark color for solid buttons only */
}


.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
}

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

/* Home Page Specific Styles */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Revamped About Us Section Styles */
.about-us--revamped {
  background-color: #121212;
  padding: 4rem 2rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-us--revamped::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about-heading {
  color: var(--secondary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-underline {
  width: 80px;
  height: 3px;
  background: var(--secondary);
  margin: 0 auto 2rem auto;
  position: relative;
  z-index: 1;
}

.about-flex {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.about-media {
  flex: 0 0 350px;
  max-width: 350px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px -8px rgba(0, 0, 0, 0.6);
}

.team-device {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.team-device__bezel {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  border: 4px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #022326, #001316);
}

.team-device__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.3s;
}

.team-device__shine,
.team-device__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  pointer-events: none;
}

.team-device__shine {
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1), transparent 60%);
  opacity: 0.7;
}

.team-device__gradient {
  background: linear-gradient(145deg, rgba(0, 255, 255, 0.15), rgba(0, 40, 50, 0.15));
  mix-blend-mode: overlay;
}

.team-device__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 700;
  border: 1px solid rgba(0, 255, 255, 0.4);
  border-radius: 20px;
  text-transform: uppercase;
  color: var(--secondary);
  box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.3);
  z-index: 1;
}

.team-device__shadow {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  filter: blur(10px);
  z-index: 0;
}

.about-copy {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.impact-heading {
  margin: 0;
  font-size: 1.25rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.impact-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--secondary);
}

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

.impact-card {
  background: linear-gradient(145deg, rgba(0, 255, 255, 0.08), rgba(0, 40, 50, 0.15));
  padding: 1.2rem 1rem;
  border: 1px solid rgba(0, 255, 255, 0.18);
  border-radius: 12px;
  text-align: center;
}

.impact-label {
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.impact-value {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* About Section Specific Styles */
.about-layout {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-floating-media {
  flex: 0 0 350px;
  max-width: 350px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px -8px rgba(0, 0, 0, 0.6);
  transform: translateY(-30px);
  animation: float 3s ease-in-out infinite;
}

.af-frame {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  border: 4px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #022326, #001316);
}

.af-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.3s;
}

.af-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 700;
  border: 1px solid rgba(0, 255, 255, 0.4);
  border-radius: 20px;
  text-transform: uppercase;
  color: var(--secondary);
  box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.3);
  z-index: 1;
}

.af-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease-out;
  z-index: 0;
}

.about-text-only {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Stats Section Styles */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* ===== RENOVATED SECTIONS BELOW ABOUT ===== */

/* Common Section Header Styling */
.section-header {
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-header-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.section-header-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-header-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  margin: 1rem auto 0;
}

/* ===== THEME-FOCUSED MODERN SECTIONS ===== */

/* About Growth Section - Hexagon Pattern Background (Style 1) */
.about-growth-section {
  background: linear-gradient(225deg, #091214 0%, #0e1e22 50%, #121f24 70%, #0a1315 100%);
  padding: 6rem 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.about-growth-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(30deg, transparent 65%, rgba(0, 255, 240, 0.04) 65.5%, rgba(0, 255, 240, 0.04) 70%, transparent 70.5%),
    linear-gradient(90deg, transparent 65%, rgba(0, 255, 255, 0.03) 65.5%, rgba(0, 255, 255, 0.03) 70%, transparent 70.5%);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Services Section - Square Grid Pattern Background (Style 2) */
.services-section {
  background: linear-gradient(135deg, #0a1315 0%, #0d1a1c 50%, #0f1e21 100%);
  padding: 6rem 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.5;
}

/* Portfolio Section - Deep Cyan-Black with Hexagon Pattern */
.portfolio-showcase {
  background: linear-gradient(225deg, #091214 0%, #0e1e22 50%, #121f24 70%, #0a1315 100%);
  padding: 6rem 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.portfolio-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(30deg, transparent 65%, rgba(0, 255, 240, 0.04) 65.5%, rgba(0, 255, 240, 0.04) 70%, transparent 70.5%),
    linear-gradient(90deg, transparent 65%, rgba(0, 255, 255, 0.03) 65.5%, rgba(0, 255, 255, 0.03) 70%, transparent 70.5%);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Testimonials Section - Square Grid Pattern Background (Style 2) */
.testimonials-section {
  background: linear-gradient(135deg, #0a1315 0%, #0d1a1c 50%, #0f1e21 100%);
  padding: 6rem 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.5;
}

/* Modern Section Header */
.modern-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-badge i {
  font-size: 0.8rem;
}

.modern-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.modern-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(15, 30, 40, 0.8), rgba(10, 20, 30, 0.8));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.1);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.quote-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary), #7dffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.quote-mark i {
  color: #003034;
  font-size: 1rem;
}

.rating {
  display: flex;
  gap: 0.3rem;
}

.rating i {
  color: #FFD700;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0.1));
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-avatar i {
  color: var(--secondary);
  font-size: 1.2rem;
}

.client-details h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.client-details p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.industry {
  background: rgba(0, 255, 255, 0.1);
  color: var(--secondary);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Results Stats */
.results-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.3);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .modern-header h2 {
    font-size: 2rem;
  }
  
  .results-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Contact CTA Section - Hexagon Pattern Background (Style 1) */
.contact-cta {
  background: linear-gradient(225deg, #091214 0%, #0e1e22 50%, #121f24 70%, #0a1315 100%);
  padding: 5rem 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(30deg, transparent 65%, rgba(0, 255, 240, 0.04) 65.5%, rgba(0, 255, 240, 0.04) 70%, transparent 70.5%),
    linear-gradient(90deg, transparent 65%, rgba(0, 255, 255, 0.03) 65.5%, rgba(0, 255, 255, 0.03) 70%, transparent 70.5%);
  background-size: 50px 50px;
  pointer-events: none;
}

.cta-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-main-content {
  padding-right: 2rem;
}

.cta-header h2 {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.cta-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.3);
}

.feature-item i {
  color: var(--secondary);
  font-size: 1.2rem;
  width: 24px;
}

.feature-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.cta-actions-section {
  text-align: center;
  background: linear-gradient(145deg, rgba(15, 25, 30, 0.6), rgba(10, 20, 25, 0.6));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.primary-btn {
  background: linear-gradient(135deg, var(--secondary), #7dffff);
  color: #003034 !important;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
  background: linear-gradient(135deg, #7dffff, var(--secondary));
}

.secondary-btn {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(0, 255, 255, 0.4);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.secondary-btn:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.6);
  transform: translateY(-2px);
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-style: italic;
}

.cta-note i {
  color: var(--secondary);
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cta-main-content {
    padding-right: 0;
    text-align: center;
  }
  
  .cta-header h2 {
    font-size: 1.8rem;
  }
  
  .cta-actions-section {
    padding: 2rem;
  }
}

/* Enhanced Booking Promo Section - Square Grid Pattern Background (Style 2) */
.booking-promo-enhanced {
  background: linear-gradient(135deg, #0a1315 0%, #0d1a1c 50%, #0f1e21 100%);
  padding: 4rem 0;
  position: relative;
}

.booking-promo-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.5;
}

.booking-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.booking-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), #7dffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.booking-icon i {
  color: #003034;
  font-size: 2rem;
}

.booking-content h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.highlight-text {
  background: linear-gradient(135deg, var(--secondary), #7dffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-shadow: none;
}

.booking-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.booking-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--secondary), #7dffff);
  color: #003034;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
  margin-bottom: 2rem;
}

.booking-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
  background: linear-gradient(135deg, #7dffff, var(--secondary));
}

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

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

.booking-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.benefit i {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* Two-column layout for booking promo */
.booking-two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-content {
  text-align: left;
}

.code-block-container {
  position: relative;
  background: rgba(15, 25, 30, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.code-block {
  background: #0a0a0a;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 255, 255, 0.1);
  font-family: 'Courier New', monospace;
  overflow-x: auto;
}

.code-block pre {
  margin: 0;
  white-space: pre-wrap;
  font-size: 0.9rem;
  line-height: 1.4;
}

.code-block code {
  color: #e6e6e6;
}

.code-keyword {
  color: #ff6b6b;
  font-weight: bold;
}

.code-class {
  color: #4ecdc4;
  font-weight: bold;
}

.code-function {
  color: #ffe66d;
  font-weight: bold;
}

.code-comment {
  color: #95a5a6;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .booking-promo-enhanced {
    padding: 3rem 0;  /* Further reduced for mobile */
  }
  
  .booking-two-column-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .booking-content {
    text-align: center;
  }
  
  .booking-content h2 {
    font-size: 1.8rem;
  }
  
  .booking-cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .booking-benefits {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .code-block {
    font-size: 0.8rem;
  }
}

/* Clean content styling without complex animations */
.section-content-block,
.portfolio-card,
.testimonial-card,
.contact-card,
.booking-card {
  background: rgba(20, 20, 20, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
}

.section-content-block:hover,
.portfolio-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.booking-card:hover {
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

/* Remove all the ugly backdrop and animation elements */

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.service-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(0, 40, 50, 0.8), rgba(0, 30, 40, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px -12px rgba(0, 255, 255, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.15);
  transition: all 0.4s ease;
}

.service-icon-container i {
  font-size: 1.8rem;
  color: var(--secondary);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-container {
  background: linear-gradient(145deg, rgba(0, 255, 255, 0.25), rgba(0, 200, 255, 0.15));
  transform: scale(1.1);
}

.service-card:hover .service-icon-container i {
  transform: scale(1.2);
  color: #fff;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.service-card:hover h3 {
  color: #fff;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-hover-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: auto;
}

.service-card:hover .service-hover-details {
  max-height: 200px;
}

.service-hover-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-hover-details li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.service-hover-details li i {
  color: var(--secondary);
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.services-cta {
  position: relative;
  z-index: 10;
  margin-top: 2.5rem;
  text-align: center;
}

.services-cta .btn {
  position: relative;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 2rem;
  pointer-events: auto;
  cursor: pointer;
}

/* Ensure button hover effects work */
.services-cta .btn:hover {
  transform: translateY(-3px);
}

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

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

.services-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ===== PORTFOLIO SECTION ===== */
/* Background now handled by the global flowing system above */

.portfolio-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.portfolio-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

/* Featured Project */
.featured-project {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  background: linear-gradient(145deg, rgba(0, 30, 40, 0.4), rgba(0, 20, 30, 0.3));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px -20px rgba(0, 0, 0, 0.7);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.fp-media {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.fp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-project:hover .fp-media img {
  transform: scale(1.05);
}

.fp-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--secondary), #7dffff);
  color: #003034;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.55), 0 4px 12px -4px rgba(0, 255, 255, 0.55);
  z-index: 2;
}

.fp-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }

  25%,
  100% {
    transform: translateX(100%) translateY(100%);
  }
}

.fp-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.fp-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  padding-left: 1rem;
}

.accent-bar {
  position: absolute;
  left: 0;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 4px;
  background: var(--secondary);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.fp-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.fp-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.fp-metrics .metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.fp-metrics .metric i {
  color: var(--secondary);
  font-size: 0.9rem;
}

.fp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.fp-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(0, 255, 255, 0.3);
  background: rgba(0, 255, 255, 0.1);
  color: var(--secondary);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.fp-tags span:hover {
  background: var(--secondary);
  color: #013037;
  box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.45), 0 6px 16px -6px var(--secondary);
}

.fp-actions {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}

/* Portfolio Card Grid */
.home-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(140deg, rgba(0, 25, 32, 0.55), rgba(0, 40, 46, 0.35));
  border: 1px solid rgba(0, 255, 255, 0.18);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 22px -8px rgba(0, 0, 0, 0.7);
  transition: 0.45s cubic-bezier(0.16, 0.8, 0.3, 1);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 18px 38px -12px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(0, 255, 255, 0.35);
}

.pc-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #021b20;
}

.pc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: 1s cubic-bezier(0.16, 0.8, 0.3, 1);
  filter: contrast(1.05) saturate(1.06);
}

.portfolio-card:hover .pc-media img {
  transform: scale(1.16) rotate(0.6deg);
}

.pc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--secondary), #7dffff);
  color: #003034;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 0.38rem 0.68rem 0.34rem;
  border-radius: 40px;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.55), 0 4px 12px -4px rgba(0, 255, 255, 0.55);
}

.pc-badge.finalizing {
  background: linear-gradient(135deg, #ffaa00, #ffcc44);
  color: #2d1800;
  box-shadow: 0 0 0 1px rgba(255, 170, 0, 0.55), 0 4px 12px -4px rgba(255, 170, 0, 0.55);
  animation: pulse-finalizing 2s ease-in-out infinite;
}

@keyframes pulse-finalizing {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.pc-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.15rem 1.15rem 1.35rem;
  flex: 1;
}

.pc-body h4 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: linear-gradient(90deg, #fff, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pc-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  flex: 1;
}

.pc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pc-tags span {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 0.36rem 0.6rem 0.32rem;
  border: 1px solid rgba(0, 255, 255, 0.28);
  background: rgba(0, 255, 255, 0.08);
  color: var(--secondary);
  border-radius: 30px;
  transition: 0.35s;
}

.pc-tags span:hover {
  background: var(--secondary);
  color: #013037;
  box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.45), 0 6px 16px -6px var(--secondary);
}

.pc-link {
  --btnGlow: rgba(0, 255, 255, 0.55);
  background: linear-gradient(135deg, var(--secondary), #55ffff);
  color: #003034;
  border: none;
  font-size: 0.74rem;
  letter-spacing: 0.75px;
  font-weight: 600;
  padding: 0.65rem 1rem 0.6rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  box-shadow: 0 4px 16px -6px var(--btnGlow), 0 0 0 1px rgba(0, 255, 255, 0.4);
  transition: 0.45s cubic-bezier(0.16, 0.8, 0.3, 1);
}

.pc-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px -6px var(--btnGlow), 0 0 0 1px rgba(0, 255, 255, 0.55);
}

.pc-link i {
  transition: 0.45s;
}

.pc-link:hover i {
  transform: translateX(5px);
}

.pc-link.disabled {
  background: rgba(128, 128, 128, 0.3);
  color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px -6px rgba(128, 128, 128, 0.2), 0 0 0 1px rgba(128, 128, 128, 0.3);
  cursor: not-allowed;
  pointer-events: none;
}

.pc-link.disabled:hover {
  transform: none;
  box-shadow: 0 4px 16px -6px rgba(128, 128, 128, 0.2), 0 0 0 1px rgba(128, 128, 128, 0.3);
}

.pc-link.disabled i {
  opacity: 0.6;
}

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
  overflow: visible;
}

.portfolio-cta .btn {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative;
  z-index: 11;
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--secondary), #55ffff) !important;
  border: 2px solid var(--secondary) !important;
  color: #ffffff !important;
  padding: 0.8rem 1.5rem !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4) !important;
}

.portfolio-cta .btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4) !important;
  background: var(--accent) !important;
}

.btn-primary {
  --btnGlow: rgba(0, 255, 255, 0.55);
  background: linear-gradient(135deg, var(--secondary), #55ffff);
  color: #003034;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  box-shadow: 0 4px 16px -6px var(--btnGlow), 0 0 0 1px rgba(0, 255, 255, 0.4);
  transition: 0.45s cubic-bezier(0.16, 0.8, 0.3, 1);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px -6px var(--btnGlow), 0 0 0 1px rgba(0, 255, 255, 0.55);
}

.btn-primary.slim {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
}

/* ===== TESTIMONIALS SECTION ===== */
/* Background now handled by the global flowing system above */

.testimonials-slider-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  visibility: hidden;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  visibility: visible;
}

.testimonial-content {
  background: linear-gradient(145deg, rgba(12, 25, 30, 0.7), rgba(8, 15, 20, 0.7));
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
}

.testimonial-content::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 60px;
  border-width: 20px 20px 0;
  border-style: solid;
  border-color: rgba(8, 15, 20, 0.7) transparent transparent;
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary), #7dffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.quote-icon i {
  color: #003034;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.client-rating {
  display: flex;
  gap: 0.3rem;
}

.client-rating i {
  color: #FFD700;
  font-size: 0.9rem;
}

.client-info {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
  margin-right: 1rem;
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.client-img-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.5), rgba(0, 200, 255, 0.5));
  color: #003034;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 1rem;
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.client-details h4 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  color: #ffffff;
}

.client-details p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-nav-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
}

.testimonial-nav-btn:hover {
  color: var(--secondary);
}

.testimonial-indicators {
  display: flex;
  gap: 0.8rem;
  margin: 0 1rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--secondary);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* ===== CONTACT CTA SECTION ===== */
/* Background now handled by the global flowing system above */

.cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: linear-gradient(145deg, rgba(0, 30, 40, 0.3), rgba(0, 20, 30, 0.2));
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
  padding: 3rem;
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.5);
  position: relative;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.code-block-container {
  position: relative;
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transform-style: preserve-3d;
}

.code-block {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 255, 255, 0.1);
  position: relative;
}

.code-block pre {
  margin: 0;
  overflow-x: auto;
}

.code-block code {
  font-family: 'Consolas', 'Courier New', monospace;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.7;
}

.code-keyword {
  color: #569CD6;
}

.code-class {
  color: #4EC9B0;
}

.code-function {
  color: #DCDCAA;
}

.code-comment {
  color: #608B4E;
}

/* Clean About + Testimonials Duo Section */
.about-duo-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #061113, #081619);
  position: relative;
}

.about-duo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
  pointer-events: none;
}

.about-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Testimonials Column */
.td-column {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.td-header {
  text-align: center;
  margin-bottom: 2rem;
}

.td-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  display: flex;
  flex-direction: column;
}

.td-title span {
  color: var(--secondary);
}

.td-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  letter-spacing: 0.5px;
}

.td-carousel {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.td-slides {
  position: relative;
  flex: 1;
  min-height: 260px;
}

.td-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
  visibility: hidden;
  display: flex;
  flex-direction: column;
}

.td-slide.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  position: relative;
}

.td-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.td-quote {
  position: relative;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 auto;
  padding: 0 0.5rem 2rem 0.5rem;
}

.td-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -15px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(0, 255, 255, 0.15);
  line-height: 1;
}

.td-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.td-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.4), rgba(0, 200, 255, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #003034;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.td-info {
  display: flex;
  flex-direction: column;
}

.td-info strong {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

.td-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.td-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.td-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.2);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.td-btn:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.td-dots {
  display: flex;
  gap: 8px;
}

.td-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: 0.3s ease;
}

.td-dot.active {
  background: var(--secondary);
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

/* ===== ABOUT GROWTH SECTION ===== */
.about-growth-section {
  background: linear-gradient(to bottom, #060c0a, #081a14);
  padding: 5rem 0;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.about-growth-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 255, 127, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 127, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Top intro section styling */
.ag-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.ag-badge {
  display: inline-block;
  background: rgba(0, 255, 127, 0.1);
  color: rgba(0, 255, 127, 0.9);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 255, 127, 0.2);
}

.ag-heading {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 1rem 0;
  color: #fff;
}

.grad-text {
  background: linear-gradient(90deg, #00ffff, #00ff7f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.ag-sub {
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 700px;
  margin: 1.5rem auto;
  color: rgba(255, 255, 255, 0.85);
}

.ag-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.ag-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.ag-trust-item i {
  color: var(--secondary);
  font-size: 0.85rem;
}

/* Core grid layout */
.ag-core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

/* Value proposition block */
.ag-block {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 127, 0.1);
  padding: 2rem;
  height: 100%;
}

.ag-value {
  display: flex;
  flex-direction: column;
}

.ag-value h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.line-accent {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.ag-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.ag-benefits li {
  margin-bottom: 1.2rem;
  padding-left: 1.8rem;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}

.ag-benefits li i {
  position: absolute;
  left: 0;
  top: 0.3rem;
  color: var(--secondary);
  font-weight: bold;
}

/* Code panel styling */
.ag-code {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.code-tabs {
  display: flex;
  border-bottom: 1px solid rgba(0, 255, 127, 0.2);
}

.code-tab {
  padding: 0.8rem 1.2rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.code-tab.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

.code-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.code-scroll {
  height: 100%;
  overflow-y: auto;
  padding: 1.2rem;
  margin: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 0 8px 8px;
}

.code-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0.5rem;
}

.code-actions button {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 127, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.code-actions button:hover {
  background: rgba(0, 255, 127, 0.1);
  color: var(--secondary);
}

.code-status {
  padding: 0.3rem 0.6rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.code-status.visible {
  opacity: 1;
}

/* Theme-specific code styles */
[data-code-theme="dark"] .code-scroll {
  background: #1e1e1e;
  color: #d4d4d4;
}

[data-code-theme="light"] .code-scroll {
  background: #f5f5f5;
  color: #333;
}

/* Code syntax highlighting */
.code-keyword {
  color: #569cd6;
}

.code-value {
  color: #ce9178;
}

.code-key {
  color: #9cdcfe;
}

.code-comment {
  color: #6a9955;
}

/* Mini trust badges below code */
.mini-trust-badges {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 8px 8px;
  font-size: 0.75rem;
}

.mini-trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.mini-trust-badges i {
  color: var(--secondary);
}

/* Add these styles to the end of your home.css file */

/* ==== Differentiators Grid ==== */
.ag-diff {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.diff-item {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 255, 127, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  user-select: none;
  /* Add this to improve click experience */
}

.diff-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, rgba(0, 255, 127, 0), rgba(0, 255, 127, 0.7), rgba(0, 255, 127, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.diff-item:hover,
.diff-item.active {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 255, 127, 0.3);
  transform: translateY(-5px);
}

.diff-item:hover::before,
.diff-item.active::before {
  opacity: 1;
}

.diff-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 255, 127, 0.2);
  transition: all 0.3s ease;
}

.diff-icon i {
  color: var(--secondary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.diff-item:hover .diff-icon,
.diff-item.active .diff-icon {
  background: rgba(0, 255, 127, 0.1);
  transform: scale(1.1);
}

.diff-item:hover .diff-icon i,
.diff-item.active .diff-icon i {
  color: #ffffff;
}

.diff-item h4 {
  color: var(--secondary);
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.diff-item:hover h4,
.diff-item.active h4 {
  color: #ffffff;
}

.diff-item p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

/* ==== Detail Panel ==== */
.diff-detail-panel {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 255, 127, 0.2);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  /* Add this line for smooth transitions */
}

.dd-title {
  color: var(--secondary);
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.dd-body {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.dd-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.dd-points li {
  position: relative;
  padding-left: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.dd-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* ==== Process Timeline ==== */
.ag-process {
  margin: 4rem 0;
}

.ag-process h3 {
  text-align: center;
  color: var(--secondary);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.process-flow {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 3rem 0;
}

/* Line connecting steps */
.process-flow::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(to right, rgba(0, 255, 127, 0.7), rgba(0, 255, 255, 0.7));
  z-index: 0;
}

.p-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 120px;
}

.p-step::before {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 255, 127, 0.9), rgba(0, 255, 255, 0.9));
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.5);
  z-index: 2;
  transition: all 0.3s ease;
}

.p-step:hover::before {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(0, 255, 127, 0.7);
}

.p-step h4 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin: 0.5rem 0;
  text-align: center;
}

.p-step p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

/* ==== Final CTA ==== */
.ag-final-cta {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 127, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ag-final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 127, 0.05) 0%, transparent 60%);
  z-index: 0;
}

.cta-copy h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-actions .btn {
  padding: 0.9rem 1.8rem;
  font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .ag-diff {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .process-flow::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }

  .p-step {
    width: 100%;
    max-width: 400px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .ag-diff {
    grid-template-columns: 1fr;
  }

  .dd-points {
    grid-template-columns: 1fr;
  }

  .ag-final-cta {
    padding: 2rem 1.5rem;
  }

  .cta-copy h3 {
    font-size: 1.8rem;
  }

  .cta-copy p {
    font-size: 1.1rem;
  }
}

/* Animation for reveal effects - DISABLED */
.reveal-up {
  opacity: 1;
  transform: translateY(0);
  /* transition: all 0.8s ease; */
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Booking Promo Section */
.booking-promo {
  background: linear-gradient(120deg, #0d1a1a 80%, #00fff0 100%);
  border-radius: 15px;
  margin: 4rem 0 2rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.booking-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.booking-promo .container {
  position: relative;
  z-index: 2;
}

.booking-promo h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-weight: 700;
}

.booking-promo .highlight-badge {
  background: #00fff0;
  color: #0d1a1a;
  border-radius: 6px;
  padding: 0.1em 0.5em;
  font-size: 1em;
  box-shadow: 0 0 15px #00fff0;
  text-shadow: none;
  font-weight: 800;
}

.booking-promo p {
  font-size: 1.2rem;
  color: #e0f7fa;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.booking-promo .btn {
  background: #00FFFF !important;
  /* Solid cyan background */
  color: #000000 !important;
  /* Black text for maximum contrast */
  border: 2px solid rgba(0, 0, 0, 0.1) !important;
  font-weight: 700 !important;
  /* Extra bold text */
  padding: 0.9rem 2.2rem !important;
  font-size: 1.1rem !important;
  text-shadow: none !important;
  /* Remove any text shadows */
}

.booking-promo .btn:hover {
  background: #00E5E5 !important;
  /* Slightly darker cyan on hover */
  color: #000000 !important;
  box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4) !important;
}

/* Ensure icon is also visible */
.booking-promo .btn i {
  color: #000000 !important;
  margin-right: 0.5rem !important;
}

.booking-promo .note {
  margin-top: 1.5rem;
  color: #b2ebf2;
  font-size: 1rem;
  opacity: 0.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.booking-promo .note i {
  color: #00fff0;
  margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .booking-promo {
    padding: 2.5rem 1.5rem;
    margin: 3rem 0 1.5rem;
  }

  .booking-promo h2 {
    font-size: 1.8rem;
  }

  .booking-promo p {
    font-size: 1.1rem;
  }

  .booking-promo .btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

.cyan-button-white-text {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

/* Override for the cyan button text */
.cyan-button-white-text,
.cyan-button-white-text:hover,
.cyan-button-white-text:focus,
.cyan-button-white-text:active,
.cyan-button-white-text:visited {
  color: white !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

/* Floating animation for subtle movement */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

/* Responsive adjustments for seamless sections */
@media (max-width: 768px) {
  .about-growth-section,
  .services-section,
  .portfolio-showcase,
  .testimonials-section,
  .contact-cta,
  .booking-promo {
    padding: 4rem 0;
  }
}