/* Altovation Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');
/* @import url('https://fonts.cdnfonts.com/css/special-gothic'); */

/* CSS Custom Properties */
:root {
  /* Color Palette */
  --color-primary: rgb(0, 72, 73);
  --color-secondary: #029593;
  --color-bg-light: #F9FAFB;
  --color-bg-dark: #0A1F1E;
  --color-text-primary: #222222;
  --color-text-secondary: #555555;
  --color-neutral: #E0E0E0;
  --color-highlight: #F4B400;

  /* Custom Gradients */
  --footer-gradient-dark: linear-gradient(135deg, #0A1F1E 0%, #004849 100%);
  --gradient-dark: linear-gradient(120deg, rgba(185, 198, 205, 0.2) 0%, rgba(185, 198, 205, 0.5) 40%, #00484979 100%);
  --gradient-menu: linear-gradient(120deg, #007172ee 0%, #004849 100%);
  --gradient-hero: linear-gradient(120deg, rgba(185, 198, 205, 0.2) 0%, rgba(185, 198, 205, 0.5) 40%, #00484979 100%);
  --gradient-light: linear-gradient(45deg, #F9FAFB 0%, #F0FDFD 100%);
  --footer-text-gradient-light: linear-gradient(90deg, #0bfffb, #007C7A);
  --text-gradient-light: linear-gradient(90deg, #007C7A, #004849);
  --text-gradient-dark: linear-gradient(90deg, #004849, #F4B400);

  /* Bootstrap Override */
  --bs-primary: #004849;
    --bs-primary-rgb: rgb(0, 72, 73);
  --bs-secondary: #007C7A;
  --bs-success: #007C7A;
  --bs-warning: #F4B400;
  --bs-light: #F9FAFB;
  --bs-dark: #0A1F1E;


    --bs-btn-color: #004849;
    --bs-btn-border-color: #004849;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #004849;
    --bs-btn-hover-border-color: #004849;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #004849;
    --bs-btn-active-border-color: #004849;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #004849;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #004849;
    --bs-gradient: none;

    --neon-gold: #FFDA58; 
  --neon-teal: #00FFFF;
  --glow-duration: 1.5s;
}

a{
    transition: all 0.3s ease;
    color: var(--color-primary);
}
a:hover{
    color: var(--color-secondary);
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #004849;
    --bs-btn-border-color: #004849;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #007C7A;
    --bs-btn-hover-border-color: #007C7A;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #004849;
    --bs-btn-active-border-color: #004849;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #004849;
    --bs-btn-disabled-border-color: #004849;
    
}
.btn-outline-primary {
    --bs-btn-color: #004849;
    --bs-btn-border-color: #004849;
    --bs-btn-hover-color: #003030;
    --bs-btn-hover-bg: #00484926;
    --bs-btn-hover-border-color: #0048496b;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #004849;
    --bs-btn-active-border-color: #004849;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #004849;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #004849;
    --bs-gradient: none;
    padding: 12px 30px;
}
.btn-outline-secondary {
    --bs-btn-color: var(--color-secondary);
    --bs-btn-border-color: var(--color-secondary);;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #var(--color-secondary);;
    --bs-btn-hover-border-color: #var(--color-secondary);;
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #var(--color-secondary);;
    --bs-btn-active-border-color: #var(--color-secondary);;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #var(--color-secondary);;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #var(--color-secondary);;
    --bs-gradient: none;
}
.btn{
    transition: all 0.3s ease;
}
.btn:hover{
    transform: translateY(-2px);
}
.btn-outline-primary:hover{
    box-shadow: 0 5px 20px rgba(0, 72, 73, 0.4);
}
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-light);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.text-gradient-light {
  background: var(--text-gradient-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-dark {
  background: var(--text-gradient-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Special Gothic Font Class */
.text-gothic {
  font-family: 'Special Gothic', 'Arial Black', sans-serif !important;
  font-weight: normal;
}
.text-white{
  color:rgba(255,255,255,0.75) !important;
}

/* Glassmorphism Effect */
.glassmorphism {
  /* background: rgba(4, 72, 73, 0.7); */
  background: rgba(4, 72, 73, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* border-radius: 12px; */
  transition: all 0.3s ease;
}

.glassmorphism-light {
  background: rgba(249, 250, 251, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 72, 73, 0.1);
  border-radius: 12px;
}

/* Glassmorphism Card Hover Effect */
.card.glassmorphism:hover {
  background: rgba(4, 72, 73, 0.854);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(4, 72, 73, 0.9);
  transition: all 0.3s ease;
}

/* Header Styles */
.navbar-custom {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-scrolled {
  background: rgba(10, 31, 30, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: white !important;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-highlight) !important;
  transform: translateY(-2px);
}

/* Button Styles */
.btn-primary-custom {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 72, 73, 0.3);
}

.btn-highlight {
  background-color: var(--color-highlight);
  border: 2px solid var(--color-highlight);
  color: var(--color-bg-dark);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  /* transition: all 0.3s ease; */
  transition:background-color 0.7s ease, border-color 0.7s ease, color 0.7s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-highlight:hover {
  background-color: var(--color-primary);
   border: 2px solid var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px var(--color-secondary)
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: var(--gradient-hero);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding:90px 2rem 2rem 0;

}
.hero-section .btn-outline-light{
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

/* Hero Video Background */
.hero-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 71, 73, 0.85) 100%);
  z-index: 1;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  margin-top:1.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  /* color: rgba(255, 255, 255, 0.8); */
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.hero-section.section-dark, .section-dark  {
  background: var(--gradient-dark);
  /* color: white; */
}

.section-bg-primary, .section-primary {
  background: var(--color-primary);
   color:rgba(255,255,255,0.75); 
}
.section-light {
  background: var(--gradient-light);
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--color-neutral);
}
.card{
  transition: all 0.3s ease;
}
.service-card:hover, .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 72, 73, 0.2);
}

.service-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* n8n Automation Section Styles */
.card-header .service-icon {
  font-size: 2.5rem;
  margin-bottom: 0;
}

.card-header .service-icon i {
  transition: transform 0.3s ease;
}

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

.card-header .service-title {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.list-unstyled li {
  position: relative;
  padding-left: 0;
}

.list-unstyled li i {
  flex-shrink: 0;
  width: 20px;
}

.badge.border {
  font-size: 0.7rem;
  padding: 0.35rem 0.65rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.badge.border:hover {
  background-color: var(--color-primary) !important;
  color: white !important;
  transform: translateY(-1px);
}

/* Integration Badge Icons */
.badge.border i {
  font-size: 0.85rem;
  opacity: 0.85;
}

.badge.border:hover i {
  opacity: 1;
}

/* AI Readiness Quiz Styles */
.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeInQuiz 0.3s ease-in;
}

@keyframes fadeInQuiz {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-radio-card,
.custom-checkbox-card {
    position: relative;
}

.custom-radio-card .form-check-label,
.custom-checkbox-card .form-check-label {
    display: block;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
}

.custom-radio-card .form-check-input,
.custom-checkbox-card .form-check-input {
    position: absolute;
    opacity: 0;
}

.custom-radio-card .form-check-input:checked + .form-check-label,
.custom-checkbox-card .form-check-input:checked + .form-check-label {
    border-color: var(--color-primary);
    background-color: rgba(0, 72, 73, 0.05);
    color: var(--color-primary);
    font-weight: 600;
}

.custom-radio-card .form-check-label:hover,
.custom-checkbox-card .form-check-label:hover {
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 72, 73, 0.1);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.process-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Testimonial Styles */
.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  border-left: 5px solid var(--color-primary);
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary);
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-primary);
}

.testimonial-company {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* Footer */
.footer-section {
  background: var(--footer-gradient-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-highlight);
}
.footer-text-gradient-light {
  background: var(--footer-text-gradient-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--color-highlight);
  color: var(--color-bg-dark);
  transform: translateY(-3px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--gradient-menu);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  visibility: hidden;
}

.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-content {
  text-align: center;
  width: 100%;
  max-width: 300px;
  padding: 2rem;
}

.mobile-menu-content .nav-link {
  display: block;
  color: white !important;
  font-size: 1.5rem;
  margin: 1.5rem 0;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.mobile-menu-content .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-highlight) !important;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--color-neutral);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 72, 73, 0.25);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content:center;
  gap: 2rem;
  margin-top: 3rem;
  opacity: 0.8;
}

.trust-badge {
  /* color: rgba(255, 255, 255, 0.6); */
  font-size: 1rem;
  text-align: center;
}

/* Blog Styles */
.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px !important;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 72, 73, 0.15) !important;
}

.blog-card .card-title a {
  color: var(--color-text-primary);
  transition: color 0.3s ease;
}

.blog-card .card-title a:hover {
  color: var(--color-primary);
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-primary);
}

.blog-post-content h2 {
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.blog-post-content h3 {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-post-content h4 {
  color: var(--color-text-primary);
  font-weight: 500;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.blog-post-content p {
  margin-bottom: 1.25rem;
  text-align: justify;
}

.blog-post-content ul, .blog-post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background-color: var(--color-bg-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.blog-post-content .blog-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid var(--color-primary);
  border-radius: 12px;
}

.blog-post-content .blog-cta h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.blog-post-content code {
  background-color: #f8f9fa;
  color: #e83e8c;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.blog-post-content pre {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.social-share a {
  transition: all 0.3s ease;
}

.social-share a:hover {
  transform: translateY(-2px);
}

.newsletter-form .form-control {
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 8px 0 0 8px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
  border-color: var(--color-highlight);
  box-shadow: 0 0 0 0.2rem rgba(244, 180, 0, 0.25);
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
  border-radius: 0 8px 8px 0;
  background-color: var(--color-highlight);
  border-color: var(--color-highlight);
  color: var(--color-text-primary);
  font-weight: 500;
}

.newsletter-form .btn:hover {
  background-color: #e0a000;
  border-color: #e0a000;
  transform: translateY(-1px);
}

/* Breadcrumb Styling */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--color-text-secondary);
  font-weight: 600;
}

.breadcrumb-item a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--color-secondary);
}

.breadcrumb-item.active {
  color: var(--color-text-secondary);
}

/* Badge Styling */
.badge {
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

.badge.bg-light {
  background-color: #f8f9fa !important;
  color: var(--color-text-secondary) !important;
  border: 1px solid #dee2e6;
}

/* Navigation Desktop Styles */
.navbar-nav-desktop {
  width: 100%;
}

.navbar-toggler {
  border: none;
  background: none;
  color: white;
  font-size: 1.5rem;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  /* Hide Bootstrap collapse behavior on mobile */
  .navbar-collapse {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  /* .btn-primary-custom,
  .btn-highlight {
    padding: 10px 20px;
    font-size: 0.9rem;
  } */
}

/* Utility Classes */
.text-primary-custom {
  color: var(--color-primary) !important;
}

.text-secondary-custom {
  color: var(--color-secondary) !important;
}

.bg-primary-custom {
  background-color: var(--color-primary) !important;
}

.bg-secondary-custom {
  background-color: var(--color-secondary) !important;
}

.border-primary-custom {
  border-color: var(--color-primary) !important;
}

/* Animation Enhancements */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0, 0, 0);
  }
  
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }
  
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }
  
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Pulse Animation for additional scroll indicators */
@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
  
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* FAQ Styles */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary);
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--color-bg-light);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-secondary);
  display: none;
}

.faq-icon {
  float: right;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.navbar.glassmorphism{
    border-radius: 0px;
    background: rgba(4, 72, 73, 0.85);
}
a.text-dark:hover{
    color: var(--color-primary) !important;
}

/* Honeypot Anti-Spam Field */
.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  z-index: -1 !important;
  pointer-events: none !important;
  display: none !important;
}

.honeypot-field input {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  border: none !important;
  background: transparent !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  /* tabindex handled in HTML */
}

/* Cookie Consent Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-primary) 100%);
    color: white;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-container {
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.cookie-consent-text p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-consent-actions .btn {
    white-space: nowrap;
    border-radius: 25px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-consent-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cookie-consent-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.cookie-consent-actions .btn-primary {
    background: var(--color-highlight);
    border-color: var(--color-highlight);
    color: var(--color-bg-dark);
}

.cookie-consent-actions .btn-primary:hover {
    background: #e6a200;
    border-color: #e6a200;
    transform: translateY(-1px);
}

/* Cookie Preferences Modal */
.cookie-category {
    padding: 1rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    background: var(--bs-light);
}

.cookie-category h6 {
    color: var(--color-primary);
    font-weight: 600;
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-check-input:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.25rem rgba(0, 124, 122, 0.25);
}

/* Toast Container */
.toast-container {
    z-index: 10000;
}

.toast {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-consent-text {
        min-width: auto;
    }
    
    .cookie-consent-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-consent-actions .btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-consent-actions .btn {
        width: 100%;
        margin: 0;
    }
}

.hero-section .fa-chevron-down:before{
  background: rgb(from var(--color-primary) r g b / 0.8);
  color: white;
  padding: 0.9rem;
  border-radius: 50%;
  margin-bottom:2px;
  /* border: 2px solid var(--color-primary); */
}

.flex-equal {
  flex: 1 1 0;
}

/** neon glow effect **/
.neon-glow {
  /* Set base styles for the text and box */
  color: var(--neon-gold); /* Text color */
  background-color: transparent;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block; /* Helps the box-shadow fit the content */
  font-family: 'Arial', sans-serif; /* Use a suitable font */
  text-shadow: 0 0 7px var(--neon-gold), 0 0 10px var(--neon-gold);
  
  /* The Key: Box Shadow Layers to create the "glow" */
  box-shadow: 
    0 0 10px rgba(255, 218, 88, 0.6), /* Inner white-ish glow */
    0 0 20px var(--neon-gold), 
    0 0 40px var(--neon-gold), 
    0 0 80px rgba(244, 180, 0, 0.4), /* Far, low-opacity spread */
    inset 0 0 10px var(--neon-gold); /* Inner glow for button feel */
  
  /* Transition for smooth interaction */
  transition: all 0.3s ease-in-out; 
}
.neon-glow--animated {
  /* Inherits all static .neon-glow styles */
  animation: neon-flicker var(--glow-duration) infinite alternate ease-in-out;
}

@keyframes neon-flicker {
  from {
    filter: brightness(1.0);
    box-shadow: 
      0 0 15px rgba(255, 218, 88, 0.8), 
      0 0 30px var(--neon-gold), 
      0 0 60px var(--neon-gold);
  }
  to {
    filter: brightness(1.1); /* Slight pulse in brightness */
    box-shadow: 
      0 0 10px rgba(255, 218, 88, 0.6), 
      0 0 20px var(--neon-gold), 
      0 0 40px var(--neon-gold);
  }
}
.neon-glow-border-only {
  /* Base content styles */
  color: #000; /* Dark text for contrast */
  background-color: #051a1a; /* Dark background to enhance glow */
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block; 
  
  /* Transparent border is necessary for the box-shadow border illusion */
  border: 1px solid transparent; 
  
  /* The Key: Box Shadow Layers */
  box-shadow: 
    0 0 5px var(--neon-teal), 
    0 0 10px var(--neon-teal), 
    0 0 20px rgba(0, 255, 255, 0.5), 
    inset 0 0 5px var(--neon-teal); /* Inner border-like glow */
}
.neon-glow-border-only--animated {
  /* Inherits all static .neon-glow-border-only styles */
  animation: border-pulse var(--glow-duration) infinite alternate ease-in-out;
}

@keyframes border-pulse {
  from {
    box-shadow: 
      0 0 3px var(--neon-teal), 
      0 0 8px var(--neon-teal);
  }
  to {
    box-shadow: 
      0 0 6px var(--neon-teal), 
      0 0 15px var(--neon-teal);
  }
}
.neon-glow-bottom-border-only {
  /* Base content styles */
  /* color: #fff;  */
  /* background-color: #1a1a1a;  */
  /* padding: 10px 20px;
  display: inline-block; */
  
  /* The Key: Box Shadow on the bottom */
  box-shadow: 
    inset 0 10px 10px -0px var(--neon-gold), 
    0 15px 20px -0px var(--neon-teal) 
    /* 0 20px 30px 5px rgba(255, 218, 88, 0.7);  */
}
.neon-glow-bottom-border-only--animated {
  /* Inherits all static .neon-glow-bottom-border-only styles */
  animation: bottom-flicker calc(var(--glow-duration) * 1.5) infinite alternate-reverse ease-in-out;

}

@keyframes bottom-flicker {
  0% {
    box-shadow: 
        /* 0 -2 10px 4px var(--neon-gold),  */
        0 5px 20px 5px var(--neon-teal) 
  }
  50% {
    box-shadow: 
        /* 0 0 10px 4px var(--neon-gold),  */
        0 5px 20px -0px var(--neon-gold) 
  }
  100% {
   box-shadow: 
        /* 0 2px 10px 4px var(--neon-gold),  */
        0 5px 20px 5px var(--neon-teal) 
  }
}

.neon-glow-text {
  /* Base text styles */
  font-family: 'Arial Black', sans-serif;
  font-size: 4em;
  text-transform: uppercase;
  color: #fff; /* A bright color helps the glow pop */
  
  /* The Key: Text Shadow Layers */
  text-shadow: 
    0 0 5px #fff,                /* Inner white/bright core */
    0 0 10px var(--neon-gold),   /* Primary bright glow */
    0 0 20px var(--neon-gold),   /* Secondary medium glow */
    0 0 30px rgba(244, 180, 0, 0.8), /* Farthest, darker spread */
    0 0 45px rgba(244, 180, 0, 0.6);
  
  /* Optional: Background for maximum contrast */
  background-color: #000;
  padding: 10px;
}
.neon-glow-text--animated {
  /* Inherits all static .neon-glow-text styles */
  animation: neon-flicker-text calc(var(--glow-duration) / 2) infinite alternate ease-in-out;
}

@keyframes neon-flicker-text {
  0% {
    /* Stronger, tighter glow */
    text-shadow: 
      0 0 4px #fff,
      0 0 9px var(--neon-gold),
      0 0 18px var(--neon-gold),
      0 0 28px rgba(244, 180, 0, 0.7);
    opacity: 1;
  }
  /* 50% {
    /* Slight dip in brightness/opacity to simulate a sputter */
    /*text-shadow: 
      0 0 4px #fff,
      0 0 9px var(--neon-teal),
      0 0 18px var(--neon-teal),
      0 0 28px rgba(244, 180, 0, 0.7);
    opacity: 1;
  } */
  100% {
    /* Slightly wider, softer glow */
    text-shadow: 
      0 0 4px #fff,
      0 0 9px var(--neon-teal),
      0 0 18px var(--neon-teal),
      0 0 28px rgba(244, 180, 0, 0.7);
    opacity: 1;
  }
}

:root {
  /* Define colors for clarity */
  --dark-base-teal: #058587;
  --dark-base-gold: #7A5B00;
  --highlight-teal: #05dfdf;
  --highlight-gold: #F4B400;
  
  /* The size of the background for the animation */
  --bg-size: 300%; 
  /* The speed of the animation */
  --anim-duration: 6s;
}

.text-gradient-light--animated {
  /* 1. Define the long, repeating gradient using your colors */
  background: linear-gradient(
    90deg, 
    var(--dark-base-gold) 0%,           /* Dark Gold start */
    var(--highlight-gold) 25%,          /* Bright Gold shimmer point */
    var(--highlight-teal) 50%,          /* Bright Teal shimmer point */
    var(--dark-base-teal) 75%,          /* Dark Teal point */
    var(--dark-base-gold) 100%          /* Seamless loop back to Dark Gold */
  );
  
  /* 2. CRITICAL: Make the background wide enough to scroll */
  background-size: var(--bg-size) auto;
  
  /* 3. Clip the background to the text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
   background-position: 53% 50%;
  /* Apply the animation */
  /* animation: gradient-move var(--anim-duration) linear infinite; */
  
  /* Optional: Set a dark background on the body/container for contrast */
  /* If this text is used on a light background, the effect will be lost */
  /* background-color: #0d0d0d; */
}

@keyframes gradient-move {
  0% {
    /* Start position of the long background */
    background-position: 0% 50%;
  }
  50% {
    /* Start position of the long background */
     background-position: 100% 50%;
  }
  100% {
    /* Scroll the background 100% of the element's width */
    background-position: 0% 50%;
  }
}
.hero-section p.lead{
    color: var(--color-text-primary-custom) !important;

}
.hero-section .text-white{
  color:inherit !important
}