@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yellowtail&display=swap');

*{margin:0;padding:0;box-sizing:border-box;}
body{font-family: "Outfit", sans-serif!important;color:#1a1a1a;background:#fff;}

h1, h2, h3, h4, h5, h6 {
    font-family: "Outfit", sans-serif;
    font-weight: 700!important;
}

.container{max-width:1200px;margin:auto;padding:0 20px;}

/* HEADER */
header{position:sticky;top:0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  /* border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  padding: 0px;
  transition: all 0.3s ease;
  z-index:1000;}

  header:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.header-inner{display:flex;justify-content:space-between;align-items:center;height:70px;}
nav a{margin:0 15px;text-decoration:none;color:#000000;font-weight:500;position:relative;}
nav a:after{content:'';position:absolute;bottom:-5px;left:0;width:0;height:2px;background:#2fbeb5;transition:.3s;}
nav a:hover:after{width:100%;}

.btn-primary{background:linear-gradient(90deg, #2fbeb5, #2fbeb5);color:#fff;padding:10px 20px;border-radius:8px;text-decoration:none;transition:.3s;position: relative; border: 0; box-shadow: none;}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 20px rgba(0,154,219,0.3);} 

/* HERO */
.hero{padding:100px 0;background:linear-gradient(90deg, #ffffff, #ffffff);color:#000000;overflow:hidden;position: relative;  height: auto;  background: #ffffff;  overflow: hidden;}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;}
.hero h1{font-size:55px;line-height:1.2;margin-bottom:20px;animation:fadeUp 1s ease; letter-spacing: -1px;}
.hero p{font-size:18px;margin-bottom:30px;opacity:0.9;animation:fadeUp 1.2s ease;}

.cta-box{
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA Button */
.cta-btn {
  position: relative;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #004831;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: linear-gradient(135deg, #00c2ff, #ffd61f);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Glow effect */
.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #00c2ff, #ffd61f);
  filter: blur(12px);
  opacity: 0.6;
  z-index: -1;
}

/* Hover state */
.cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 114, 255, 0.4);
}

/* Click effect */
.cta-btn:active {
  transform: scale(0.97);
}

/* Optional subtle shine animation */
.cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
}

/* Shine on hover */
.cta-btn:hover::after {
  animation: shine 0.8s ease forwards;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* SVG full coverage */
.waves {
  position: absolute;
  width: 200%;
  height: 100%;
  left: -50%;
  top: 0;
  animation-duration: 10s;
  z-index: 0;
}

/* Common wave style */
.wave {
  fill: none;
  stroke-width: 1.2;
  opacity: 0.5;
}

/* Individual waves (soft colors) */
.wave1 {
  stroke: rgb(255, 145, 0, 0.3);
  animation: waveMoveRight 7s linear infinite;
}

.wave2 {
  stroke: rgb(16, 192, 0, 0.3);
  animation: waveMoveLeft 7s linear infinite;
}

.wave3 {
  stroke: rgb(0, 119, 255, 0.3);
  animation: waveFloat 7s ease-in-out infinite;
}
.wave4 {
  stroke: rgb(255, 0, 149, 0.3);
  animation: waveFloat 7s ease-in-out infinite;
}
.wave5 {
  stroke: rgb(0, 255, 242, 0.3);
  animation: waveFloat 7s ease-in-out infinite;
}

/* Animations */
@keyframes waveMoveRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(400px); }
}

@keyframes waveMoveLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-400px); }
}

@keyframes waveFloat {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(180px) translateY(50px); }
}

.inset-0 {
    inset: 0px;
}
.absolute {
    position: absolute;
}
.overflow-hidden {
    overflow: hidden;
}
.relative {
    position: relative;
}

.btn-light{background:#334da1;color:#ffffff;padding:12px 22px;border-radius:8px;text-decoration:none;margin-right:10px;font-weight:500;transition:.3s; z-index: 999;position: relative;border:2px solid #334da1;}
.btn-light:hover{background:#e8eeff;color:#334da1;transform:translateY(-2px);border:2px solid #334da1;}

.btn-outline{border:2px solid #334da1;color:rgb(51, 77, 161);padding:12px 22px;border-radius:8px;text-decoration:none;transition:.3s;position: relative;}
.btn-outline:hover{background:#e8eeff;color:#334da1;}

.hero img{width:100%;border-radius:14px;box-shadow:0 20px 40px rgba(0,0,0,0.2);animation:float 4s ease-in-out infinite;}

/* FEATURES */
.features{padding:90px 0 90px; background: #2FBEB5;
background: linear-gradient(335deg, rgba(47, 190, 181, 1) 0%, rgba(51, 77, 161, 1) 36%); text-align:center;}
.features h2{font-size:34px;margin-bottom:50px; color: #fff;}
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:25px;position: relative;}
.feature-card{border:0px solid #eee;padding:30px;border-radius:14px;background:#fff;transition:.4s;}
.feature-card:hover{transform:translateY(-10px);box-shadow:0 20px 40px rgba(0,0,0,0.08);}
.text-blue-300{
  color: #a2c7ff!important;
}

.feature-card a.text-link{
  color: rgba(0,0,0,0.2);
  transition:.3s;
}
.feature-card:hover a,
.feature-card a:hover.text-link{
  color: rgba(47,190,181,0.9);
}

/* ADMIN */
.admin {
  position: relative;
  padding: 80px 0 100px;
  text-align: center;
  z-index: 1;
}

.admin::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  width: 100%;
  height: 100%;
  background-image: url(../../images/techbackground.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 7% top;
  opacity: 1;
  z-index: -1;
}
.grid-2{display:grid;grid-template-columns:repeat(3,1fr);gap:25px;margin-top:40px;}
.grid-2 div{background:#fff;padding:30px 20px;border-radius:14px;border:1px solid #eee;transition:.3s;box-shadow:0 15px 30px rgba(0,0,0,0.06);}
.grid-2 div:hover{transform:translateY(-8px);box-shadow:0 15px 30px rgba(0,0,0,0.06);} 

/* CTA */
.cta-section{padding:80px 0;text-align:center;background: #2FBEB5;
background: linear-gradient(335deg, rgba(47, 190, 181, 1) 0%, rgba(51, 77, 161, 1) 36%);color:#ffffff;}

/* FOOTER */
.footer {
    color: #ffffff80;
    background: #080d14!important;
    padding: 72px 5% 32px;
}
.footer a{display:block;color:#cbd5e1;text-decoration:none;margin:6px 0;transition:.3s;}
.footer a:hover{color:#fff;}
.footer-bottom{text-align:center;margin-top:40px;font-size:14px;color:#94a3b8;}

/* ANIMATIONS */
@keyframes fadeUp{from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}
@keyframes float{0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}
@keyframes scroll{0%{transform:translateX(100%);}100%{transform:translateX(-100%);}}

/* RESPONSIVE */
@media(max-width:900px){
.hero-grid{grid-template-columns:1fr;}
.feature-grid{grid-template-columns:1fr 1fr;}
.grid-3{grid-template-columns:1fr;}
.footer-grid{grid-template-columns:1fr 1fr;}
}

@media(max-width:500px){
nav{display:none;}
.feature-grid{grid-template-columns:1fr;}
.footer-grid{grid-template-columns:1fr;}
.hero h1{font-size:36px;letter-spacing: normal!important ;}
}

:root {
  --primary: #2fbeb5;
  --secondary: #334da1;
  --dark: #080d14;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--dark);
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", sans-serif;
}

.code, pre {
  font-family: "DM Mono", monospace;
}

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

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

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

.text-primary-grn {
  color: var(--primary)!important;
}

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

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

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

.text-dark {
  color: var(--dark);
}

/* ================= MARQUEE ================= */

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  padding: 12px 30px;
  font-weight: 500;
  opacity: 0.95;
}

/* separator dot */
.marquee-item::after {
  content: "•";
  margin-left: 30px;
  opacity: 0.5;
}

/* animation */
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #334da1, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #334da1, transparent);
}

.section-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 16px;
}

.glow-border {
    color: #ffffff;
    outline-color: #334da1;
    box-shadow: 0 8px 60px #2fbeb51f;
    background: #2FBEB5;
    background: linear-gradient(335deg, rgba(47, 190, 181, 1) 0%, rgba(51, 77, 161, 1) 36%);
    /* background: linear-gradient(120deg, #009adb, #00d9ff, #009adb);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
        mask-composite: exclude; */
}

h2.text-3xl { font-family: "Yellowtail", cursive!important; font-weight: normal; font-size: 52px!important; text-shadow: 0 0px 0px #000; }
p.text-2xl { font-weight: 600; font-size: 25px!important; text-shadow: 0 0px 0px #000; }

.font-normal { font-weight: normal!important;}

.gradient-border {
  position: relative;
  border-radius: 12px;
  background: #fff;
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(45deg, #2fbeb5, #334da1);
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* BACKGROUND */
.erpbg {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #ffffff, #ffffff);
}

/* 🌈 ORBS */
.erpbg span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  filter: blur(12px);
  mix-blend-mode: multiply;
  transition: transform 0.2s ease-out;
}

/* Different depth levels (important for parallax) */
.erpbg span:nth-child(1) {
  width: 160px; height: 160px;
  background: radial-gradient(circle, #3b73dd, #8fd3f4);
  top: 10%; left: 5%;
  --depth: 20;
}

.erpbg span:nth-child(2) {
  width: 120px; height: 120px;
  background: radial-gradient(circle, #769fe9, #bad5f7);
  top: 20%; right: 5%;
  --depth: 40;
}

.erpbg span:nth-child(3) {
  width: 140px; height: 140px;
  background: radial-gradient(circle, #84fab0, #8fd3f4);
  bottom: 10%; right: 15%;
  --depth: 30;
}

.erpbg span:nth-child(4) {
  width: 50px; height: 50px;
  background: radial-gradient(circle, #84fab0, #8fd3f4);
  bottom: 5%; left: 10%;
  --depth: 50;
}

.erpbg span:nth-child(5) {
  width: 80px; height: 80px;
  background: radial-gradient(circle, #84fab0, #8fd3f4);
  top: 50%; left: 15%;
  --depth: 15;
}

/* 🧊 GLASS CARD */
.glass-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* CONTENT ABOVE */
.erpbg > * {
  position: relative;
  z-index: 2;
}


/* GRID */
.grid {
  display: grid;
}

/* Default (mobile first) */
.grid {
  grid-template-columns: 1fr;
}

/* md:grid-cols-1 → stays 1 column on medium */
@media (min-width: 768px) {
  .md\:grid-cols-1 {
    grid-template-columns: 1fr;
  }
}

/* You can optionally improve UX (recommended) */
@media (min-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* GAP */
.gap-5 {
  gap: 20px;
}

/* MARGIN TOP */
.mt-12 {
  margin-top: 48px;
}

/* CARD STYLING */
.bg-white {
  background-color: #ffffff;
}

.rounded-2xl {
  border-radius: 16px;
}

.py-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.px-8 {
  padding-left: 32px;
  padding-right: 32px;
}

/* SHADOW */
.shadow-lg {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* PREMIUM HOVER EFFECT */
.shadow-lg:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

/* GLOW BORDER (CUSTOM CLASS) */
.glow-border {
  position: relative;
  overflow: hidden;
}

.glow-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  
}

/* ICON POSITION */
.absolute {
  position: absolute;
}

.right-15 {
  right: 45px;
  top: 30px;
}

/* TEXT STYLING */
.text-2xl {
  font-size: 24px;
  line-height: 1.3;
}

.font-semibold {
  font-weight: 600;
}

/* ICON SIZE */
.text-5xl {
  font-size: 40px;
}

/* ICON COLOR */
.text-white {
  color: #ffffff;
}
.bg-primary {
     background: linear-gradient(135deg, #2fbeb5, #2fbeb5)!important;
}

/* Card container */
.icon-card {
  background: transparent;
  border-radius: 12px;
  padding: 0px;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

/* Circle behind icon */
.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon styling */
.icon-circle i {
  font-size: 26px;
  line-height: 1;
}

/* Color Variants */

/* Yellow */
.icon-card.yellow .icon-circle {
  background: rgba(255, 215, 0, 0.2);
}
.icon-card.yellow i {
  color: #d4b000;
}

/* Green */
.icon-card.green .icon-circle {
  background: rgba(0, 200, 0, 0.15);
}
.icon-card.green i {
  color: #00a651;
}

/* Cyan */
.icon-card.cyan .icon-circle {
  background: rgba(0, 200, 200, 0.15);
}
.icon-card.cyan i {
  color: #00bcd4;
}

/* Pink */
.icon-card.pink .icon-circle {
  background: rgba(255, 0, 150, 0.15);
}
.icon-card.pink i {
  color: #e91e63;
}