
/* ================================================================
   Asuni Technologies — style.css
   Full rebuild: modern, responsive, attractive
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Raleway:wght@400;600;700;800&display=swap');

/* ================================================================
   RESET & BASE
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; }

html, body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  color: #444;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Open Sans', sans-serif;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 14px;
  line-height: 1.3;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 17px; }
h5 { font-size: 14px; font-weight: 600; }
h6 { font-size: 13px; }

p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.75;
  color: #ffffff;
}

a {
  color: #3b6be8;
  text-decoration: none;
  outline: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #27ae60; text-decoration: none; }

img { max-width: 100%; display: block; }

::selection         { background: #27ae60; color: #fff; }
::-moz-selection    { background: #27ae60; color: #fff; }

/* ================================================================
   UTILITY — spacing
   ================================================================ */

.clear { clear: both; }
.m-bot-30 { margin-bottom: 30px; }

.margin-bottom-30 { margin-bottom: 30px !important; }
.margin-bottom-50 { margin-bottom: 50px !important; }
.margin-top-20    { margin-top: 20px !important; }
.margin-top-40    { margin-top: 40px !important; }

/* ================================================================
   PAGE LOADER
   ================================================================ */

#pageloader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #fff;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader { text-align: center; }

/* ================================================================
   OVERLAY  &  PARALLAX
   ================================================================ */

.overlay {
  background: rgba(0,0,0,0.50) url('../images/pattern.png') repeat;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

section { position: relative; }

.parallax {
  background-attachment: fixed !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.parallax .container { position: relative; }

/* ================================================================
   SECTION  &  TITLE
   ================================================================ */

.section {
  padding: 90px 0 70px;
  position: relative;
}

.title-box {
  margin-bottom: 60px;
  position: relative;
}

.title-box h2.title {
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding-bottom: 16px;
  position: relative;
  color: #1a1a2e;
}

.title-box h2.title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, #27ae60, #3b6be8);
  border-radius: 2px;
}

.title-box p {
  color: #888;
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 0;
}

/* white variant */
.title-box.white h2.title { color: #fff; }
.title-box.white h2.title::after { background: rgba(255,255,255,0.8); }

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-block;
  padding: 11px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.4;
  text-transform: uppercase;
}

.btn-white {
  background: #fff;
  border-color: #fff;
  color: #1a1a2e;
}
.btn-white:hover, .btn-white:focus {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-green {
  background: #27ae60;
  border-color: #27ae60;
  color: #fff !important;
}
.btn-green:hover, .btn-green:focus {
  background: #219150;
  border-color: #219150;
  color: #fff !important;
}

.btn-gray-border {
  border: 2px solid #ccc;
  background: transparent;
  color: #555;
}
.btn-gray-border:hover, .btn-gray-border:focus {
  background: #27ae60;
  border-color: #27ae60;
  color: #fff;
}

/* send button loader */
#sendBtn {
  position: relative;
  min-width: 160px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#sendBtn .btn-loader {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
#sendBtn.loading .btn-text  { display: none; }
#sendBtn.loading .btn-loader{ display: inline-block; }
#sendBtn.loading { pointer-events: none; opacity: 0.85; }

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

/* ================================================================
   NAVIGATION
   ================================================================ */

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: rgba(20, 20, 40, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}

.logo-nav {
  float: left;
  line-height: 68px;
}

.logo-nav img { display: inline-block; vertical-align: middle; }

#main-menu { z-index: 300; }

#main-menu ul {
  display: block;
  width: 100%;
  text-align: right;
  margin: 0;
  padding: 0;
}

#main-menu ul li {
  display: inline-block;
  position: relative;
  list-style: none;
}

#main-menu ul li a {
  display: inline-block;
  padding: 0 14px;
  line-height: 68px;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: color 0.2s;
}

#main-menu ul li a:hover { color: #27ae60; }

#main-menu ul li.active > a {
  color: #27ae60;
  border-bottom: 2px solid #27ae60;
}

#main-menu ul.nav > li > a:hover,
#main-menu ul.nav > li > a:focus { background: none; }

.clear-toggle { display: none; clear: both; }

.navbar-toggle {
  display: none;
  color: #fff;
  font-size: 28px;
  margin: 0;
  padding: 20px 0 0;
  position: absolute;
  right: 15px;
  top: 0;
  background: none;
  border: none;
  cursor: pointer;
}

/* ================================================================
   HERO SLIDER
   ================================================================ */

.home {
  overflow: hidden;
  font-family: 'Raleway', sans-serif;
}

#home {
  width: 100%;
  height: 100%;
  color: #fff;
}

.home .flexslider { overflow: hidden; position: relative; }

.home .flexslider .slides img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-overlay {
  background: rgba(10,10,30,0.52) url('../images/pattern.png') repeat;
  position: absolute;
  inset: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
}

.slider-text-wrapper {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 200;
  padding: 0 20px;
}

.big {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.small {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  margin: 18px auto 0;
  max-width: 620px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.slider-text-wrapper .btn {
  margin-top: 36px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  padding: 13px 38px;
  font-size: 13px;
  letter-spacing: 1.5px;
}
.slider-text-wrapper .btn:hover {
  background: #27ae60;
  border-color: #27ae60;
}

/* FlexSlider nav dots */
.flex-control-nav {
  position: absolute;
  bottom: 24px;
  text-align: center;
  width: 100%;
  z-index: 999;
  padding: 0;
  margin: 0;
}
.flex-control-nav li {
  display: inline-block;
  margin: 0 4px;
  list-style: none;
}
.flex-control-nav li a {
  width: 28px; height: 4px;
  background: rgba(255,255,255,0.5);
  display: block;
  text-indent: -9999px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.flex-control-nav li a.flex-active {
  background: #27ae60;
  width: 40px;
}

.flex-direction-nav { margin: 0; padding: 0; }
.home .flex-prev,
.home .flex-next {
  color: rgba(255,255,255,0.7);
  font-size: 36px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  transition: color 0.2s;
  cursor: pointer;
}
.home .flex-prev { left: 20px; }
.home .flex-next { right: 20px; }
.home .flex-prev:hover,
.home .flex-next:hover { color: #27ae60; }

.slides, .flex-control-nav, .flex-direction-nav {
  margin: 0; padding: 0; list-style: none;
}
.flexslider { margin: 0; padding: 0; }
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.slides:after {
  content: '\0020'; display: block; clear: both;
  visibility: hidden; line-height: 0; height: 0;
}
html[xmlns] .slides { display: block; }
* html .slides { height: 1%; }
.no-js .slides > li:first-child { display: block; }




/* ================================================================
   ABOUT / CAPABILITIES  (icon-box cards)
   ================================================================ */

.row_1, .row_2 { margin-bottom: 0; }

.features-icon-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 14px;
  padding: 28px 24px;
  margin-bottom: 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.features-icon-box:hover {
  box-shadow: 0 10px 32px rgba(39,174,96,0.10);
  transform: translateY(-4px);
}
.features-icon-box .features-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f8f0 0%, #ddf0fe 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #27ae60;
  position: static; /* override old absolute */
  line-height: 1;
}
.features-icon-box .features-info { flex: 1; margin-left: 0; }
.features-icon-box .features-info h4 {
  font-size: 16px; font-weight: 700;
  margin-bottom: 7px; color: #f8f8f9;
}
.features-icon-box .features-info p {
  font-size: 14px; color: #e7cccc;
  line-height: 1.65; margin: 0;
}

/* ================================================================
   STATS SECTION (MODERN SaaS STYLE)
   ================================================================ */

#facts {
  background: url('../images/parallax/facts.jpg') no-repeat center center;
  background-size: cover;
  padding: 110px 0;
  position: relative;
}

/* dark premium overlay */
#facts .overlay {
  background: linear-gradient(
    135deg,
    rgba(10,12,25,0.85),
    rgba(10,12,25,0.75)
  );
}

/* grid spacing */
#facts .row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
}

/* column fix */
#facts .col-md-3,
#facts .col-sm-6 {
  display: flex;
  flex: 1 1 calc(25% - 24px);
  padding: 0;
}

/* CARD STYLE */
.facts-box {
  width: 100%;
  text-align: center;
  padding: 32px 20px;
  border-radius: 18px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* hover glow */
.facts-box:hover {
  transform: translateY(-6px);
  border-color: rgba(39,174,96,0.4);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

/* icon */
.facts-box i {
  font-size: 44px;
  color: #7dff9a;
  margin-bottom: 14px;
  display: block;
}

/* number */
.facts-box h3 {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1;
}

/* label */
.facts-box span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

/* description */
.facts-box p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin: 0;
}

/* hover animation glow line */
.facts-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #27ae60, #3b6be8);
  transition: 0.3s ease;
  transform: translateX(-50%);
}

.facts-box:hover::before {
  width: 70%;
}


/* =========================
   ABOUT SECTION — 3D PREMIUM
========================= */

#about {
  position: relative;
  background: radial-gradient(circle at top, #f8fbff, #eef3f9);
  overflow: hidden;
}

/* ================= CARD ================= */

.features-icon-box {
  position: relative;
  display: flex;
  gap: 18px;

  padding: 28px 24px;
  border-radius: 18px;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(0,0,0,0.06);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-style: preserve-3d;
  perspective: 1000px;

  overflow: hidden;
}

/* glow following mouse */
.features-icon-box::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59,107,232,0.25), transparent 70%);
  top: var(--y, 50%);
  left: var(--x, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.2s;
}

.features-icon-box:hover::after {
  opacity: 1;
}

/* hover lift */
.features-icon-box:hover {
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* ================= ICON ================= */

.features-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  color: #fff;

  background: linear-gradient(135deg, #27ae60, #3b6be8);

  animation: floatIcon 3s ease-in-out infinite;
}

/* floating animation */
@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ================= TEXT ================= */

.features-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.features-info p {
  font-size: 14px;
  color: #666;
}

/* ================= STAGGER ANIMATION ================= */

.features-icon-box {
  opacity: 0;
  transform: translateY(40px);
}

.features-icon-box.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}



/* =========================
   ABOUT — ULTRA PREMIUM MODE
========================= */

#about {
  position: relative;
  background: radial-gradient(circle at 20% 20%, #f8fbff, #eef3f9);
  overflow: hidden;
}

/* ================= PARTICLES ================= */

.particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(59,107,232,0.4);
  border-radius: 50%;
  animation: floatParticle 10s linear infinite;
}

@keyframes floatParticle {
  from { transform: translateY(0px); opacity: 1; }
  to { transform: translateY(-800px); opacity: 0; }
}

/* ================= CARD ================= */

.features-icon-box {
  position: relative;
  padding: 28px;
  border-radius: 20px;

  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(0,0,0,0.06);

  transform-style: preserve-3d;
  transition: 0.25s ease;

  overflow: hidden;
}

/* shimmer sweep */
.features-icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s;
}

.features-icon-box:hover::before {
  transform: translateX(100%);
}

/* glow border */
.features-icon-box::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(120deg, #27ae60, #3b6be8);
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
}

.features-icon-box:hover::after {
  opacity: 0.4;
  filter: blur(10px);
}

/* ================= ICON ================= */

.features-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  color: #fff;

  background: linear-gradient(135deg, #27ae60, #3b6be8);

  animation: floatIcon 3s ease-in-out infinite;
}

/* floating icon */
@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ================= TEXT ================= */

.features-info h4 {
  font-size: 16px;
  font-weight: 700;
}

.features-info p {
  font-size: 14px;
  color: #666;
}

/* ================= SCROLL REVEAL ================= */

.features-icon-box {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
}

.features-icon-box.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.7s ease;
}



/* =========================
   ABOUT SECTION ULTRA UI
========================= */

#about {
  position: relative;
  overflow: hidden;
  padding: 100px 0;

  background: linear-gradient(135deg, #0f2027, #1a2a3a, #3b6be8);
  background-size: 300% 300%;
  animation: bgMove 12s ease infinite;
}

/* animated gradient */
@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ================= PARTICLES ================= */

.particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: floatParticle 10s linear infinite;
}

@keyframes floatParticle {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-800px); opacity: 0; }
}

/* ================= CARD ================= */

.features-icon-box {
  position: relative;
  padding: 30px;
  border-radius: 20px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);

  backdrop-filter: blur(14px);

  transition: 0.35s ease;
  overflow: hidden;

  opacity: 0;
  transform: translateY(60px);
}

/* reveal */
.features-icon-box.active {
  opacity: 1;
  transform: translateY(0);
}

/* hover */
.features-icon-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* glow border */
.features-icon-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(120deg, #27ae60, #3b6be8);
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
}

.features-icon-box:hover::before {
  opacity: 0.4;
  filter: blur(12px);
}

/* mouse glow */
.features-icon-box::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.2s;
}

.features-icon-box:hover::after {
  opacity: 1;
}

/* ================= ICON ================= */

.features-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  color: #fff;

  background: linear-gradient(135deg, #27ae60, #3b6be8);

  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ================= TEXT ================= */

.features-info h4 {
  color: #fff;
  margin-top: 10px;
}

.features-info p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* ================= TITLE ================= */

#about .title {
  color: #fff;
}

#about .title-box p {
  color: rgba(255,255,255,0.7);
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
  background: #f7f9fc;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; /* equal spacing all sides */
  margin-top: 40px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

/* hover effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: #27ae60;
}

/* ICON */
.service-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(135deg, #27ae60, #3b6be8);
}

/* TITLE */
.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a2e;
}

/* TEXT */
.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}





/* =========================
   SERVICES SECTION (CRAZY UI)
========================= */

.services-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;

  /* animated gradient */
  background: linear-gradient(
    270deg,
    #0f2027,
    #203a43,
    #2c5364,
    #3b6be8,
    #27ae60
  );
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
}

/* animated gradient keyframes */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* overlay glass effect */
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 25, 0.55);
  backdrop-filter: blur(20px);
}

/* container above overlay */
.services-section .container {
  position: relative;
  z-index: 2;
}

/* ================= GRID ================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}

/* ================= CARD ================= */

.service-card {
  position: relative;
  padding: 32px 26px;
  border-radius: 18px;
  text-align: center;

  /* glassmorphism */
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);

  transition: all 0.35s ease;
  overflow: hidden;
}

/* glowing border animation */
.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(120deg, #27ae60, #3b6be8, #27ae60);
  opacity: 0;
  z-index: -1;
  transition: 0.4s;
}

.service-card:hover::before {
  opacity: 1;
  filter: blur(10px);
}

/* hover effect */
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  border-color: rgba(39,174,96,0.6);
}

/* ================= ICON ================= */

.service-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  color: #fff;

  background: linear-gradient(135deg, #27ae60, #3b6be8);

  /* pulse animation */
  animation: pulseIcon 2.5s infinite;
}

@keyframes pulseIcon {
  0%   { box-shadow: 0 0 0 0 rgba(39,174,96,0.6); }
  70%  { box-shadow: 0 0 0 18px rgba(39,174,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(39,174,96,0); }
}

/* ================= TEXT ================= */

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}

/* ================= TITLE FIX ================= */

.services-section .title-box h2.title {
  color: #fff;
}

.services-section .title-box p {
  color: rgba(255,255,255,0.7);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}




/* =========================
   TECH STACK SECTION
========================= */

.tech-section {
  background: #f7f9fc;
  padding: 90px 0;
}


/* CARD */
.tech-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid #eef0f4;
  transition: 0.3s ease;
}

/* hover */
.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: #27ae60;
}

/* ICON */
.tech-card i {
  font-size: 34px;
  color: #27ae60;
  margin-bottom: 16px;
}

/* TITLE */
.tech-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

/* TEXT */
.tech-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}









:root {
  --bg-dark: #0b1220;
  --bg-soft: #111827;

  --primary: #4f46e5;   /* Indigo */
  --secondary: #06b6d4; /* Cyan */
  --accent: #22c55e;    /* Green */

  --text-main: #ffffff;
  --text-soft: #9ca3af;

  --glass: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.1);
}

.team-bubble-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;

  background: radial-gradient(circle at 10% 20%, #111827, #020617 80%);
}

/* glow effects */
.team-bubble-section::before,
.team-bubble-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

.team-bubble-section::before {
  background: var(--primary);
  top: -150px;
  left: -150px;
}

.team-bubble-section::after {
  background: var(--secondary);
  bottom: -150px;
  right: -150px;
}

.team-bubble-section h2.title {
    color: white;
}

.team-bubble-section p {
    color: white;
}

.bubbles span {
  position: absolute;
  bottom: -150px;
  border-radius: 50%;

  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent);

  animation: bubbleMove linear infinite;
}

/* sizes + colors */
.bubbles span:nth-child(odd) {
  background: radial-gradient(circle, rgba(79,70,229,0.6), transparent);
}

.bubbles span:nth-child(even) {
  background: radial-gradient(circle, rgba(6,182,212,0.6), transparent);
}

@keyframes bubbleMove {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translateY(-1100px) scale(1.2);
    opacity: 0;
  }
}

.card-wrap {
  border-radius: 22px;
  padding: 30px 20px;

  background: var(--glass);
  backdrop-filter: blur(14px);

  border: 1px solid var(--border);

  transition: all 0.35s ease;
}

/* smooth hover */
.team-bubble-card:hover .card-wrap {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.card-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(79,70,229,0.5),
    rgba(6,182,212,0.5),
    transparent
  );

  opacity: 0;
  transition: 0.4s;
}

.team-bubble-card:hover .card-wrap::before {
  opacity: 1;
}




/* =========================
   BUBBLE BACKGROUND
========================= */

.team-bubble-section {
  position: relative;
  padding: 110px 0;
  background: #2f333e;
  overflow: hidden;
}

/* bubbles container */
.bubbles span {
  position: absolute;
  bottom: -150px;
  width: 20px;
  height: 20px;
  background: rgba(134, 232, 59, 0.4);
  border-radius: 50%;
  animation: bubbleMove 15s linear infinite;
}

/* random sizes */
.bubbles span:nth-child(odd) {
  width: 30px;
  height: 30px;
  background: rgba(39,174,96,0.4);
}

/* animation */
@keyframes bubbleMove {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-1200px) scale(0.5);
    opacity: 0;
  }
}

/* random positions */
.bubbles span:nth-child(1) { left: 10%; animation-duration: 10s; }
.bubbles span:nth-child(2) { left: 20%; animation-duration: 14s; }
.bubbles span:nth-child(3) { left: 30%; animation-duration: 12s; }
.bubbles span:nth-child(4) { left: 40%; animation-duration: 18s; }
.bubbles span:nth-child(5) { left: 50%; animation-duration: 11s; }
.bubbles span:nth-child(6) { left: 60%; animation-duration: 16s; }
.bubbles span:nth-child(7) { left: 70%; animation-duration: 13s; }
.bubbles span:nth-child(8) { left: 80%; animation-duration: 17s; }
.bubbles span:nth-child(9) { left: 90%; animation-duration: 12s; }

/* =========================
   TEAM GRID
========================= */

.team-bubble-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

/* =========================
   CARD
========================= */

.team-bubble-card {
  width: 260px;
  height: 320px;
  position: relative;
}

/* CARD INNER */
.card-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);

  transition: 0.4s;
}

/* =========================
   ANIMATED BORDER
========================= */

.card-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;

  background: linear-gradient(270deg, #27ae60, #3b6be8, #27ae60);
  background-size: 400% 400%;

  animation: borderFlow 6s linear infinite;
  z-index: -1;
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* =========================
   IMAGE
========================= */

.team-img {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.team-img img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.2);
  transition: 0.4s;
}

/* =========================
   INFO
========================= */

.team-info {
  text-align: center;
  margin-top: 15px;
}

.team-info h4 {
  color: #fff;
}

.team-info span {
  font-size: 13px;
  color: #27ae60;
}

/* =========================
   UNIQUE HOVER (ROTATE + SLIDE)
========================= */

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #27ae60, #3b6be8);
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;

  transform: rotateY(90deg);
  transform-origin: left;

  transition: 0.5s ease;
}

/* hover reveal */
.team-bubble-card:hover .team-overlay {
  transform: rotateY(0);
}

/* image zoom */
.team-bubble-card:hover img {
  transform: scale(1.1);
}

/* =========================
   SOCIAL
========================= */

.team-social a {
  margin: 5px;
  width: 36px;
  height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.team-social a:hover {
  background: #fff;
  color: #27ae60;
}

/* =========================
   CARD HOVER EFFECT
========================= */

.team-bubble-card:hover .card-wrap {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .team-bubble-card {
    width: 90%;
  }
}



/* =========================
   GLOBAL SECTION ANIMATION
========================= */

.section {
  position: relative;
  overflow: hidden;
}

/* hidden state */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ================================================================
   CTA SECTION (IMPROVED)
================================================================ */

#cta {
  position: relative;
  background: url('../images/parallax/cta.jpg') no-repeat center center;
  background-size: cover;
  padding: 110px 0;
  text-align: center;
}

/* dark overlay */
#cta .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 25, 0.75);
}

/* content wrapper */
#cta .cta-wrapper {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

/* title */
#cta h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* paragraph */
#cta p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* buttons container */
#cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* buttons */
#cta .btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  transition: all 0.3s ease;
  display: inline-block;
}

/* white button */
#cta .btn-white {
  background: #fff;
  color: #1a1a2e;
  border: 2px solid #fff;
}

#cta .btn-white:hover {
  background: transparent;
  color: #fff;
}

#cta .btn-green {
  background: linear-gradient(135deg, #27ae60, #3b6be8);
  color: #fff;
  border: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

#cta .btn-green:hover {
  transform: translateY(-3px);
}

/* responsive */
@media (max-width: 768px) {
  #cta h2 {
    font-size: 28px;
  }

  #cta p {
    font-size: 15px;
  }

  #cta {
    padding: 80px 20px;
  }
}
/* ================================================================
   CONTACT (MODERN UI)
================================================================ */

#contact {
  position: relative;
  background: url('../images/parallax/contact.jpg') no-repeat center center;
  background-size: cover;
  padding: 100px 0;
}

/* overlay */
#contact .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 25, 0.78);
}

/* title */
#contact .subtitle {
  color: rgba(255,255,255,0.75);
}

/* ================= QUICK CONTACT ================= */

.contact-quick {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.contact-quick-item {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px 20px;
  min-width: 220px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;

  color: #fff;
  transition: 0.25s;
}

.contact-quick-item:hover {
  transform: translateY(-4px);
  border-color: rgba(39,174,96,0.6);
}

.contact-quick-item i {
  font-size: 22px;
  color: #27ae60;
}

.cq-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}

.contact-quick-item a,
.contact-quick-item span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* ================= FORM CARD ================= */

.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;

  padding: 30px;
  backdrop-filter: blur(10px);
}

/* grid layout */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* full width fields */
.form-grid .full {
  grid-column: span 2;
}

/* inputs */
#contactForm .form-control {
  height: 48px;
  border-radius: 10px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);

  color: #fff;
  padding: 10px 14px;

  font-size: 14px;
}

/* textarea */
#contactForm textarea.form-control {
  height: 120px;
  resize: none;
}

/* focus */
#contactForm .form-control:focus {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39,174,96,0.25);
  outline: none;
}

/* placeholder */
#contactForm .form-control::placeholder {
  color: rgba(255,255,255,0.5);
}

/* ================= BUTTON ================= */

.full-btn {
  width: 100%;
  margin-top: 16px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  border-radius: 12px;

  background: linear-gradient(135deg, #27ae60, #3b6be8);
  color: #fff;
  border: none;

  transition: 0.25s;
}

.full-btn:hover {
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

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

  .form-grid .full {
    grid-column: span 1;
  }

  .contact-card {
    padding: 20px;
  }
}

/* ================================================================
   FOOTER
   ================================================================ */

footer {
  background: #0f1221;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.copyright { margin-top: 8px; }
.copyright p {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin: 0;
  line-height: 42px;
}
.copyright a { color: #27ae60; }
.copyright a:hover { color: #fff; }

.social-icons {
  width: 100%; display: flex;
  justify-content: flex-end; align-items: center;
}
.social-icons ul {
  margin: 0; padding: 0;
  display: flex; gap: 10px;
}
.social-icons ul li { list-style: none; }
.social-icons ul li a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background 0.25s, color 0.25s;
}
.social-icons ul li a:hover { background: #27ae60; color: #fff; }

/* ================================================================
   SCROLL TO TOP
   ================================================================ */

.scrollup {
  width: 40px; height: 40px;
  position: fixed;
  bottom: 28px; right: 20px;
  display: none;
  background: #27ae60;
  border-radius: 10px;
  text-align: center;
  z-index: 9999;
  transition: background 0.2s;
}
.scrollup i { color: #fff; font-size: 16px; line-height: 40px; display: block; }
.scrollup:hover { background: #219150; }

/* ================================================================
   TOAST  &  MODAL
   ================================================================ */

.toast-dialog {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center; justify-content: center;
  z-index: 99999;
}
.toast-box {
  min-width: 320px; max-width: 440px;
  padding: 22px 28px;
  border-radius: 14px;
  font-size: 15px;
  text-align: center;
  animation: scaleIn 0.25s ease;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.toast-success { background: #e8f8f0; color: #155724; border-left: 5px solid #27ae60; }
.toast-error   { background: #fdecea; color: #842029; border-left: 5px solid #e74c3c; }

@keyframes scaleIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

/* ================================================================
   RESPONSIVE — TABLET  ≤ 991px
   ================================================================ */

@media (max-width: 991px) {

  /* nav */
  .navbar-toggle { display: block !important; }
  .clear-toggle  { display: block; }

  #main-menu {
    background: #111827;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  #main-menu.collapse { display: none; }
  #main-menu.collapse.in { display: block !important; }

  #main-menu ul li { display: block; text-align: left; }
  #main-menu ul li a {
    line-height: 44px;
    display: block;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
  }
  #main-menu ul li a:hover,
  #main-menu ul li.active > a {
    background: rgba(255,255,255,0.06) !important;
    color: #27ae60;
    border-bottom-color: rgba(255,255,255,0.06);
  }
  #main-menu ul li.active > a { box-shadow: none !important; }

  /* hero */
  .home .flexslider .slides img { height: 520px; }
  .big   { font-size: 38px; }
  .small { font-size: 16px; }

  /* layout */
  .features-icon-box { flex-direction: row; }
  .social-icons { justify-content: flex-start; margin-top: 12px; }
  .copyright p { line-height: 1.6; }

  /* contact quick */
  .contact-quick { flex-direction: column; align-items: center; }
}

/* ================================================================
   RESPONSIVE — MOBILE  ≤ 767px
   ================================================================ */

@media (max-width: 767px) {

  .section { padding: 64px 0 48px; }

  .title-box { margin-bottom: 40px; }
  .title-box h2.title { font-size: 24px; }

  /* hero */
  .home .flexslider .slides img { height: 420px; }
  .slider-text-wrapper { padding: 0 24px; }
  .big   { font-size: 28px; letter-spacing: 0; line-height: 1.2; }
  .small { font-size: 14px; }
  .slider-text-wrapper .btn { padding: 10px 26px; font-size: 12px; }

  /* stats: 2-column grid */
  .facts-box { margin-bottom: 40px; }

  /* features – full width */
  .features-icon-box { flex-direction: column; }
  .features-icon-box .features-icon { margin-bottom: 10px; }

  /* services: 1 col */
  #services .col-md-4 { width: 100%; }

  /* skills: 2 col */
  .pie-chart-main { width: 50%; float: left; padding: 0 10px; }

  /* team */
  .team-card img { width: 90px; height: 90px; }

  /* CTA */
  #cta h2 { font-size: 26px; }
  #cta p  { font-size: 15px; }

  /* contact quick items full width */
  .contact-quick-item { width: 100%; justify-content: flex-start; }

  /* form: 1 col */
  #contactForm .col-md-4,
  #contactForm .col-md-6 { width: 100%; }

  /* footer */
  .social-icons { justify-content: flex-start; margin-top: 14px; }
  .copyright p { line-height: 1.7; }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE  ≤ 480px
   ================================================================ */

@media (max-width: 480px) {
  .big   { font-size: 22px; }
  .small { font-size: 13px; }
  .home .flexslider .slides img { height: 340px; }
  .pie-chart-main { width: 100%; float: none; }
  .facts-box h3 { font-size: 36px; }
}

/* ================================================================
   DESKTOP  ≥ 992px  — always show menu
   ================================================================ */

@media (min-width: 992px) {
  #main-menu.collapse { display: block !important; }
  .navbar-toggle { display: none !important; }
}

/* tablet */
@media (max-width: 991px) {
  #facts .col-md-3 {
    flex: 1 1 calc(50% - 24px);
  }
}

/* mobile */
@media (max-width: 576px) {
  #facts .col-md-3,
  #facts .col-sm-6 {
    flex: 1 1 100%;
  }
}

/* TABLET → 2 per row */
@media (max-width: 991px) {
  #services .col-md-4 {
    flex: 1 1 calc(50% - 24px);
  }
}

/* MOBILE → 1 per row */
@media (max-width: 576px) {
  #services .col-md-4,
  #services .col-sm-6 {
    flex: 1 1 100%;
  }
}


/* =========================
   TECH STACK (PARALLAX BLUE STYLE)
========================= */

.tech-section {
  position: relative;
  background: url('../images/page-header.jpg') no-repeat center center;
  background-size: cover;
  padding: 110px 0;
}

/* overlay (same as facts/cta style) */
.tech-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,12,25,0.85),
    rgba(10,12,25,0.75)
  );
}

/* keep content above overlay */
.tech-section .container {
  position: relative;
  z-index: 2;
}

/* TITLE WHITE */
.tech-section .title-box h2.title {
  color: #fff;
}

.tech-section .title-box p {
  color: rgba(255,255,255,0.7);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* CARD (glass style like facts) */
.tech-card {
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;

  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);

  transition: 0.3s ease;
}

/* hover */
.tech-card:hover {
  transform: translateY(-8px);
  border-color: rgba(39,174,96,0.5);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

/* ICON */
.tech-card i {
  font-size: 34px;
  color: #7dff9a;
  margin-bottom: 16px;
}

/* TITLE */
.tech-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

/* TEXT */
.tech-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}