:root{
		--dk-blue: #0B6E6B; /* teal-ish blue/green */
  --dk-green: #0f9d58;
  --dk-accent: #FFCA28; /* warm yellow accent from logo */
  --dk-white: #ffffff;
  --dk-neutral: #F7F9FA;
  --dk-dark: #0b1720;
  
      --dk-teal: #0B6E6B;
      --dk-accent: #f86612;
      --dk-neutral: #F7F9FA;
      --brand-green: #39FE11;
        --brand-green-yellow: #CFFF1D;
        --brand-blue: #0E0CFB;
    --brand-high-yellow: #FAFC68;
}
body{ 
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; 
  background:var(--dk-neutral); color:#1a1a1a; 
}
.hero{ 
  padding:6rem 0; 
  background:linear-gradient(180deg, rgba(11,110,107,0.05), transparent); 
}
.badge-pod{ 
  background: rgb(231, 227, 227); border:1px solid rgba(11,110,107,0.12); 
  display:inline-flex; align-items:center; gap:.5rem; 
  padding:.4rem .6rem; 
  border-radius:999px; 
}
.service-card{ 
  border-radius:12px; 
  background:white; 
  box-shadow: 0 6px 18px rgba(20,20,30,0.04); 
  padding:1.2rem; 
  height:100%;
  color: #003;
}

.tall-match {
  display: flex;
  align-items: flex-end; /* align baseline of first word to second */
  gap: 0.2rem;
  font-weight: bold;
  font-size: 1.1rem; /* base font size */
}

.tall-match .first-letter {
  font-size: 1.1rem; /* same as SWITCH height */
  line-height: 1;
}

.tall-match .rest {
  display: inline-block;
  transform: scaleY(1.2); /* adjust scale so 'reat' matches SWITCH height */
  transform-origin: bottom left;
}

.little-raise {
	font-size: 1.3rem;
	/*transform: scaleY(1.2);*/
}

.great-brand-start {
	font-weight: 800;
}

.great-lower {
	font-weight: 800;
	font-size: 0.95rem;
}

.text-smallest {
	font-weight: 400;
	font-size: 60%;
	color: #FFFFCC;
	opacity: 0.7;
}


#introCarousel,
.carousel-inner,
.carousel-item,
.carousel-item.active {
  height: 100vh;
}

.carousel-item .bg-active {
  background-image: url('https://mdbootstrap.com/img/Photos/Others/images/78.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1000;
}

/*
.carousel-item:nth-child(1) {
  background-image: url('https://mdbootstrap.com/img/Photos/Others/images/78.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.carousel-item:nth-child(2) {
  background-image: url('https://mdbootstrap.com/img/Photos/Others/images/76.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.carousel-item:nth-child(3) {
  background-image: url('https://mdbootstrap.com/img/Photos/Others/images/77.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
*/

/* Height for devices larger than 576px */
@media (min-width: 992px) {
  /*
  #introCarousel {
    margin-top: -58.59px;
  }*/
}

.navbar .nav-link {
  color: #fff !important;
}

/* Smooth fade-in on load */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Slide up stagger */
[data-animate] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* Hero heading smooth scale */
.hero-title {
  animation: heroScale 1.6s ease forwards;
}
@keyframes heroScale {
  0% { opacity:0; transform: scale(0.95); }
  100% { opacity:1; transform: scale(1); }
}

/* Hover lift for service cards */
.service-card {
  transition: transform .4s ease, box-shadow .4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Slight button glow hover */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}


/* Part 2 */
.badge-pod{ background: rgba(255,255,255,0.06); padding:.35rem .6rem; border-radius:999px; display:inline-flex; gap:.5rem; align-items:center; }
.service-card{ border-radius:12px; background:var(--dk-white); box-shadow: 0 6px 18px rgba(20,20,30,0.04); padding:1.25rem; height:100%;}
.trust-badge{ display:inline-flex; gap:.6rem; align-items:center; padding:.5rem .75rem; background:var(--dk-white); border-radius:10px; box-shadow:0 4px 10px rgba(10,10,20,.06); }
.hero-cta-primary{ background:linear-gradient(90deg,var(--dk-blue), var(--dk-green)); color:var(--dk-white); border:none; }
.dk-stats{ background:linear-gradient(180deg, rgba(11,110,107,0.04), transparent); padding:1.25rem; border-radius:10px; }

.hero-cta-primary:hover{ background:linear-gradient(90deg,var(--dk-blue), var(--brand-green)); color:var(--dk-white); border:none; }
.hero-cta-secondary:hover{ background:linear-gradient(90deg,var(--dk-blue), var(--brand-green)); color:var(--dk-white); border:none; }

footer .footer-top { 
    background: linear-gradient(90deg, rgba(11,110,107,0.04), rgba(15,157,88,0.02)); 
}

.partner-logo{
    max-height:44px; 
    opacity:.9; 
    filter:grayscale(.05); 
}
/* Accessibility focus */
a:focus, button:focus { outline:3px solid rgba(11,110,107,.15); outline-offset:2px; }

/* Navbar: Transparent default */

/* Navbar when scrolled */
#mainNavbar.scrolled {
  /* background-color: rgba(255, 255, 255, 0.95) !important; White glass look */
  box-shadow: 0 2px 10px rgba(0, 10, 255, 0.3);
  background: linear-gradient(to top, rgba(26, 95, 180, 0.98) 100%,rgba(0, 0, 0, 0.95) 90%);
  backdrop-filter: blur(14px);
}

/* Adjust link colors when scrolled */
#mainNavbar.scrolled .nav-link,
#mainNavbar.scrolled .navbar-brand {
  color: #FFE !important; /* adjust for your brand */
}

.bg-destine-hover {
  box-shadow: 0 2px 10px rgba(0, 10, 255, 0.3);
  background: linear-gradient(to top, rgba(26, 95, 180, 0.98) 100%,rgba(0, 0, 0, 0.95) 90%);
  backdrop-filter: blur(14px);
  color: #FFFFEF;
}

.bg-destine-hover a {
	color: #FEFEFF;
}

/*
#mainNavbar .nav-link {
  transition: color 0.3s ease;
  color: #003;
}
  */

/*
#mainNavbar.scrolled {
  background-color: rgba(8, 0, 36, 0.7) !important;
  backdrop-filter: blur(4px);
}
*/


.trust-badges {
  background: #F9FAFB;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.trust-badges .badge-item img,
.trust-badges .badge-item svg {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  opacity: .95;
  transition: transform .35s cubic-bezier(.17,.67,.83,.67);
}

.trust-badges .badge-item:hover svg {
  transform: translateY(-4px) scale(1.05);
}

.trust-badges .badge-item span {
  font-weight: 500;
  color: #1F2937;
  letter-spacing: 0.2px;
}

.trust-badges .badge-item svg {
  stroke: url(#accentGradient);
}

svg defs {
  display: none;
}


#whatsappButton {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 46px;
  height: 46px;
  background: #25D366;
  border-radius: 50%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.7);
  cursor: pointer;
}

#whatsappButton img {
  width: 32px;
  filter: brightness(100);
}

/*
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
*/
#scrollTopBtn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  /* background: #01360c; */
  color: #01360c;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 998;
}

#scrollTopBtn.show {
  opacity: 0.8;
  visibility: visible;
}    


.footer-top.glass-footer {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  background: #cfff1d;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Text colors refine */
.footer-top.glass-footer .text-muted {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Gradient shine overlay */
.footer-top.glass-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg,rgba(1, 9, 80, 0.98),rgba(0, 49, 11, 0.98),rgba(68, 70, 0, 0.98)); */
  background: linear-gradient(135deg,rgba(1, 9, 80, 0.98),rgba(3, 9, 65, 0.98),rgba(1, 9, 80, 0.98));
  pointer-events: none;
  z-index: -3;
}

/* Animated flowing waves */
/* Ultra-Soft Animated Sine Waves */
.footer-top.glass-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;

  /* SVG Waves Mask */
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='400' viewBox='0 0 1440 400'%3E%3Cpath fill='white' fill-opacity='0.12' d='M0 300 C 200 260, 400 340, 600 300 C 800 260, 1000 340, 1200 300 C 1400 260, 1600 340, 1800 300 V 400 H 0 Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat no-repeat;
  mask-size: 200% 200%;

  background: linear-gradient(
    to bottom,
    rgba(0,1,0,0.70),
    rgba(255,255,255,0.72)
  );

  animation: ultraSoftWave 18s ease-in-out infinite;
  opacity: 0.55; /* adjust wave visibility */
}

@keyframes ultraSoftWave {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-4%) translateY(2%); }
  100% { transform: translateX(0) translateY(0); }
}


/* Divider line soft glow */
.footer-top .glass-footer hr {
  border-color: rgba(255, 255, 255, 0.22);
}

/* Hover refinement */
.footer-top.glass-footer a:hover {
  color: #fff !important;
}

/* Subscribe button refinement */
.footer-top.glass-footer button {
  background: linear-gradient(135deg, #008bff, #00dba0);
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.footer-top.glass-footer button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}



/* bg tweaks */
/* Base background */
.carousel-item.bg-b {
  background: linear-gradient(135deg, #fafc68, #cfff1d);
  position: relative;
  overflow: hidden;
}

/* Shared shape base */
.carousel-item.bg-b .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  animation: float 4s infinite ease-in-out;
}

/* Circles */
.shape.circle-blue {
  width: 140px;
  height: 140px;
  background: #0011FF; /* Blue */
  top: 10%;
  left: 12%;
}

.shape.circle-green {
  width: 220px;
  height: 220px;
  background: #28a745; /* Green */
  bottom: 15%;
  right: 8%;
}

.shape.circle-yellow {
  width: 95px;
  height: 95px;
  background: #fafc68; /* Yellow */
  top: 15%;
  left: 58%;
}

/* Squares */
.shape.square-white {
  width: 130px;
  height: 130px;
  background: #ffffff;
  transform: rotate(15deg);
  top: 30%;
  right: 20%;
}

.shape.square-blue {
  width: 80px;
  height: 80px;
  background: #007BFF;
  transform: rotate(-25deg);
  bottom: 25%;
  left: 30%;
  opacity: 0.9;
}

/* Floating motion */
@keyframes float {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-35px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}


/* Cards */
/* Ribbon Tag (Top-Left Fold) */
.feature-tag {
  position: absolute;
  top: -22px;
  left: -4px;
  padding: 7px 18px 7px 14px;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

/* Folded shadow behind */
/*
.feature-tag::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inherit;
  background: rgba(0, 0, 0, 0.18);
  transform: translate(4px, 4px);
  filter: blur(3px);
  z-index: -1;
}
*/
/* Card must be positioned to allow overlay */
.hover-shadow {
  position: relative;
}

/* Unique Gradients (Option 1 selected) */
.storefront-tag { background: linear-gradient(135deg, #007bff, #00e5ff); }
.payments-tag { background: linear-gradient(135deg, rgb(97, 53, 131), rgb(119, 118, 123)); }
.ai-tag { background: linear-gradient(135deg, rgb(28, 113, 216), #42a5f5); }
.inventory-tag { background: linear-gradient(135deg, rgb(0, 200, 83), #00c853); }
.seo-tag { background: linear-gradient(135deg, #cfff1d, #DDFF7E); }
.messaging-tag { background: linear-gradient(90deg, #00c153, #00c155, #cfff1d); }


/* Hero anim */
.feature-badge {
  position: absolute;
  background: #00c853;
  color: #fff;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  cursor: default;
  z-index: 2;
  opacity: 0.9;
  animation: floatAround 6s ease-in-out infinite alternate;
}

/* Create slight random variation per badge */
.feature-badge:nth-child(1) { animation-delay: 0s; animation-duration: 5s; }
.feature-badge:nth-child(2) { animation-delay: 0.5s; animation-duration: 6s; }
.feature-badge:nth-child(3) { animation-delay: 1s; animation-duration: 5.5s; }
.feature-badge:nth-child(4) { animation-delay: 1.5s; animation-duration: 6.5s; }
.feature-badge:nth-child(5) { animation-delay: 2s; animation-duration: 7s; }

/* Floating animation */
@keyframes floatAround {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0.9; }
  25% { transform: translate(5px, -10px) rotate(-5deg); opacity: 1; }
  50% { transform: translate(-5px, 10px) rotate(5deg); opacity: 0.95; }
  75% { transform: translate(10px, -5px) rotate(-3deg); opacity: 1; }
  100% { transform: translate(-10px, 5px) rotate(3deg); opacity: 0.9; }
}


/* Feature icons */
.text-fade { opacity: 0; animation: fadeInUp 1.4s forwards; }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: translateY(0);} }
        
        .section { padding: 90px 0; }
        
        .wave-divider { margin-top: -1px; }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #00124d;
            transition: transform 0.35s ease;
            color: #FEFEFE;
        }
        .feature-box:hover .feature-icon { transform: translateY(-8px); }
        
        .highlight-section { background: #f9fafb; }
        
        .cta-section {
            background: #111827;
            color: #fff;
            padding: 90px 0;
            border-radius: 14px;
        }
        
        
        #intro-example {
            height: 400px;
        }
        
        /* Height for devices larger than 992px */
        /* @media (min-width: 992px) {
        #intro-example {
        height: 600px;
        }
        } */
        
        .hero-img {
            opacity: 0;
            transform: translateY(20px) scale(0.98);
            animation: heroFadeUp 1.3s ease-out forwards, heroFloat 6s ease-in-out infinite;
        }
        
        @keyframes heroFadeUp {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.96);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes heroFloat {
            0% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-12px) scale(1.01); }
            100% { transform: translateY(0) scale(1); }
        }
        
        @media (max-width: 767px) {
		  #intro {
		    padding-top: 0rem;
		  }
		}	
		 /* Sharp reveal animations */
		  .reveal { opacity: 0; transform: translateY(30px); transition: all .6s ease-out; }
		  .reveal.show { opacity: 1; transform: translateY(0); }
		  /* Hover micro-interactions */
		  .hover-shadow {
		    transition: transform .25s ease, box-shadow .25s ease;
		  }
		  .hover-shadow:hover {
		    transform: translateY(-6px);
		    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
		  }
		
		  /* Sharp reveal animations */
		  .reveal { opacity: 0; transform: translateY(30px); transition: all .6s ease-out; }
		  .reveal.show { opacity: 1; transform: translateY(0); }
		  .hover-shadow {
		    transition: transform .25s ease, box-shadow .25s ease;
		  }
		  .hover-shadow:hover {
		    transform: translateY(-6px);
		    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
		  }

/* Review feature icons */

/* Universal Form Modernization */

.form-control,
.form-select,
textarea {
  border: 1px solid #FEFEFF;
  border-radius: 4px;
  /*padding: 0.75rem 1rem;*/
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  background-color: #fafafa;
}

.form-control:hover,
.form-select:hover,
textarea:hover {
  background-color: #ffffff;
  border: 1px solid #4070f4
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: #4a74ff;
  box-shadow: 0 0 0 0.15rem rgba(74, 116, 255, 0.25);
  background-color: #ffffff;
}

/* Label modernization */
.form-label {
  font-weight: 400;
  font-size: 0.9rem;
  color: #003;
  margin-bottom: 0.3rem;
}

/* Submit button modern aesthetic */
/*
.btn-primary {
  background: linear-gradient(135deg, #4070f4, #2754dc);
  border: none;
  border-radius: 2px;
  padding: 0.8rem 2.2rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
*/
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(64,112,244,0.25);
}

/* Card smoothing when containing forms */
.card-body {
  padding: 2rem;
}

@media (min-width: 768px) {
  .card-body {
    padding: 2.8rem;
  }
}

/* Placeholder subtle appearance */
::placeholder {
  color: #b4b4c2;
}


/* glass morphism  */
/* ===== Soft Glass Form UI ===== */

.soft-form {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
  padding: 2.2rem !important;
}

/* Inputs */
.soft-form .form-control,
.soft-form .form-select,
.soft-form textarea {
  border: none;
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  background: rgba(255,255,255,0.75);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

.soft-form .form-control:focus,
.soft-form .form-select:focus,
.soft-form textarea:focus {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 3px rgba(70, 130, 255, 0.25);
  transform: translateY(-2px);
}

/* Label */
.soft-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.35rem;
}

/* Button (Glass Style) */
.soft-form .btn-primary {
  background: linear-gradient(135deg, #3f88ff, #2dd4a3);
  border: none;
  border-radius: 18px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.soft-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(63, 136, 255, 0.35);
}

/* Placeholder */
.soft-form ::placeholder {
  color: rgba(140,140,160,0.8);
}

/* Slight field spacing refinement */
.soft-form .mb-3 {
  margin-bottom: 1.1rem !important;
}



/* About Us */
/* Subtle Hero Gradient */
  .hero {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    background: radial-gradient(circle at 30% 20%, var(--brand-green-yellow), transparent 55%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.45;
    pointer-events: none;
  }

  /* Section Titles */
  .section-title {
    font-weight: 700;
    margin-bottom: 1rem;
  }

  /* Value Cards */
  .value-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 6px 28px rgba(0,0,0,0.07);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.14);
  }

  /* Soft-glass highlight section */
  .vision-section {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 3rem;
  }
  

.timeline {
  border-left: 3px solid var(--brand-blue);
  padding-left: 30px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 12px rgba(14, 12, 251, 0.6);
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 12px rgba(57, 254, 17, 0.6);
  margin-left: -37px;
  margin-top: -1px;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* soft pulse animation */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: .7; }
  100% { transform: scale(1); opacity: 1; }
}


/* Hero */
.about-hero {
  min-height: 70vh;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-blue) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/img/wave.svg') no-repeat bottom center;
  opacity: .25;
}

/* Layout */
.section-pad {
  padding: 80px 0;
}

/* Features */
.features-bg {
  background: linear-gradient(135deg, var(--brand-blue), #020082);
}

.feature-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform .35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

/* Animations */
.fade-in-up, .fade-in-left, .fade-in-right {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s ease forwards;
}

.fade-in-left {
  transform: translateX(-30px);
  animation: fadeLeft .9s ease forwards;
}

.fade-in-right {
  transform: translateX(30px);
  animation: fadeRight .9s ease forwards;
}

@keyframes fadeUp {
  to { opacity:1; transform:translateY(0); }
}

@keyframes fadeLeft {
  to { opacity:1; transform:translateX(0); }
}

@keyframes fadeRight {
  to { opacity:1; transform:translateX(0); }
}



  
  