@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Fraunces", "Manrope", Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: var(--font-sans);
  background-color: #f4f6fa;
  overflow-x: hidden;
}

nav,
footer {
  font-family: Arial, sans-serif;
}

.hero-section,
.blurry-hero,
main {
  font-family: var(--font-sans);
}

.hero-section h1,
.blurry-hero h1,
main h1,
main h2,
main h3 {
  font-family: var(--font-display);
}

h1 {
  text-align: center;
  margin: 20px;
  color: black;
}

nav>ul>li {
  position: relative;
}


nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #babcbd;
  min-width: 220px;
  z-index: 999;
}

nav ul li:hover>ul {
  display: block;
}

nav ul li ul li a {
  display: block;
  padding: 12px 16px;
  color: white;
  text-decoration: none;
  background-color: rgba(36, 96, 131, 0.76);
}

nav ul li ul li a:hover {
  background-color: #2b6a8f;
}


/* footer {
background: linear-gradient(135deg, #0c0f19, #1e2640, #353d6e, #4c53a1);

  color: white;
  padding: 40px;
  margin-top: 40px;
  text-align: left;
} */

footer h2 {
  margin-bottom: 20px;
}

footer div.rights {
  text-align: center;
}


footer form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  width: 100%;
  flex: 1;
}


footer input,
footer textarea {
  margin-bottom: 15px;
  /* padding: 10px;
  border: none;
  border-radius: 5px; */
}

/* footer input[type="submit"] {
  background-color: #00b31e;
  color: white;
  cursor: pointer;
  transition: 0.3s;
} */

/* footer input[type="submit"]:hover {
  background-color: #0073e6;
} */

.rights {
  margin-top: 30px;
  font-size: 14px;
  color: #ccc;
}

/* Gallery Section */
.hero-gallery {
  background-color: #f9f9f9;
  padding: clamp(0.75rem, 2.5vw, 1.5rem) 0;
  position: relative;
  overflow: hidden;
}

/* Gallery Wrapper */
.gallery-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* Scrollable Area */
.gallery {
  display: flex;
  transition: transform 0.5s ease-in-out;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: clamp(0.75rem, 2.5vw, 1.25rem);
  /* ✅ Space around */
  gap: 20px;
  /* ✅ Spacing between images */
}

.gallery::-webkit-scrollbar {
  display: none;
}

.gallery img {
  flex: 0 0 min(560px, 88vw);
  scroll-snap-align: center;
  object-fit: cover;
  width: 100%;
  height: clamp(220px, 42vh, 420px);
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.02);
}

/* Navigation Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 0.35em 0.6em;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.arrow:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* ✅ Tablet */
@media (max-width: 1024px) {
  .gallery {
    gap: 15px;
  }

  .gallery img {
    flex: 0 0 min(520px, 90vw);
    height: clamp(210px, 36vh, 360px);
    object-fit: cover;
    object-position: center center;
  }
}

/* ✅ Mobile */
@media (max-width: 768px) {
  .gallery {
    padding: clamp(0.5rem, 3vw, 1rem) !important;
    gap: clamp(0.6rem, 3vw, 1rem) !important;
  }

  .gallery img {
    flex: 0 0 92vw;
    height: clamp(190px, 30vh, 320px);
    border-radius: 10px;
    object-fit: cover;
    object-position: center center;
  }

  .arrow {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    padding: 0.25em 0.4em;
  }
}

/* ✅ Small Phones */
@media (max-width: 480px) {
  .gallery img {
    flex: 0 0 94vw;
    height: clamp(170px, 26vh, 280px);
    object-fit: cover;
    object-position: center center;
  }

  .arrow {
    font-size: clamp(1.1rem, 6vw, 1.4rem);
    padding: 0.2em 0.35em;
  }
}


.home-section {
  padding: 4rem 2rem;
  background: #f5f7fa;
  color: #333;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--font-sans);
}

.home-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0b3d91;
  font-weight: 800;
  font-family: var(--font-display);
}

.home-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.why-choose {
  margin-top: 2.4rem;
}

.why-choose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  color: #0b2a4a;
  margin-bottom: 1rem;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.choose-grid li {
  background: #ffffff;
  border: 1px solid rgba(11, 42, 74, 0.12);
  border-radius: 14px;
  padding: 14px 18px 14px 58px;
  text-align: left;
  font-weight: 700;
  color: #0b2a4a;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
}

.choose-grid li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4e8fff, #955cff);
  box-shadow: 0 10px 20px rgba(120, 90, 255, 0.25);
}

@media (max-width: 768px) {
  .choose-grid li {
    min-height: 58px;
    padding: 12px 16px 12px 54px;
  }
}


.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #072e70;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #072e70;
  transition: ease 0.5ms;
}

@media (max-width: 768px) {
  .home-title {
    font-size: 2rem;
  }

  .home-paragraph {
    font-size: 1rem;
  }
}

.main {
  width: 100vw;
  /* Take full width of the screen */
  margin: 0;
  /* No side margins */
  padding: 0;
  background-color: #fff;
  /* Or change as needed */
  border-radius: 0;
  /* Remove curved edges */
}


.home-section,
.industries-section,
.testimonial-section {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
}

.home-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  font-family: var(--font-display);
  color: #0b3d91;
  margin-bottom: 1rem;
}

.home-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 1rem 0;
}

.home-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.home-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
}

.cta-section {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.cta-button,
.cta-secondary-button {
  padding: 0.75rem 1.5rem;
  background-color: #0071ce;
  color: white;
  border: none;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  ;
}


.cta-secondary-button:hover {
  background-color: #005caa;
  transition: ease 0.2ms;

}

blockquote {
  background: #fff;
  padding: 1rem;
  border-left: 4px solid #0071ce;
  margin: 1rem 0;
  font-style: italic;
}

cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.industries-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.industries-text {
  flex: 1 1 60%;
}

.industries-image {
  flex: 1 1 35%;
  text-align: right;
}

.industries-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

form {
  text-align: left;
}

ul.home-list {
  background-color: #ffffff;
  margin: 0;
  padding: 5px;
  text-align: left;
  justify-content: center;
  width: auto;
  border-radius: 20px;
  font-weight: bold;
}

ul.home-list:hover {
  background-color: #ebe8e8;
  cursor: pointer;
  transition: ease 0.666ms;
}

section.testimonial-section blockquote:hover {
  background-color: #f5f3f3;
  cursor: pointer;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-contact-right {
  max-width: 350px;
  text-align: right;
  color: white;
}

.footer-contact-right h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
}

.footer-contact-right p {
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 6px 0;
}

@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
  }

  .footer-contact-right {
    text-align: left;
    margin-top: 20px;
  }
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 2rem 0;
  transition: transform 0.3s ease;
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-5px);
  background-color: #fdfdfd;
}

.gradient-section {
  background: linear-gradient(90deg, #f2f9ff 0%, #dbebfa 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  margin: 2rem 0;
  text-align: left;
}


.gradient-section h2,
.feature-card h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 1rem;
}

.gradient-section p,
.feature-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.gradient-section ol.home-list li {
  list-style-position: inside;
}

.blurry-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 64px);
  color: #ffffff;
  isolation: isolate;
  overflow: hidden;

  --hero-blur: 2px;
  --hero-sat: 160%;
  --hero-overlay: rgba(6, 18, 40, 0.55);
  --accent-1: rgba(76, 139, 255, 0.35);
  --accent-2: rgba(205, 92, 255, 0.22);
  --accent-3: rgba(50, 255, 204, 0.18);
  --mx: 70%;
  --my: 30%;
  --overlay-fade: 1600ms;
  --blur-duration: 1800ms;
  --blur-delay: 700ms;
  --blur-max: 28px;

  background:
    url("images/3d_vector2.png") center / contain no-repeat,
    url("images/head9_back.png") center / cover no-repeat,
    radial-gradient(60% 60% at var(--mx) var(--my), var(--accent-1), transparent 60%),
    radial-gradient(80% 70% at 20% 70%, var(--accent-2), transparent 60%),
    linear-gradient(180deg, #0b1630 0%, #091436 40%, #0c1a3d 100%);
  background-blend-mode: screen, normal, screen, screen, normal;
}

.blurry-hero::before {
  content: "";
  position: absolute;
  inset: -15% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(28% 24% at 12% 20%, rgba(70, 150, 255, 0.45), transparent 60%),
    radial-gradient(34% 28% at 84% 68%, rgba(215, 70, 255, 0.45), transparent 65%),
    radial-gradient(18% 16% at 58% 32%, rgba(52, 255, 204, 0.25), transparent 70%),
    conic-gradient(from 160deg at 50% 50%, rgba(255,255,255,0.06), rgba(255,255,255,0));
  filter: blur(34px);
  mix-blend-mode: screen;
  animation: auroraHeroSweep 22s ease-in-out infinite alternate;
}

@media (max-width: 768px) {
  .blurry-hero {
    height: 60vh !important;
  }
}

.blurry-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg,
      rgba(7, 19, 40, 0.72) 0%,
      rgba(7, 19, 40, 0.62) 35%,
      rgba(12, 24, 50, 0.52) 65%,
      rgba(16, 30, 60, 0.40) 100%);
  -webkit-backdrop-filter: blur(var(--hero-blur)) saturate(var(--hero-sat));
  backdrop-filter: blur(var(--hero-blur)) saturate(var(--hero-sat));
  will-change: backdrop-filter;
  opacity: 0;
  animation: heroOverlayFade var(--overlay-fade) ease-out forwards,
             heroBlurGrow var(--blur-duration) ease-in var(--blur-delay) forwards;
}

.blurry-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  transform: translateY(12px);
  opacity: 0;
}

.blurry-content.ready {
  animation: heroContentIn 400ms ease-out forwards;
}

.glass-card {
  margin: 0 auto;
  display: inline-block;
  text-align: left;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: 16px;
  color: #eaf1ff;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -6px 12px rgba(0, 0, 0, 0.18);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient( to bottom, rgba(255,255,255,0.45), rgba(255,255,255,0.0) 35% );
  opacity: 0.65;
}

.glass-card h1 {
  margin-top: 0;
}

.blurry-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.2px;
  background: linear-gradient(90deg,
      #4386f7 0%,
      #7a5cff 25%,
      #c958e5 50%,
      #ff3c7d 75%,
      #ff8c2f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.blurry-content p {
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.blurry-hero .cta-button {
  display: block;
  margin: 1rem auto 0;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  color: #0e1b3c;
  background: linear-gradient(135deg, #9ed0ff 0%, #a4a0ff 55%, #ff93c1 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blurry-hero .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

@media (max-width: 768px) {
  .blurry-hero {
    min-height: 60vh;
    padding: 24px;
  }
}

#typing-hero {
  display: inline-block;
  white-space: nowrap;
  overflow: visible;
  min-height: 2.2rem;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(20, 60, 140, 0.25);
}

@keyframes heroOverlayFade {
  to {
    opacity: 1;
  }
}

/* Register animatable custom property for blur (Chromium/Safari) */
@property --hero-blur {
  syntax: '<length>';
  inherits: false;
  initial-value: 2px;
}

/* Hold the clear image, then increase blur smoothly */
@keyframes heroBlurGrow {
  0%   { --hero-blur: 2px; }
  45%  { --hero-blur: 2px; }
  100% { --hero-blur: var(--blur-max); }
}

/* Aurora motion layer */
@keyframes auroraHeroSweep {
  0%   { transform: translateX(-3%) translateY(0) scale(1); }
  50%  { transform: translateX(4%) translateY(-2%) scale(1.05); }
  100% { transform: translateX(-3%) translateY(0) scale(1); }
}

@keyframes heroContentIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .blurry-overlay,
  .blurry-content {
    animation: none;
    transform: none;
  }
  .blurry-hero::before {
    animation: none;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .blurry-overlay {
    background: linear-gradient(180deg, rgba(8, 16, 36, 0.85), rgba(8, 16, 36, 0.65));
  }
}

.tally-style-section {
  padding: 3rem 2rem;
  background: #f1f7fd;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 1200px;
}


.tally-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.tally-container.reverse {
  flex-direction: row-reverse;
}

.tally-text {
  flex: 1 1 60%;
  color: #003366;
}

.tally-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tally-text p,
.tally-text blockquote {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tally-text cite {
  display: block;
  font-size: 0.9rem;
  color: #555;
}

.tally-image {
  flex: 1 1 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tally-image img {
  max-width: 100%;
  width: 220px;
  height: auto;
  opacity: 0.95;
  transition: transform 0.3s ease;
}

.tally-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .tally-container {
    flex-direction: column;
    text-align: center;
  }

  .tally-image {
    margin-top: 1rem;
  }
}

.tally-container.reverse .tally-image img {
  width: 300px;
}

p#tel,
p#email {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}


p#tel a,
p#email a {
  text-decoration: none;
  cursor: pointer;
  color: white;
  display: block;
}

img.gmail {
  width: 50px;
  height: 40px;
}

/* 1nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  height: 50px;
} */

nav ul {
  display: flex;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-size: small;
}

.call-icon {
  background: linear-gradient(rgb(178, 173, 247), rgb(144, 215, 228), rgb(67, 234, 178));
  backdrop-filter: blur(2px) saturate(150%);
  color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: rgba(11, 61, 145, 0.3) 0px 4px 10px;
}

a.call-icon {
  /* text-decoration: underline; */
  color: whitesmoke;
}

a.call-icon:hover {
  /* text-decoration: none; */
  transition: ease 0.2ms;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.85rem, 2.2vw, 1.35rem) 0;
  background: linear-gradient(130deg,
      rgba(230, 177, 177, 0.32),
      rgba(241, 207, 165, 0.32),
      rgba(194, 233, 155, 0.32),
      rgba(166, 218, 247, 0.32),
      rgba(197, 163, 241, 0.32));
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  overflow: hidden;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 260px at 50% -10%, rgba(255, 255, 255, 0.65), transparent 60%),
    radial-gradient(900px 260px at 50% 120%, rgba(30, 40, 70, 0.10), transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1rem, 4vw, 2rem);
  padding: 0 clamp(1rem, 4vw, 3rem);
  width: 100%;
  max-width: 1200px;
}

.hero-logo {
  width: clamp(56px, 6vw, 90px);
  height: clamp(56px, 6vw, 90px);
  border-radius: 18px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.hero-text {
  text-align: center;
  color: #1f2a44;
}

.hero-title {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  color: transparent;
  filter: drop-shadow(0 10px 18px rgba(30, 40, 70, 0.25));
}

.hero-tagline {
  margin-top: 0.45rem;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(31, 42, 68, 0.76);
  text-shadow: none;
}


/* This is a responsive header layout  */
@media (max-width: 768px) {
  .hero-section {
    min-height: unset;
  }

  .hero-content {
    gap: 0.85rem;
  }
}
/* new blurry section */
.blurry-hero {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 52vh, 520px);
  display: grid;
  place-items: center;
  padding: clamp(1.4rem, 4vw, 3rem) 0;
  color: #ffffff;
  isolation: isolate;
  overflow: hidden;

  background:
    radial-gradient(900px 380px at 20% 30%, rgba(76, 139, 255, 0.25), transparent 60%),
    radial-gradient(900px 380px at 80% 20%, rgba(205, 92, 255, 0.18), transparent 60%),
    radial-gradient(900px 420px at 60% 90%, rgba(50, 255, 204, 0.12), transparent 60%),
    linear-gradient(90deg, #0c1630 0%, #17123f 45%, #1b1444 100%);
}

.blurry-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 340px at 50% -20%, rgba(255, 255, 255, 0.14), transparent 60%),
    radial-gradient(900px 340px at 50% 120%, rgba(0, 0, 0, 0.62), transparent 55%);
  opacity: 1;
  animation: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.blurry-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 clamp(1rem, 4vw, 2rem);
  opacity: 1;
  transform: none;
  animation: none;
}

.glass-card {
  width: min(980px, 100%);
  position: relative;
  border-radius: 20px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: rgba(14, 20, 45, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  text-align: center;
}

.blurry-kicker {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: rgba(235, 240, 255, 0.82);
}

.blurry-title {
  margin-top: 0.35rem;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  font-family: var(--font-display);
  color: #ffffff;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

#typing-hero {
  background: linear-gradient(90deg,
      #4386f7 0%,
      #7a5cff 22%,
      #c958e5 45%,
      #ff3c7d 68%,
      #ff8c2f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}

.blurry-hero p {
  margin-top: 0.65rem;
  font-weight: 600;
  color: rgba(235, 240, 255, 0.78);
}

.blurry-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.blurry-actions .cta-button {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blurry-actions .cta-secondary-button {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.blurry-actions .cta-secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .glass-card {
    border-radius: 16px;
  }
}

/* responsive layout ends here  */


.shimmer-text {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg,
      #4386f7 0%,
      /* Blue */
      #7a5cff 20%,
      /* Purple */
      #c958e5 40%,
      /* Pink-Purple */
      #ff3c7d 60%,
      /* Pink-Red */
      #ff6a4d 80%,
      /* Red-Orange */
      #ff8c2f 100%
      /* Orange */
    );
  background-clip: text;
  -webkit-background-clip: text;
  /* Safari */
  color: transparent;
}

/* === put this at the END of style.css === */

.faq-section {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
  margin: 2rem 0;
}

.faq-section h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  color: #003366;
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid rgba(0, 51, 102, 0.14);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(242, 249, 255, 0.85), rgba(255, 255, 255, 1));
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #0b2a4a;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 800;
  color: rgba(0, 51, 102, 0.7);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 0.65rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.72);
}

.services {
  padding: 4rem 2rem;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h5 {
  color: #6c63ff;
}

.section-title h2 {
  font-size: 2rem;
}

.highlight {
  color: #ff61d2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

/* chat-banner */
.chat-banner.style-9 {
  position: relative;
  padding: 180px 0;
  background-image: url(images/head9_back.png);
  background-size: contain;
  background-position: center;
}

.chat-banner.style-9 .container {
  position: relative;
  z-index: 10;
}

.chat-banner.style-9 .img_back {
  position: absolute;
  left: 0;
  top: -50px;
  bottom: -50px;
  width: 100%;
  height: calc(100% + 100px);
  max-height: unset;
  pointer-events: none;
  -o-object-fit: contain;
  object-fit: contain;
}

.chat-banner.style-9 .section-head h6::after,
.chat-banner.style-9 .section-head h6::before {
  background-color: #fff;
}

.slide_up_down {
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  /* Adjust movement distance */
  100% {
    transform: translateY(0);
  }
}

/* end  */
#touch {
  border: none;
  padding: 10px;
  margin: 10px;
  background-color: #183ee7;
  border-radius: 10px;
  color: wheat;
  font-weight: 600;
  cursor: pointer;
}

/* === NAVBAR LAYOUT FIX FOR NEWTECH STYLE ===    111 */
/* 2nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background: linear-gradient(to right, #125b85, #135566, rgb(105, 58, 82)); 
  height: 70px;
  position: relative;
  z-index: 999;
} */

nav .nav-left {
  display: flex;
  align-items: center;
}

nav .nav-left img {
  height: 45px;
  margin-right: 10px;
}

nav .nav-left .site-title {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 20px 10px;
  font-weight: 600;
  display: block;
}

nav ul li a:hover {
  border-bottom: 2px solid white;
}

/* Dropdown styling */
nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  display: none;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  z-index: 1000;
}

nav ul li:hover ul {
  display: block;
}

nav ul li ul li a {
  color: #333;
  background-color: white;
  padding: 12px 16px;
  font-weight: 500;
}

nav ul li ul li a:hover {
  background-color: #f5f5f5;
}

/* Responsive layout */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 1rem;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    background: linear-gradient(to right, #1c7eb6, #166275, rgb(192, 104, 148));
    margin-top: 10px;
  }

  nav ul li a {
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  nav ul li ul {
    position: static;
    box-shadow: none;
    border-radius: 0;
  }

  nav ul li ul li a {
    padding: 10px;
  }
}

/* === Mobile dropdown background fix === */
@media (max-width: 991px) {
  nav ul {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    /* Same as nav gradient */
    padding: 0;
  }

  nav ul li ul {
    background: rgba(30, 60, 120, 0.95);
    /* Dark overlay background for submenus */
    padding: 8px 0;
    border-radius: 6px;
    margin-top: 4px;
  }

  nav ul li ul li a {
    color: #fff;
    padding: 10px 16px;
    display: block;
  }

  nav ul li a {
    color: #fff;
    /* Main menu links on mobile */
    display: block;
    padding: 14px 16px;
  }
}

/* === Fix: Hide mobile nav by default === */
@media (max-width: 991px) {
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: 60px;
    /* Adjust if needed */
    left: 0;
    background: linear-gradient(90deg, #5a4264, #352c5e);
    z-index: 9999;
  }

  nav ul.show {
    display: block !important;
  }

  nav .nav-burger {
    display: inline-block;
  }
}

/* === Ensure nav burger is visible on mobile === */
@media (max-width: 991px) {
  .nav-burger {
    display: inline-block;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 16px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10000;
  }
}

/* === Force visibility of nav burger === */
.nav-burger {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10001;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  display: none;
  /* shown only on mobile via media query */
}

@media (max-width: 991px) {
  .nav-burger {
    display: inline-block;
  }

  nav {
    position: relative;
    /* to allow burger to be positioned inside */
    z-index: 9999;
  }
}

/* === Fix Navbar Visibility and Overlap === */
/* nav {
  background: linear-gradient(to right, #1c7eb6, #166275, rgb(192, 104, 148));
  z-index: 9999;
} */

/* === Hide NTCS logo in navbar on mobile === */
@media (max-width: 991px) {
  .nav-left {
    display: none !important;
  }

  .nav-burger {
    left: 16px !important;
    right: auto !important;
  }
}

.mobile-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background: #2f2d57;
  color: white;
  transition: left 0.4s ease;
  z-index: 99999;
  overflow-y: auto;
  padding: 1rem;
}

.mobile-panel.open {
  left: 0;
}

.mobile-panel .panel-header {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.mobile-panel ul.panel-list {
  list-style: none;
  padding: 0;
}

.mobile-panel .panel-item {
  margin: 0.5rem 0;
}

.mobile-panel .panel-item a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.mobile-panel .panel-item a:hover {
  text-decoration: underline;
}

.nav-burger {
  display: none;
}

@media (max-width: 991px) {
  .nav-burger {
    display: inline-block !important;
    font-size: 2rem;
    background: none;
    border: none;
    color: rgb(230, 215, 215);
    position: absolute;
    left: 10px;
    top: 15px;
    z-index: 10000;
  }
}

.mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: linear-gradient(to bottom right, #1c7eb6, #352c5e);
  color: white;
  z-index: 10000;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
  padding: 20px;
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-panel .panel-header {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  cursor: pointer;
}

.mobile-panel .panel-list {
  list-style: none;
  padding: 0;
}

.mobile-panel .panel-item {
  margin-bottom: 1rem;
}

.mobile-panel .panel-item a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

/* === FORCE nav alignment on all screens === */
/*removed  nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background: linear-gradient(to right, #1c7eb6, #166275, rgb(192, 104, 148));
  height: 70px;
  z-index: 1000;
  position: relative;
} */

nav .nav-left {
  display: flex;
  align-items: center;
}

nav .nav-left img {
  height: 45px;
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* === Hide logo on mobile, show burger on left === */
@media (max-width: 991px) {
  nav .nav-left {
    display: none !important;
  }

  .nav-burger {
    display: inline-block !important;
    position: absolute;
    left: 10px;
    top: 18px;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    z-index: 10001;
  }

  nav ul {
    display: none !important;
  }
}

/* === Mobile Panel Gap & Look === */
.mobile-panel {
  background: linear-gradient(to bottom right, #1c7eb6, #352c5e);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 9999;
}

/* === Fix NAV alignment for both desktop and mobile === */
/* removed nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: linear-gradient(to right, #292542, #2f5186, rgb(80, 40, 80));
  flex-wrap: wrap;
  position: relative;
  z-index: 999;
} */

/* Logo container */
.nav-left {
  display: flex;
  align-items: center;
}

/* Burger button styling */
.nav-burger {
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  display: none;
  /* show only on mobile */
  padding: 6px;
}

/* UL nav list */
nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove default margins */
nav ul li {
  position: relative;
}

/* === MOBILE ONLY RULES === */
@media (max-width: 991px) {
  .nav-burger {
    display: block;
    margin-right: auto;
  }

  .nav-left {
    display: none;
    /* Hide logo on mobile as per your previous request */
  }

  nav ul {
    display: none;
    /* Hide default nav links on mobile */
  }
}




/* cart button added from lib */
/* From Uiverse.io by Pankaj-Meharchandani */
.cart-button {
  position: relative;
  padding: 0.8em 0.7em;
  font-family: Courier, monospace;
  font-size: 1.1em;
  color: #4a4a4a;
  /* Dark gray for light theme */
  cursor: pointer;
  line-height: 1;
  background: transparent;
  border-radius: 0.77em;
  border: none;
  transition: transform 0.12s cubic-bezier(0.4, 0, 0.2, 1);

  transform-style: preserve-3d;
  isolation: isolate;
}

.glass-effect {
  position: absolute;
  inset: -0.45em;
  border-radius: 1rem;
  background: linear-gradient(165deg,
      rgba(0, 0, 0, 0.05),
      rgba(255, 255, 255, 0.2) 30%,
      rgba(255, 255, 255, 0.05) 80%,
      rgba(0, 0, 0, 0.02));
  z-index: -3;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px 1px rgba(0, 0, 0, 0.15),
    0 0 20px 1px rgb(200 200 200 / 60%);
  transition: box-shadow 0.12s ease;
}

.cart-button::before {
  content: "";
  position: absolute;
  inset: -0.8em;
  background: radial-gradient(circle at top center,
      rgba(255, 200, 135, 0.6) 0%,
      transparent 50%),
    radial-gradient(circle at top left,
      rgba(102, 190, 240, 0.6) 0%,
      transparent 50%),
    radial-gradient(circle at top right,
      rgba(255, 100, 100, 0.6) 0%,
      transparent 50%),
    radial-gradient(circle at bottom center,
      rgba(147, 112, 190, 0.6) 0%,
      transparent 80%);
  border-radius: inherit;
  filter: blur(0.3em);
  opacity: 0.9;
  z-index: -2;
  transition: all 0.12s ease;
}

.cart-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#f0f0f0, #e0e0e0);
  border-radius: inherit;
  z-index: -1;
}

.button-text {
  position: relative;
  background: linear-gradient(#e0e0e0, #f0f0f0);
  padding: 0.85em 1.4em;
  border: none;
  border-radius: 999em;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  z-index: 2;
  transition: all 0.12s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-weight: 800 !important;
}

.cart-button:hover {
  transform: translateY(-2px);
}

.cart-button:hover .glass-effect {
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    inset 0 -1px 1px rgba(0, 0, 0, 0.15),
    0 0 30px 2px rgb(220 220 220 / 70%);
}

.cart-button:hover::before {
  opacity: 1;
  filter: blur(0.4em);
  transform: scale(1.05);
}

.cart-button:hover .button-text {
  transform: scale(1.02);
}

.cart-button:active {
  transform: translateY(3px) scale(0.95);
  transition: transform 0.08s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-button:active .glass-effect {
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    inset 0 -1px 1px rgba(0, 0, 0, 0.1),
    0 0 15px 0 rgb(200 200 200 / 50%);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.cart-button:active::before {
  opacity: 1;
  filter: blur(1em);
  transform: scale(1.1);
  inset: -0.45em;
  transition: all 0.08s ease;
}

.cart-button:active .button-text {
  transform: scale(0.92);
  background: linear-gradient(#ececec, #dcdcdc);
  transition: all 0.08s ease;
}


/* this is a responsive button for mobile */
@media (max-width: 991px) {
  .cart-button {
    font-size: 0.8rem !important;
    /* readable but smaller than desktop */
    padding: 6px 10px !important;
    /* touch-friendly padding */
    border-radius: 6px !important;
    /* neat rounded corners */
  }

  .button-text {
    font-size: 0.85rem !important;
    /* slightly larger for clarity */
    padding: 6px 12px !important;
    /* balanced inner padding */
  }

  .cart-button::before {
    inset: -4px !important;
    /* moderate glow */
    filter: blur(4px) !important;
  }

  .glass-effect {
    inset: -3px !important;
    border-radius: 8px !important;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1) !important;
    /* softer shadow */
  }
}


img#backimg {
  z-index: 100;
}






/* new css for footer  */
/* === FINAL Play-Store-Quality Liquid Glass Footer === */

footer {
  position: relative;
  padding: 50px 40px;
  color: #f4f7ff;
  overflow: hidden;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;

  /* Clean glass — less fog, sharper */
  background: rgba(22, 24, 35, 0.38);
  backdrop-filter: blur(14px) saturate(185%);
  -webkit-backdrop-filter: blur(14px) saturate(185%);
  border-top: 1px solid rgba(255, 255, 255, 0.10);

  /* Soft inner rim glow — cleaner */
  box-shadow:
    inset 0 0 28px rgba(0, 0, 0, 0.35),
    0 8px 40px rgba(40, 40, 80, 0.45);
}

/* ===== Neon Aurora Layer (main color source) ===== */
footer::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: -20% -10%;
  z-index: 0;

  /* More vivid blue/purple glow — Play Store style */
  background:
    radial-gradient(35% 28% at 15% 25%, rgba(70, 150, 255, 0.45), transparent 55%),
    radial-gradient(40% 34% at 85% 70%, rgba(215, 70, 255, 0.48), transparent 60%),
    radial-gradient(26% 24% at 60% 30%, rgba(52, 255, 204, 0.25), transparent 60%);

  filter: blur(42px);
  animation: auroraFlow 18s ease-in-out infinite;
  mix-blend-mode: screen;
}

/* Aurora motion (smooth, slow, modern) */
@keyframes auroraFlow {
  0% {
    transform: translateX(-3%) translateY(0) scale(1);
  }

  50% {
    transform: translateX(4%) translateY(-2%) scale(1.05);
  }

  100% {
    transform: translateX(-3%) translateY(0) scale(1);
  }
}

/* ===== Clean Noise Texture Layer (premium finish) ===== */
footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.00));
  opacity: 0.12;
  mix-blend-mode: overlay;
}

/* ===== Smooth Gloss Highlight (top rim shine) ===== */
footer .gloss {
  position: absolute;
  top: -6%;
  left: -10%;
  width: 120%;
  height: 22%;
  pointer-events: none;
  z-index: 6;

  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.36),
      rgba(255, 255, 255, 0.10),
      rgba(255, 255, 255, 0.02));
  filter: blur(18px);
  opacity: 0.75;
  transform: rotate(-8deg);
}

/* ===== Bottom Neon Bloom — more controlled, cleaner ===== */
footer .bloom {
  position: absolute;
  bottom: -22%;
  right: 10%;
  width: 260px;
  height: 260px;
  z-index: 4;
  pointer-events: none;

  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.03) 40%,
      transparent 60%);
  filter: blur(28px);
  opacity: 0.9;

  animation: bloomLift 10s ease-in-out infinite;
}

/* bloom subtle movement */
@keyframes bloomLift {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-18px) scale(1.08);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* ===== Ensure your footer content sits above layers ===== */
footer .footer-inner {
  position: relative;
  z-index: 10;
}

/* ===== Upgraded Inputs (glassy + readable) ===== */
footer input,
footer textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

footer input:focus,
footer textarea:focus {
  transform: translateY(-3px);
  border-color: rgba(130, 165, 255, 1);
  box-shadow: 0 8px 26px rgba(110, 140, 255, 0.28);
}

/* ===== CTA Button — bright, clean, neon ===== */
footer input[type="submit"] {
  background: linear-gradient(135deg, #4e8fff, #955cff);
  border: none;
  color: white;
  font-weight: 700;
  padding: 12px;
  border-radius: 12px;
  transition: 0.25s;
  box-shadow: 0 10px 30px rgba(120, 90, 255, 0.3);
  cursor: pointer;
}

footer input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(160, 120, 255, 0.5);

}

/* Fix placeholder visibility in footer */
footer input::placeholder,
footer textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
  /* bright white */
  font-weight: 500;
}









/* ============================================================
   FINAL 3D APPLE-GLASS NAVBAR
   Works on light backgrounds + keeps dropdowns visible
   ============================================================ */

nav {
  position: relative;
  height: 70px;
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.18),
    inset 0 2px 4px rgba(255, 255, 255, 0.55),
    inset 0 -6px 12px rgba(0, 0, 0, 0.16);
  background: linear-gradient(130deg,
      rgba(230, 177, 177, 0.3),
      rgba(241, 207, 165, 0.3),
      rgba(194, 233, 155, 0.3),
      rgba(166, 218, 247, 0.3),
      rgba(197, 163, 241, 0.3));
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);

  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;

  /* 🧊 Deep 3D feel */
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.18),
    inset 0 2px 4px rgba(255, 255, 255, 0.65),
    inset 0 -6px 12px rgba(0, 0, 0, 0.18);

  z-index: 9999;
  overflow: visible;
}

/* 🌥 Soft highlight strip */
nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 38%;
  width: 100%;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.65),
      rgba(255, 255, 255, 0));
  pointer-events: none;
}

/* 🌫 Gentle bottom reflection */
nav::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 100%;
  height: 60%;
  background: radial-gradient(ellipse at bottom,
      rgba(255, 255, 255, 0.40),
      rgba(255, 255, 255, 0.10),
      transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

/* ==============================
   NAV TEXT FIX — Dark, not white
   ============================== */

nav ul li a,
.site-title {
  color: #1f2a44 !important;
  /* deep bluish-black for premium look */
  font-weight: 600;
}


/* =========================================
   DROPDOWN FIX — so hover never becomes hidden
   ========================================= */

nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  min-width: 220px;

  background: rgba(255, 255, 255, 0.842);
  backdrop-filter: blur(12px);
  border-radius: 14px;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.253),
    inset 0 2px 4px rgba(255, 255, 255, 0.5);

  padding: 6px 0;
  z-index: 99999;
}

nav ul li:hover>ul {
  display: block;
}

/* Dropdown items */
nav ul li ul li a {
  color: #222 !important;
  padding: 12px 18px;
  display: block;
  white-space: nowrap;
}

nav ul li ul li a:hover {
  background: rgba(200, 200, 255, 0.25);
}


/* =======================================================
   MOBILE — Keep existing burger/menu system working
   ======================================================= */

@media (max-width: 991px) {
  nav {
    background: linear-gradient(130deg,
        rgba(230, 177, 177, 0.3),
        rgba(241, 207, 165, 0.3),
        rgba(194, 233, 155, 0.3),
        rgba(166, 218, 247, 0.3),
        rgba(197, 163, 241, 0.3));
    backdrop-filter: blur(18px);
  }

  nav ul {
    background: rgba(20, 20, 40, 0.85);
    backdrop-filter: blur(22px);
  }

  nav ul li a {
    color: #fff !important;
  }
}

a.call-icon {
  color: #1f2a44 !important;
  /*THIS IS IMP FOR PH NO DARK COLOR*/
}

form#About {
  scroll-margin-top: 200px !important;
  /*fix for cutting issue on footer*/
}

/* =======================
end of new nav bar style */
/* ======================= */
