*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  font-size: 62.5%; 
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #050b16;
  color: #ffffff;
}
/* nav starts from here  */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 96%;
  z-index: 9999;
  padding: 1.2rem 2rem; 
}

.nav-container {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.4rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  width: 90%;
}

/* INFO BOX SOLUTION – LOGO STYLES */
.logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;

  padding: 0.6rem 1.6rem;
  border-radius: 1.8rem;

  background: linear-gradient(
    180deg,
    rgba(10, 15, 35, 0.9),
    rgba(4, 8, 22, 0.95)
  );

  border: 0.1rem solid rgba(255,255,255,0.08);
  box-shadow: 0 0 2.4rem rgba(0,229,255,0.18);
}

/* SVG container */
.logo-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1rem;

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

  background: radial-gradient(
    circle at top left,
    rgba(0,229,255,0.35),
    rgba(2,132,199,0.6)
  );

  box-shadow:
    0 0 1.6rem rgba(0,229,255,0.6),
    inset 0 0 0 0.1rem rgba(255,255,255,0.25);
}

/* SVG itself */
.logo-icon img {
  width: 2rem;
  height: 2rem;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 0.6rem rgba(0,229,255,0.8));
}

/* Brand text */
.logo span {
  font-size: 2.2rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04rem;

  background: linear-gradient(
    90deg,
    #00e5ff,
    #60a5fa
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  animation: logoGradientMove 6s linear infinite;
}

/* Emphasis word */
.logo strong {
  font-weight: 500;

  /* Dark → purple gradient */
  background: linear-gradient(
    90deg,
    #1e1b4b,   /* deep indigo (dark base) */
    #3b1579,   /* rich purple */
    #a78bfa,   /* soft violet highlight */
    #6d28d9,
    #1e1b4b
  );
  background-size: 300% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  animation: logoStrongGradient 15s linear infinite;
}

/* Smooth gradient motion */
@keyframes logoStrongGradient {
  from { background-position: 0% 50%; }
  to   { background-position: 300% 50%; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .logo strong {
    animation: none;
  }
}

/* Gradient animation */
@keyframes logoGradientMove {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .logo span {
    animation: none;
  }
}


/* NAV LINKS  */
.nav-links {
  display: flex;
  gap: 2.4rem;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  padding: 0.8rem 1.8rem;
  border-radius: 2.4rem;
  transition: color 0.3s ease;
}

/*  Animated Glow Hover */
.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  opacity: 0;
  filter: blur(1.4rem);
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-links a:hover {
  color: #e0faff;
}

.nav-links a:hover::before {
  opacity: 1;
}

/* Active */
.nav-links a.active {
  color: #e0faff;
  background: rgba(0, 229, 255, 0.12);
  box-shadow: 0 0 1.2rem var(--primary-soft);
}

.menuClose{
  display: none;
  width: 5rem;
height: auto;
    filter: brightness(0) invert(1);
}
.navMenuOpen{
    display: none;
    width: 5rem;
height: auto;
    filter: brightness(0) invert(1);
}
/* aside link for small screens */
/* aside link for small screens */
aside{
  position: fixed;
  top: 7.5rem; /* below navbar */
  right: 2rem;
  width: 90%;
  max-width: 32rem;
  height: auto;
  margin: 2rem auto;

  /* glass effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;

  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.4rem;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: all 0.3s ease;
  z-index: 9998;
}

/* when aside is open */
aside.active{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

aside > a{
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  color: #e5e7eb;

  padding: 1.2rem 1.6rem;
  border-radius: 1.4rem;

  /* glass look */

  border: 1px solid rgba(255, 255, 255, 0.12);

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

  transition: 
    background 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}



/* active / current link */
aside > a.active{
  color: #00f6ff;
  background: rgba(0, 246, 255, 0.18);
  box-shadow: 0 0 2.4rem rgba(0, 246, 255, 0.45);
}

/* subtle divider effect */
aside > a:not(:last-child){
  position: relative;
}

aside > a:not(:last-child)::after{
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 10%;
  width: 80%;
  height: 0.1rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.15),
    transparent
  );
}

/* nav ends here  */

/* impact starts here  */
.impact {
  padding: 17rem 2.4rem 25rem;

  background:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 96%),
    #0a086b;
  background-size: 4rem 4rem;

}

/* 
   HEADER
*/
.impact-header {
  max-width: 90rem;
  margin: 10rem auto 7rem;
  text-align: center;
}

.impact-badge {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.6rem 1.8rem;

  font-size: 1.3rem;
  font-weight: 500;

  color: #22d3ee;
  border-radius: 999rem;

  background: rgba(34,211,238,0.12);
  border: 0.1rem solid rgba(34,211,238,0.45);

  box-shadow: 0 0 2.4rem rgba(34,211,238,0.35);

  animation: fadeDown 0.8s ease both;
}

/* TITLE */
.impact-title {
  font-size: 4.6rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 2rem;

  animation: fadeUp 1s ease both;
}

.impact-title span {
  background: linear-gradient(
    90deg,
    #00e5ff,
    #8b5cf6,
    #00e5ff
  );
  background-size: 200% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  animation: gradientFlow 6s linear infinite;
}

/* DESCRIPTION */
.impact-description {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #cbd5f5;

  animation: fadeUp 1.2s ease both;
}

/* 
   GRID
*/
.impact-grid {
  max-width: 120rem;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
}

/* 
   CARD
*/
.impact-card {
  text-align: center;
  padding: 3.2rem 2.4rem;

  background: rgba(2,6,23,0.85);
  border-radius: 2.4rem;

  box-shadow:
    inset 0 0 0 0.1rem rgba(255,255,255,0.06);

  animation: fadeUp 1.4s ease both;
}

/* NUMBER */
.impact-card h3 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;

  background: linear-gradient(
    90deg,
    #00e5ff,
    #38bdf8,
    #6366f1
  );
  background-size: 200% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  animation: gradientFlow 5s linear infinite;

  text-shadow:
    0 0 2.4rem rgba(56,189,248,0.35);
}

/* LABEL */
.impact-card p {
  font-size: 1.4rem;
  color: #94a3b8;
}

/* 
   ANIMATIONS
*/
@keyframes gradientFlow {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}

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

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* impact end here  */

/* ===============================
   WORKING HOURS
================================ */
.working-hours {
  padding: 8rem 2.4rem 10rem;

  background:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 96%),
    #020617;

  background-size: 4rem 4rem;
}

/* HEADER */
.working-header {
  text-align: center;
  margin-bottom: 6rem;
}

.working-title {
  font-size: 4.6rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.working-title span {
  background: linear-gradient(90deg, #00e5ff, #6366f1);
  -webkit-background-clip: text;
    background-clip: text;
  color: transparent;

  animation: gradientFlow 6s linear infinite;
}

.working-subtitle {
  font-size: 1.6rem;
  color: #94a3b8;
}

/* ===============================
   CARD
================================ */
.schedule-card {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4.8rem;

  border-radius: 2.8rem;
  text-align: center;

  background: rgba(2,6,23,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    inset 0 0 0 0.1rem rgba(255,255,255,0.06),
    0 0 6.4rem rgba(99,102,241,0.15);

  animation: fadeUp 1s ease both;
}

/* ICON */
.schedule-icon {
  width: 6.4rem;
  height: 6.4rem;
  margin: 0 auto 2rem;

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

  border-radius: 1.6rem;

  background: radial-gradient(circle, #00e5ff, #0284c7);
  box-shadow: 0 0 3.6rem rgba(0,229,255,0.6);
}

.schedule-icon img {
  width: 3.2rem;
  height: 3.2rem;
  filter: brightness(0) invert(1);
}

/* TITLE */
.schedule-title {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

.schedule-note {
  font-size: 1.4rem;
  color: #94a3b8;
  margin-bottom: 3.2rem;
}

/* ===============================
   LIST
================================ */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1.6rem 2rem;
  border-radius: 1.6rem;

  background: rgba(255,255,255,0.03);
  border: 0.1rem solid rgba(255,255,255,0.08);
}

.schedule-row.active {
  border-color: rgba(0,229,255,0.45);
  box-shadow: 0 0 2.4rem rgba(0,229,255,0.2);
}

.day {
  display: flex;
  align-items: center;
  gap: 1.2rem;

  font-size: 1.5rem;
}

.day img {
  width: 2rem;
  height: 2rem;
  filter: brightness(0) invert(1);
}

/* TIME BADGES */
.time {
  padding: 0.6rem 1.4rem;
  border-radius: 999rem;

  font-size: 1.3rem;
  font-weight: 500;
}

.time.open {
  color: #020617;
  background: linear-gradient(90deg, #00e5ff, #38bdf8);
}

.time.closed {
  color: #ffffff;
  background: linear-gradient(90deg, #a855f7, #6366f1);
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes gradientFlow {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

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

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}

/* work ends here */

/* accomplishment */

.accomplishments {
  padding: 8rem 6rem;
    background:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 96%),
    #020617;

  background-size: 4rem 4rem;
  
}

/* =======================
   HEADER
======================= */
.header {
  text-align: center;
  margin-bottom: 6rem;
}

.header h2 {
  font-size: 4rem;
  font-weight: 700;
}

.header h2 span {
  background: linear-gradient(90deg, #00c2ff, #8b5cf6);
  -webkit-background-clip: text;
    background-clip: text;
  color: transparent;
}

.header p {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  color: #9fb4cc;
}

/* =======================
   GRID
======================= */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr ;
  gap: 3rem;
}

/* =======================
   CARD
======================= */
.card {
  position: relative;
  padding: 3rem;
  border-radius: 1.6rem;
  background: linear-gradient(
    180deg,
    rgba(14, 28, 50, 0.9),
    rgba(6, 14, 30, 0.9)
  );
  border: 0.1rem solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1.4rem);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 0 3.2rem rgba(0, 194, 255, 0.18);
}

/* =======================
   YEAR BADGE
======================= */
.year {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0.4rem 1.2rem;
  font-size: 1.2rem;
  border-radius: 10rem;
  background: rgba(255,255,255,0.08);
  color: #cfe9ff;
}

/* =======================
   ICON
======================= */
.icon-ac {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1.2rem;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #00e5ff, #0284c7);
  box-shadow: 0 0 3.2rem rgba(0,229,255,0.6);
  margin-bottom: 2.4rem;
}

.icon-ac img {
  width: 2.4rem;
  height: 2.4rem;
    filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 0.6rem rgba(0,229,255,0.8));

}

/* =======================
   TEXT
======================= */
.card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.card p {
  font-size: 1.4rem;
  color: #a9bfd6;
  line-height: 1.6;
}



/* accomplishments end here  */

/* solution starts here */
.solutions {
  padding: 8rem 6rem;
      background:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 96%),
    #020617;

  background-size: 4rem 4rem;
}

/* =======================
   HEADER
======================= */
.solutions-header {
  text-align: center;
  margin-bottom: 6rem;
}

.solutions-header h2 {
  font-size: 4rem;
  font-weight: 700;
}

.solutions-header h2 span {
  background: linear-gradient(90deg, #00c2ff, #6366f1);
  -webkit-background-clip: text;
    background-clip: text;
  color: transparent;
}

.solutions-header p {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  color: #9fb4cc;
}

/* =======================
   GRID
======================= */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
  gap: 3rem;
}

/* =======================
   CARD
======================= */
.solution-card {
  padding: 3.6rem 3rem;
  text-align: center;
  border-radius: 1.8rem;
  background: linear-gradient(
    180deg,
    rgba(14, 28, 50, 0.9),
    rgba(6, 14, 30, 0.9)
  );
  border: 0.1rem solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1.4rem);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.solution-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 0 3.2rem rgba(0, 194, 255, 0.18);
}

/* =======================
   ICON
======================= */
.icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 1.4rem;
  background: rgba(0, 194, 255, 0.15);
  box-shadow: 0 0 2.6rem rgba(0, 194, 255, 0.55);
}

.icon img {
  width: 2.6rem;
  height: 2.6rem;
    filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 0.6rem rgba(0,229,255,0.8));
}

/* =======================
   TEXT
======================= */
.solution-card h3 {
  font-size: 2.6rem;
  color: #2dd4ff;
  margin-bottom: 0.8rem;
}

.solution-card strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.solution-card p {
  font-size: 1.3rem;
  color: #a9bfd6;
  line-height: 1.6;
}
/* solution ends here */

/* footer section */
.footer {
  background:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 96%),
    #04060e;
  background-size: 4rem 4rem;
  padding: 6rem 3.2rem 3rem;
  color: #cbd5f5;
}

.footer-container {
  max-width: 120rem;
  margin: auto;
}

/* Top section */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 30.8rem;
  margin: 0rem auto;
  padding: 0.6rem 1rem;
  border-radius: 1.8rem;

  background: linear-gradient(
    180deg,
    rgba(10, 15, 35, 0.9),
    rgba(4, 8, 22, 0.95)
  );

  border: 0.1rem solid rgba(255,255,255,0.08);
  box-shadow: 0 0 2.4rem rgba(0,229,255,0.18);
}

/* SVG container */
.footer-logo-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1rem;

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

  background: radial-gradient(
    circle at top left,
    rgba(0,229,255,0.35),
    rgba(2,132,199,0.6)
  );

  box-shadow:
    0 0 1.6rem rgba(0,229,255,0.6),
    inset 0 0 0 0.1rem rgba(255,255,255,0.25);
}

/* SVG itself */
.footer-logo-icon img {
  width: 2rem;
  height: 2rem;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 0.6rem rgba(0,229,255,0.8));
}

/* Brand text */
.footer-logo span {
  font-size: 2.2rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04rem;

  background: linear-gradient(
    90deg,
    #00e5ff,
    #60a5fa
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
    background-clip: text;
  color: transparent;

  animation: logoGradientMove 6s linear infinite;
}
/* Gradient animation */
@keyframes logoGradientMove {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .footer-logo span {
    animation: none;
  }
}
/* Emphasis word */
.footer-logo >span >strong {
  font-weight: 500;

  background: linear-gradient(
    90deg,
    #1e1b4b,   /* deep indigo */
    #6d28d9,   /* rich purple */
    #a78bfa,   /* soft violet */
    #6d28d9,
    #1e1b4b
  );
  background-size: 300% 100%;

  -webkit-background-clip: text;
    background-clip: text;
  color: transparent;

  animation: footerLogoGradient 15s linear infinite;
}

@keyframes footerLogoGradient {
  from { background-position: 0% 50%; }
  to   { background-position: 300% 50%; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .footer-logo strong {
    animation: none;
  }
}



.footer-brand p {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 40rem;
  text-align: center;
  margin: 0rem auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  color: #7dd3fc;
}

.footer-logo strong {
  color: #a78bfa;
}

/* Links */
.footer-links h4 {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  color: #e5e7eb;
}

.footer-links a {
  display: block;
  font-size: 1.4rem;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00e5ff;
}

/* Divider */
.footer-divider {
  margin: 4rem 0 2.4rem;
  height: 0.1rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-size: 1.3rem;
  color: #94a3b8;
}

.heart {
  color: #ef4444;
  margin-inline: 0.2rem;
}

