/* =========================================================
   ZHAGARAM INFO TECH — MERGED STYLESHEET
   Combines: base style.css, about.css, services-page.css,
   courses.css, contact.css into a single file.

   FIXES APPLIED IN THIS VERSION:
   1. Added `min-width: 0` to the universal reset (`*`).
      Flex/grid children default to `min-width: auto`, which
      means text with `white-space: nowrap` (e.g. the resume
      file-upload label) or long words inside flex cards
      (why-card, service-card, internship-card) refuse to
      shrink and force the page wider than the viewport.
      Combined with `overflow-x: hidden` on html/body, that
      excess width was being CLIPPED instead of wrapped —
      this is what caused the cut-off text you saw on mobile
      ("Choose file (PDF, DOC, DOCX — max 5...", "Affordab...
      Pricing", etc). min-width: 0 lets these items shrink
      and wrap normally.
   2. The floating WhatsApp/Facebook/Twitter/LinkedIn button
      stack is `position: fixed`, so on small screens it was
      sitting directly on top of form fields and cards
      (visible in your screenshots covering the "Select a
      field" dropdown and the "Secure Hosting" card). On
      mobile (<=767px) we now only show the WhatsApp button,
      which is also the standard pattern for this kind of
      floating contact button.
   3. Mobile nav is now a full-screen "ripple reveal" menu
      instead of a right-side drawer, anchored at the
      hamburger button, with staggered link entrance.
   4. Added a brand row (logo + "Zhagaram / Info Tech") as
      the first item inside the mobile nav menu, since the
      full-screen nav covers the header behind it.
   5. Nav link hover/active is now a plain brand-blue colour
      swap instead of the gradient text-clip effect.
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-width: 0;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f7f8fc;
  color: #111827;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  padding: 20px 0;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================
INNER PAGE UPDATED DESIGN
========================= */

.inner-page {
  padding: 100px 0;
  min-height: 60vh;

  background:
    radial-gradient(circle, #1e56ff 0%, transparent 70%),
    linear-gradient(135deg, #010b2d, #00114d, #011239);

  display: flex;
  align-items: center;

  color: white;

  position: relative;
  overflow: hidden;
}

.inner-page::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  background: radial-gradient(circle,
      rgba(37, 99, 235, 0.4) 0%,
      transparent 70%);

  top: -200px;
  right: -200px;

  border-radius: 50%;
}

.inner-page .container {
  position: relative;
  z-index: 2;
}

.inner-page h1 {
  font-size: clamp(28px, 5.5vw, 60px);
  margin-bottom: 20px;
  line-height: 1.15;
}

.inner-page p {
  font-size: clamp(14px, 2vw, 18px);
  color: #c5d2ff;
  max-width: 700px;
  line-height: 1.8;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.logo h2 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.2px;
  color: #ffffff;
  margin: 0;
}

.logo p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;

  background: linear-gradient(135deg, #4f8dff, #8f5cff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #246bff, #6f49ff);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
  flex-shrink: 0;
}

nav ul {
  display: flex;
  /*gap: 40px;*/
  list-style: none;
  font-size: 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

nav ul li a:hover,
nav ul li a.active {
  color: #4f8dff;
}

/* Brand row shown only inside the mobile full-screen nav (see
   the "MOBILE NAV" section further down for the active styling). */
nav ul li.nav-brand {
  display: none;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quote-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #5f4dff, #2b8fff);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

/* =========================================
MENU BUTTON (mobile only — hidden on desktop)
========================================= */

.menu-btn {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  font-size: 20px;
  z-index: 1001;
  position: relative;
  flex-shrink: 0;
}

/* =========================================
NAV OVERLAY (mobile only — hidden on desktop)
========================================= */

.nav-overlay {
  display: none;
}

/* =========================================
WHY CHOOSE US
========================================= */

.why-choose {
  padding: 30px 0;
  background: #f9fbff;
}

.why-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: start;
}

.why-wrapper-full {
  grid-template-columns: 1fr;
}

.why-wrapper-full .why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-left span,
.training-box span,
.testimonial-box span {
  color: #276cff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: clamp(12px, 1.4vw, 14px);
}

.why-left h2 {
  font-size: clamp(28px, 4.2vw, 50px);
  margin: 20px 0;
  line-height: 1.2;
}

.why-left p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: clamp(14px, 1.6vw, 16px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.why-card {
  background: white;
  padding: 30px;
  border-radius: 25px;

  display: flex;
  align-items: flex-start;
  gap: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.why-card i {
  width: 65px;
  height: 65px;

  border-radius: 18px;

  background: linear-gradient(135deg, #5d4dff, #288fff);

  color: white;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 24px;

  flex-shrink: 0;
}

.why-card h4 {
  margin-bottom: 10px;
  font-size: clamp(16px, 1.8vw, 18px);
}

.why-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.training-box,
.testimonial-box {
  background: white;
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.training-box h3,
.testimonial-box h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 18px 0;
}

.training-box p,
.testimonial-box p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-card {
  background: #f7f8fc;
  padding: 25px;
  border-radius: 20px;
  margin-top: 20px;
}

.testimonial-card i {
  color: #276cff;
  font-size: 24px;
  margin-bottom: 15px;
}

.testimonial-card p {
  margin: 0;
  font-style: italic;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #010b2d, #00114d, #011239);
  min-height: 100vh;
  overflow: hidden;
  padding-top: 140px;
      padding-bottom: 100px;
}

.hero-bg {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #1e56ff 0%, transparent 70%);
  right: -150px;
  top: -150px;
  opacity: 0.25;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content span {
  color: #2f8dff;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: clamp(12px, 1.4vw, 14px);
}

.hero-content h1 {
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.15;
  margin: 25px 0;
  color: white;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #2f8dff, #8f5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: #c5d2ff;
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.primary-btn {
  background: linear-gradient(135deg, #5d4dff, #288fff);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  font-size: clamp(14px, 1.6vw, 16px);
  white-space: nowrap;
}

.video-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.play-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 40px;
  position: relative;
  z-index: 2;
}

.shape {
  position: absolute;
  border: 2px solid rgba(59, 130, 246, 0.5);
  border-radius: 40px;
}

.shape1 {
  width: 100%;
  height: 100%;
  top: -30px;
  left: -30px;
}

.shape2 {
  width: 100%;
  height: 100%;
  top: 30px;
  left: 30px;
}

.floating-card {
  position: absolute;
  right: -40px;
  bottom: 60px;
  background: white;
  padding: 25px;
  border-radius: 25px;
  width: 320px;
  max-width: 90%;
  display: flex;
  gap: 18px;
  z-index: 3;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
  min-width: 60px;
  width: 60px;
  height: 60px;

  background: linear-gradient(135deg, #5d4dff, #288fff);
  color: white;

  border-radius: 15px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 24px;

  flex-shrink: 0;
}

.floating-card h3 {
  margin-bottom: 10px;
  font-size: clamp(16px, 2vw, 20px);
}

.floating-card p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

/* SERVICES */

.services {
  margin-top: -80px;
  position: relative;
  z-index: 99;
}

.service-grid {
  background: #fff;
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-card {
  padding: 40px 30px;

  display: flex;
  align-items: flex-start;
  gap: 20px;

  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;

  transition: 0.3s ease;

  min-height: 260px;
}

.service-card:hover {
  background: #f9fbff;
}

/* COLORS */

.blue {
  background: #e9f1ff;
  color: #276cff;
}

.purple {
  background: #f0e9ff;
  color: #7b4dff;
}

.green {
  background: #e8fff1;
  color: #00b85c;
}

.orange {
  background: #fff3e5;
  color: #ff9800;
}

/* ICON */

.service-icon {
  width: 75px;
  height: 75px;
  min-width: 75px;

  border-radius: 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 28px;

  flex-shrink: 0;
}

/* CONTENT */

.service-card h5 {
  margin-bottom: 5px;
  font-size: clamp(14px, 1.6vw, 16px);
}

.service-card p {
  color: #666;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.6;
}

.service-card a {
  text-decoration: none;
  color: #276cff;
  font-weight: 600;

  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about {
  padding: 10px 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-left span,
.portfolio span,
.contact span {
  color: #276cff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: clamp(12px, 1.4vw, 14px);
}

.about-left h2,
.portfolio h2,
.contact h2 {
  font-size: clamp(28px, 4.2vw, 50px);
  margin: 20px 0;
  line-height: 1.2;
}

.about-left p,
.contact p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: clamp(14px, 1.6vw, 16px);
}

.counter-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.counter-box {
  background: white;
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.counter-box i {
  font-size: 28px;
  color: #276cff;
  margin-bottom: 15px;
}

.counter-box h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 10px;
}

.about-right img {
  width: 100%;
  border-radius: 40px;
}

.portfolio {
  padding: 60px 0;
}

.portfolio-tabs {
  margin: 35px 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.portfolio-tabs button {
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(13px, 1.5vw, 15px);
}

.portfolio-tabs button.active {
  background: #276cff;
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-content {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.project-content h3 {
  font-size: clamp(16px, 2vw, 20px);
}

.project-content p {
  color: #666;
  margin-top: 5px;
  font-size: 14px;
}

.arrow-btn {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: #276cff;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact {
  background: linear-gradient(135deg, #010b2d, #00114d, #011239);
  padding: 120px 0;
  color: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

form {
  background: rgba(255, 255, 255, 0.06);
  /*padding: 40px;*/
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

form input,
form textarea {
  width: 100%;
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 15px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
}

form textarea {
  height: 150px;
  resize: none;
}

form button {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #5d4dff, #288fff);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.developer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.developer-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.developer-card:hover {
  transform: translateY(-10px);
}

.developer-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 5px solid #f3f3f3;
}

.developer-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.developer-card p {
  color: #777;
  margin-bottom: 15px;
}

.dev-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dev-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: 0.3s;
}

.dev-social a:hover {
  background: #2563eb;
  color: #fff;
}

/* =========================
FOOTER CSS
========================= */

.footer {
  background: #020817;
  color: white;
  padding-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding-bottom: 60px;
}

.footer-box h2 {
  font-size: clamp(20px, 2.2vw, 24px);
  margin-bottom: 25px;
  position: relative;
}

.footer-box h2::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -10px;

  width: 60px;
  height: 3px;

  background: linear-gradient(135deg, #246bff, #6f49ff);
  border-radius: 20px;
}

.footer-box p {
  color: #cbd5e1;
  line-height: 1.9;
  font-size: 15px;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 15px;
}

.footer-box ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.footer-box ul li a:hover {
  color: #4f8dff;
  padding-left: 8px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 20px;

  color: #4f8dff;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact {
  margin-top: 25px;
}

.footer-contact p {
  margin-bottom: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
}

.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: white;

  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;

  transition: 0.3s;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #246bff, #6f49ff);
  transform: translateY(-5px);
}

/* =========================================
ANIMATIONS
========================================= */

@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-image img {
  animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes rotateShape {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.shape1 {
  animation: rotateShape 18s linear infinite;
}

.shape2 {
  animation: rotateShape 25s linear infinite reverse;
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content {
  animation: fadeLeft 1s ease;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image {
  animation: fadeRight 1.2s ease;
}

.primary-btn,
.quote-btn,
form button {
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.primary-btn::before,
.quote-btn::before,
form button::before {
  content: "";

  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: rgba(255, 255, 255, 0.2);

  transition: 0.5s ease;
}

.primary-btn:hover::before,
.quote-btn:hover::before,
form button:hover::before {
  left: 100%;
}

.primary-btn:hover,
.quote-btn:hover,
form button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

.service-card {
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.08);
}

.service-icon {
  transition: 0.4s ease;
}

.project-card {
  transition: 0.4s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  transition: 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.arrow-btn {
  transition: 0.4s ease;
}

.project-card:hover .arrow-btn {
  transform: rotate(-45deg);
}

.counter-box {
  transition: 0.4s ease;
}

.counter-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.floating-card {
  animation: floatUpDown 5s ease-in-out infinite;
}

/* ---- UNIQUE ANIMATION: "Flowing Underline" ----
   Not just a bar that grows — the gradient inside it keeps
   flowing sideways for as long as you're hovering. */
nav ul li a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0%;
  height: 2px;

  background: linear-gradient(90deg, #4f8dff, #8f5cff, #4f8dff);
  background-size: 200% 100%;

  transition: width 0.4s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
  animation: navUnderlineFlow 1.4s linear infinite;
}

@keyframes navUnderlineFlow {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.footer-social a {
  transition: 0.4s ease;
}

.footer-social a:hover {
  transform: translateY(-8px) rotate(8deg);
}

form input,
form textarea {
  transition: 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border: 1px solid #4f8dff;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(79, 141, 255, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }

  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}

/* ---- UNIQUE ANIMATION: "Aurora Drift" ----
   A living, colour-shifting aura instead of a flat pulse —
   the blob drifts, breathes, and shifts hue as it moves. */
@keyframes auroraDrift {
  0% {
    transform: translate(0, 0) scale(1);
    filter: hue-rotate(0deg);
    opacity: 0.22;
  }

  33% {
    transform: translate(-40px, 25px) scale(1.18);
    filter: hue-rotate(45deg);
    opacity: 0.34;
  }

  66% {
    transform: translate(25px, -20px) scale(0.9);
    filter: hue-rotate(-35deg);
    opacity: 0.26;
  }

  100% {
    transform: translate(0, 0) scale(1);
    filter: hue-rotate(0deg);
    opacity: 0.22;
  }
}

.hero-bg {
  animation: auroraDrift 14s ease-in-out infinite;
}

/* =========================================
RESPONSIVE — TABLET (max-width: 1100px)
========================================= */

@media(max-width: 1100px) {

  .why-wrapper {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-wrapper-full .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-wrapper,
  .about-wrapper,
  .contact-wrapper,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .services {
    margin-top: 20px;
  }

  /* Tablet: 2 columns instead of jumping straight to 1 */
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 0;
    border-right: 1px solid #eee;
  }

  .service-card:nth-child(2n) {
    border-right: none;
  }

  .hero {
    padding-bottom: 100px;
    padding-top: 120px;
  }

  .hero-content h1 {
    margin: 18px 0;
  }

  .floating-card {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-top: 25px;
    z-index: 5;
  }

  .hero-image {
    margin-top: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  header {
    position: fixed !important;
    top: 0 !important;
    background: rgba(2, 8, 23, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 16px 0 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

  /* ---- MOBILE NAV ---- */

  nav {
    display: block;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;

    background:
      radial-gradient(circle at 85% 8%, rgba(79, 141, 255, 0.35), transparent 55%),
      linear-gradient(160deg, #050b1f 0%, #0b1440 55%, #101d54 100%);

    padding: 0;
    gap: 6px;
    border-radius: 0;

    z-index: 1000;
    overflow: hidden;

    /* the "ripple" reveal, anchored at the hamburger button */
    clip-path: circle(0% at calc(100% - 46px) 46px);
    transition: clip-path 0.65s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
  }

  nav ul.show {
    clip-path: circle(150% at calc(100% - 46px) 46px);
    pointer-events: auto;
  }

  nav ul li {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  nav ul.show li {
    opacity: 1;
    transform: translateY(0);
  }

  /* staggered entrance — brand row is child #1, links follow */
  nav ul.show li:nth-child(1) {
    transition-delay: 0.1s;
  }

  nav ul.show li:nth-child(2) {
    transition-delay: 0.2s;
  }

  nav ul.show li:nth-child(3) {
    transition-delay: 0.27s;
  }

  nav ul.show li:nth-child(4) {
    transition-delay: 0.34s;
  }

  nav ul.show li:nth-child(5) {
    transition-delay: 0.41s;
  }

  nav ul.show li:nth-child(6) {
    transition-delay: 0.48s;
  }

  nav ul.show li:nth-child(7) {
    transition-delay: 0.55s;
  }

  nav ul li a {
    font-size: clamp(22px, 6vw, 30px);
    font-weight: 600;
    padding: 14px 0;
    letter-spacing: 0.3px;
  }

  /* remove the old flowing-underline effect (doesn't read well centered/full-screen) */
  nav ul li a::after {
    display: none;
  }

  nav ul li a:hover,
  nav ul li a.active {
    color: #4f8dff;
  }

  /* Full-width hover/active highlight for mobile nav links —
     the desktop version only pills around the text, but on
     the full-screen mobile menu we want the highlight to span
     edge-to-edge of the link row for a bigger, easier tap target. */
  nav ul li {
    width: 100%;
    max-width: 320px;
  }

  nav ul li a {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 14px;
    padding: 16px 0;
  }

  nav ul li a:hover,
  nav ul li a.active {
    background: rgba(79, 141, 255, 0.14);
  }

  /* Brand block (logo above, company name below) shown at the
     top of the mobile full-screen nav, since the header behind
     it is covered while the menu is open. */
  nav ul li.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;

    width: 100%;
    max-width: 260px;

    margin-bottom: 34px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  nav ul li.nav-brand img {
    /* width: 60px; */
    /* height: 60px; */
    border-radius: 14px;
    flex-shrink: 0;
  }

  nav ul li.nav-brand div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav ul li.nav-brand h3 {
    font-size: 29px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
  }

  nav ul li.nav-brand span {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;

    background: linear-gradient(135deg, #4f8dff, #8f5cff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .menu-btn {
    display: flex;
    position: relative;
    z-index: 1001;
    /* stays above the full-screen nav so it can act as the close button */
  }

  .quote-btn {
    display: none;
  }

  /* no longer needed as a separate dimming layer — the full-screen nav IS the backdrop now */
  .nav-overlay {
    display: none;
  }

  /* Section padding: trim the very tall desktop paddings on tablet */
  .about-company,
  .about-why,
  .services-why-section,
  .services-page,
  .courses-page,
  .course-features,
  .internship-page,
  .apply-section,
  .team-section,
  .contact {
    padding: 20px 0;
  }

  .inner-page {
    padding: 70px 0;
    padding-top: 130px;
    min-height: auto;
  }

}

@media(max-width:700px) {

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none !important;
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .container {
    width: 92%;
  }

  /* Why-choose cards: one per row on phones instead of 2-up,
     so the icon + heading + text has room to breathe and
     nothing gets squeezed/overlaps. */
  .why-grid,
  .why-wrapper-full .why-grid {
    grid-template-columns: 1fr;
  }

}

/* Small phones */
@media(max-width:480px) {

  .why-card,
  .service-card,
  .about-why-card,
  .course-card,
  .feature-card,
  .service-page-card,
  .contact-info-card,
  .why-us-card,
  .internship-card {
    padding: 22px 18px;
  }

  .service-card {
    padding: 26px 20px;
    gap: 14px;
  }

  .service-icon,
  .about-why-card i,
  .course-card i {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 22px;
  }

  .why-card i {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .primary-btn,
  .quote-btn {
    padding: 13px 24px;
  }

  .about-company,
  .about-why,
  .services-why-section,
  .services-page,
  .courses-page,
  .course-features,
  .internship-page,
  .apply-section,
  .team-section,
  .contact,
  .why-choose {
    padding: 20px 0;
  }

  .inner-page {
    padding: 50px 0;
    padding-top: 130px;
  }

  .portfolio {
    padding: 40px 0;
  }

  .project-card img {
    height: 200px;
  }

  .team-avatar-wrap {
    width: 110px;
    height: 110px;
  }

  .apply-left,
  .apply-right {
    padding: 35px 22px !important;
  }

}

.floating-social {
  position: fixed;
  bottom: 25px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.float-icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.whatsapp {
  background: #25d366;
}

.facebook {
  background: #1877f2;
}

.twitter {
  background: #000000;
}

.linkedin {
  background: #0a66c2;
}

/* ---- FIX: floating social stack was covering form fields
   and card text on phones (fixed position sits on top of
   whatever is scrolled underneath it). Only show WhatsApp
   on small screens — this is also the standard pattern for
   this kind of floating contact button. ---- */
@media (max-width: 767px) {
  .floating-social {
    bottom: 16px;
    right: 14px;
    gap: 10px;
  }

  .floating-social .float-icon:not(.whatsapp) {
    display: none;
  }

  .floating-social .whatsapp {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .floating-social .whatsapp {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* =========================================
TRENDY MICRO-INTERACTIONS
========================================= */

a,
button,
.why-card,
.service-card,
.project-card,
.counter-box,
.developer-card,
.dev-social a,
.footer-social a,
.float-icon,
.portfolio-tabs button,
.quote-btn,
.primary-btn,
.arrow-btn,
.logo-icon {
  transition: background-color 0.35s ease, background 0.35s ease,
    color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

nav ul li a {
  padding: 8px 14px;
  border-radius: 30px;
}

nav ul li a:hover,
nav ul li a.active {
  background: rgba(79, 141, 255, 0.14);
}

.why-card:hover {
  background: linear-gradient(135deg, #ffffff, #eef3ff);
}

.why-card:hover i {
  background: linear-gradient(135deg, #288fff, #5d4dff);
  transform: rotate(-8deg) scale(1.1);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 141, 255, 0.08), rgba(143, 92, 255, 0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover .service-icon.blue {
  background: #276cff;
  color: #fff;
}

.service-card:hover .service-icon.purple {
  background: #7b4dff;
  color: #fff;
}

.service-card:hover .service-icon.green {
  background: #00b85c;
  color: #fff;
}

.service-card:hover .service-icon.orange {
  background: #ff9800;
  color: #fff;
}

/* ---- UNIQUE ANIMATION: "Liquid Fill" ----
   Instead of an instant colour swap, a gradient "liquid"
   rises from the bottom of the card like a filling gauge. */
.counter-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: linear-gradient(135deg, #276cff, #5d4dff);
  z-index: -1;
  border-radius: inherit;
  transition: height 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

.counter-box::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 14px;
  background: inherit;
  border-radius: 50%;
  transform: translateY(50%) scaleY(0);
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}

.counter-box:hover::before {
  height: 100%;
}

.counter-box:hover::after {
  bottom: 100%;
  transform: translateY(50%) scaleY(1);
}

.counter-box:hover h3,
.counter-box:hover p,
.counter-box:hover i {
  color: #fff;
  transition: color 0.4s ease 0.15s;
}

.project-content {
  transition: background-color 0.35s ease;
}

.project-card:hover .project-content {
  background: #f4f7ff;
}

.arrow-btn:hover {
  background: #1a4fd6;
  box-shadow: 0 8px 20px rgba(39, 108, 255, 0.4);
}

.portfolio-tabs button {
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

.portfolio-tabs button:hover:not(.active) {
  background: #eef3ff;
  color: #276cff;
  transform: translateY(-3px);
}

.developer-card:hover {
  background: linear-gradient(180deg, #ffffff, #f3f6ff);
  box-shadow: 0 20px 40px rgba(39, 108, 255, 0.15);
}

.dev-social a:hover {
  transform: translateY(-4px) scale(1.1);
}

.footer-box ul li a {
  display: inline-block;
  padding: 4px 0;
  position: relative;
}

.footer-box ul li a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4f8dff;
  transition: transform 0.3s ease;
}

.footer-box ul li a:hover::before {
  transform: translateY(-50%) scaleX(1);
}

.logo-icon:hover {
  background: linear-gradient(135deg, #6f49ff, #246bff);
  box-shadow: 0 0 25px rgba(111, 73, 255, 0.55);
  transform: rotate(-6deg) scale(1.05);
}

.primary-btn,
.quote-btn,
form button,
.contact-form-box button[type="submit"] {
  background-size: 200% auto;
  background-position: 0% center;
}

.primary-btn:hover,
.quote-btn:hover,
form button:hover,
.contact-form-box button[type="submit"]:hover {
  background-position: 100% center;
}

@keyframes ringPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  }

  100% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

.play-circle {
  animation: ringPulse 2.2s ease-out infinite;
  transition: background-color 0.3s ease;
}

.video-btn:hover .play-circle {
  background: rgba(79, 141, 255, 0.25);
}

.menu-btn:hover {
  background: rgba(79, 141, 255, 0.2);
  border-color: #4f8dff;
}

@keyframes shimmerText {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-content h1 span {
  background-size: 200% auto;
  animation: shimmerText 4s ease-in-out infinite;
}

/* ---- UNIQUE ANIMATION: "Orbit Drift" ----
   Instead of a plain up/down bounce, each icon wobbles along
   a small figure-eight-like path — a subtler, more organic
   motion than the typical bounce/pulse you see everywhere. */
@keyframes orbitDrift {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-3px, -7px);
  }

  50% {
    transform: translate(0, -3px);
  }

  75% {
    transform: translate(3px, -7px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.float-icon:nth-child(1) {
  animation: orbitDrift 4s ease-in-out infinite;
}

.float-icon:nth-child(2) {
  animation: orbitDrift 4s ease-in-out infinite 0.35s;
}

.float-icon:nth-child(3) {
  animation: orbitDrift 4s ease-in-out infinite 0.7s;
}

.float-icon:nth-child(4) {
  animation: orbitDrift 4s ease-in-out infinite 1.05s;
}

.float-icon:hover {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {

  .play-circle,
  .float-icon,
  .hero-content h1 span,
  .logo-icon,
  .why-card,
  .why-card i,
  .service-card::after,
  .counter-box,
  .developer-card,
  .arrow-btn,
  .portfolio-tabs button {
    animation: none !important;
    transition: none !important;
  }
}

.inner-page::before {
  animation: pulseGlowStrong 6s ease-in-out infinite;
}

.inner-page .container {
  animation: fadeLeft 1s ease;
}

@keyframes pulseGlowStrong {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.25);
    opacity: 0.85;
  }

  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

@media (prefers-reduced-motion: reduce) {

  .play-circle,
  .float-icon,
  .hero-content h1 span,
  .logo-icon,
  .why-card,
  .why-card i,
  .service-card::after,
  .counter-box,
  .developer-card,
  .arrow-btn,
  .portfolio-tabs button,
  .inner-page::before,
  .inner-page .container {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================
ABOUT PAGE
========================================= */

.about-company {
  padding: 120px 0;
}

.about-company-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-company-image {
  position: relative;
}

.about-company-image img {
  width: 100%;
  border-radius: 40px;
  position: relative;
  z-index: 2;
  animation: floatUpDown 6s ease-in-out infinite;
}

.about-shape {
  position: absolute;

  width: 100%;
  height: 100%;

  border: 2px solid rgba(37, 99, 235, 0.4);

  border-radius: 40px;
}

.about-shape1 {
  top: -25px;
  left: -25px;
  animation: rotateShape 20s linear infinite;
}

.about-shape2 {
  top: 25px;
  left: 25px;
  animation: rotateShape 28s linear infinite reverse;
}

.about-company-content span,
.section-title span {
  color: #276cff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: clamp(12px, 1.4vw, 14px);
}

.about-company-content h2,
.section-title h2 {
  font-size: clamp(28px, 4.2vw, 50px);
  margin: 20px 0;
  line-height: 1.2;
}

.about-company-content p {
  color: #666;
  line-height: 1.9;
  font-size: clamp(14px, 1.6vw, 16px);
}

.about-why {
  padding-bottom: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.about-why-card {
  background: white;

  padding: 40px 20px;

  border-radius: 25px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: 0.4s ease;
}

.about-why-card:hover {
  transform: translateY(-10px);
}

.about-why-card i {
  width: 80px;
  height: 80px;

  margin: auto auto 25px;

  border-radius: 22px;

  background: linear-gradient(135deg, #5d4dff, #288fff);

  color: white;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 30px;
}

.about-why-card h4 {
  font-size: clamp(15px, 1.7vw, 18px);
}

/* =========================================
OUR SERVICES + WHY CHOOSE US
========================================= */

.services-why-section {
  padding: 100px 0;
}

.services-why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.section-title-left {
  margin-bottom: 30px;
}

.section-title-left span {
  color: #276cff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: clamp(12px, 1.4vw, 14px);
}

.section-title-left h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-top: 12px;
}

.simple-list {
  list-style: none;
}

.simple-list li {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 16px 0;

  border-bottom: 1px solid #e7ebf3;

  font-size: clamp(14px, 1.7vw, 16px);
  color: #333;
}

.simple-list li:last-child {
  border-bottom: none;
}

.simple-list li i {
  width: 22px;
  color: #276cff;
  font-size: 18px;
  text-align: center;
  flex-shrink: 0;
}

.simple-list-balanced {
  column-count: 2;
  column-gap: 40px;
}

.simple-list-balanced li {
  break-inside: avoid;
}

/* RESPONSIVE */

@media(max-width:1100px) {

  .about-company-wrapper {
    grid-template-columns: 1fr;
  }

  .about-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-why-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .simple-list-balanced {
    column-count: 1;
  }

}

@media(max-width:700px) {

  .about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:480px) {

  .about-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .about-why-card {
    padding: 26px 14px;
  }

  .about-why-card i {
    width: 60px;
    height: 60px;
    font-size: 22px;
    margin-bottom: 16px;
  }

}

@media (max-width: 1100px) {

  .about-shape1 {
    top: -15px;
    left: -15px;
  }

  .about-shape2 {
    top: 15px;
    left: 15px;
  }

}

@media (max-width: 480px) {

  .about-shape1 {
    top: -10px;
    left: -10px;
  }

  .about-shape2 {
    top: 10px;
    left: 10px;
  }

}

/* ===== TEAM SECTION ===== */

.team-section {
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}

.team-subtitle {
  max-width: 620px;
  margin: 14px auto 0;
  color: #666;
  line-height: 1.8;
  font-size: clamp(14px, 1.6vw, 16px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.team-card {
  position: relative;
  background: #fff;
  border-radius: 25px;
  padding: 45px 30px 35px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(39, 108, 255, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.team-card.is-visible {
  animation: teamFadeUp 0.6s ease forwards;
  animation-delay: calc(var(--i) * 0.12s);
}

@keyframes teamFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(39, 108, 255, 0.16);
}

.team-avatar-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 22px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #5d4dff, #288fff);
  box-shadow: 0 8px 20px rgba(39, 108, 255, 0.25);
  transition: transform 0.4s ease;
}

.team-card:hover .team-avatar-wrap {
  transform: rotate(5deg) scale(1.06);
}

.team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  display: block;
}

.team-name {
  font-size: clamp(17px, 2vw, 20px);
  color: #111;
  margin-bottom: 6px;
}

.team-role {
  display: block;
  color: #276cff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
}

.team-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(39, 108, 255, 0.08);
  color: #276cff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}

.team-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 108, 255, 0.08);
  color: #276cff;
  font-size: 15px;
  transition: 0.35s ease;
}

.team-social-btn:hover {
  background: linear-gradient(135deg, #5d4dff, #288fff);
  color: #fff;
  transform: rotate(360deg);
  box-shadow: 0 6px 16px rgba(39, 108, 255, 0.35);
}

.team-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5d4dff, #288fff);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-btn i {
  transition: transform 0.3s ease;
}

.team-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(39, 108, 255, 0.35);
}

.team-btn:hover i {
  transform: translateX(5px);
}

.team-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: teamRipple 0.6s linear;
  pointer-events: none;
}

@keyframes teamRipple {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-section {
    padding: 80px 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-shape1,
  .about-shape2,
  .about-company-image img,
  .team-card {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================
SERVICES PAGE
========================================= */

/*.services-page {*/
/*  padding: 120px 0;*/
/*}*/

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-page-card {
  background: white;

  padding: 40px 30px;

  border-radius: 30px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: 0.4s ease;
}

.service-page-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-page-icon {
  width: 80px;
  height: 80px;

  border-radius: 22px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 30px;

  margin-bottom: 25px;
}

.service-page-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 15px;
}

.service-page-card p {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}

/* RESPONSIVE */

@media(max-width:1100px) {

  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:700px) {

  .services-page-grid {
    grid-template-columns: 1fr;
  }

}

@media(max-width:480px) {

  .service-page-card {
    padding: 26px 20px;
  }

  .service-page-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
    margin-bottom: 18px;
  }

}

/* =========================================
COURSES PAGE
========================================= */

.courses-page {
  padding: 120px 0;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.course-card {
  background: white;
  padding: 40px 30px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}

.course-card:hover {
  transform: translateY(-10px);
}

.course-card i {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #5d4dff, #288fff);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 25px;
  font-size: 30px;
}

.course-card h3 {
  margin-bottom: 15px;
  font-size: clamp(17px, 2vw, 20px);
}

.course-card p {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}

/* FEATURES */

.course-features {
  padding-bottom: 120px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.feature-card {
  background: white;
  padding: 35px 20px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card i {
  font-size: 32px;
  color: #276cff;
  margin-bottom: 18px;
}

.feature-card h4 {
  font-size: clamp(14px, 1.6vw, 16px);
}

/* =========================================
INTERNSHIP PAGE
========================================= */

.internship-page {
  padding: 120px 0;
}

.internship-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.internship-left span,
.apply-box span {
  color: #276cff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: clamp(12px, 1.4vw, 14px);
}

.internship-left h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin: 20px 0;
  line-height: 1.2;
}

.internship-left p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 35px;
  font-size: clamp(14px, 1.6vw, 16px);
}

.internship-left img {
  width: 100%;
  border-radius: 35px;
}

.internship-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.internship-card {
  background: white;
  padding: 30px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}

.internship-card:hover {
  transform: translateX(10px);
}

.internship-card i {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #5d4dff, #288fff);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}

.internship-card h4 {
  font-size: clamp(14px, 1.7vw, 17px);
}

/* APPLY */

.apply-section {
  padding-bottom: 120px;
}

.apply-box {
  background: linear-gradient(135deg, #010b2d, #00114d, #011239);
  padding: 80px 40px;
  border-radius: 35px;
  text-align: center;
  color: white;
}

.apply-box h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin: 20px 0 35px;
}

/* RESPONSIVE */

@media(max-width:1100px) {

  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .internship-wrapper {
    grid-template-columns: 1fr;
  }

}

@media(max-width:700px) {

  .course-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media(max-width:480px) {

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .course-card,
  .feature-card {
    padding: 28px 20px;
  }

  .course-card i {
    width: 60px;
    height: 60px;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .internship-card {
    padding: 22px 18px;
    gap: 14px;
  }

  .internship-card i {
    width: 55px;
    height: 55px;
    min-width: 55px;
    font-size: 22px;
  }

  .apply-box {
    padding: 45px 22px;
  }

}

/* =========================================
APPLY SECTION (two-column: info + form)
========================================= */

.apply-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.apply-left {
  background: linear-gradient(135deg, #010b2d, #00114d, #011239);
  color: white;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.apply-left span {
  color: #5d9dff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: clamp(12px, 1.4vw, 14px);
}

.apply-left h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  margin: 20px 0 25px;
  line-height: 1.3;
}

.apply-left p {
  color: #c7d0e6;
  line-height: 1.9;
  margin-bottom: 30px;
  font-size: clamp(14px, 1.6vw, 16px);
}

.apply-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.apply-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #e6ebf7;
}

.apply-points i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5d4dff, #288fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.apply-right {
  background: white;
  padding: 60px 50px;
}

.apply-form .form-group {
  margin-bottom: 22px;
  text-align: left;
}

.apply-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.apply-form label span {
  color: #ff4d4d;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e6f0;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  color: #1a1a2e;
  background: #f8f9fc;
  transition: 0.3s ease;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: #276cff;
  background: white;
  box-shadow: 0 0 0 4px rgba(39, 108, 255, 0.1);
}

.apply-form textarea {
  resize: vertical;
}

/* FILE UPLOAD */

.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 1.5px dashed #c3ccdf;
  border-radius: 12px;
  background: #f8f9fc;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.file-upload-label:hover {
  border-color: #276cff;
  background: #eef4ff;
  color: #276cff;
}

.file-upload-label i {
  font-size: 18px;
  color: #276cff;
  flex-shrink: 0;
}

.file-upload-label span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.apply-form .primary-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

/* ALERTS */

.form-alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-alert-success {
  background: #e6f9ee;
  color: #0f9d58;
  border: 1px solid #b7ecd0;
}

.form-alert-error {
  background: #fdecec;
  color: #d93025;
  border: 1px solid #f7c5c2;
}

/* RESPONSIVE */

@media(max-width:1100px) {

  .apply-wrapper {
    grid-template-columns: 1fr;
  }

  .apply-left,
  .apply-right {
    padding: 50px 30px;
  }

}

/* =========================================
CONTACT PAGE
========================================= */

:root {
  --zg-navy: #101935;
  --zg-navy-soft: #1c2748;
  --zg-teal: #1e56ff;
  --zg-teal-dark: #1e56ff;
  --zg-ink: #1a1f2e;
  --zg-muted: #5c6478;
  --zg-border: #e6e9f0;
  --zg-bg-alt: #f6f8fb;
  --zg-radius: 14px;
  --zg-shadow: 0 10px 30px rgba(16, 25, 53, 0.08);
}

.contact-page {
  padding: 100px 0 120px;
}

.contact-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--zg-border);
  border-radius: var(--zg-radius);
  padding: 2.5rem;
  box-shadow: var(--zg-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-details h1 {
  font-size: clamp(24px, 3.4vw, 34px);
  margin-bottom: 1rem;
  color: var(--zg-navy);
  line-height: 1.2;
}

.contact-details>p {
  color: var(--zg-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-details .contact-info-box {
  margin-top: auto;
}

.contact-info-box {
  display: grid;
  gap: 1.25rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--zg-border);
  border-radius: var(--zg-radius);
  background: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-info-card:hover {
  border-color: var(--zg-teal);
  transform: translateY(-2px);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--zg-navy);
  color: var(--zg-teal);
  font-size: 1.1rem;
}

.contact-info-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--zg-ink);
}

.contact-info-card p {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  color: var(--zg-muted);
  line-height: 1.5;
}

.contact-info-card a {
  color: var(--zg-muted);
  text-decoration: none;
}

.contact-info-card a:hover,
.contact-info-card a:focus-visible {
  color: var(--zg-teal-dark);
  text-decoration: underline;
}

.contact-form-box>span {
  color: var(--zg-teal-dark);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.contact-form-box h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--zg-navy);
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  flex: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-icon-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-group>i {
  position: absolute;
  left: 14px;
  color: var(--zg-teal-dark);
  font-size: 0.95rem;
  pointer-events: none;
}

.input-icon-group input,
.input-icon-group select {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  border: 1px solid var(--zg-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--zg-ink);
  background: var(--zg-bg-alt);
  appearance: none;
  -webkit-appearance: none;
}

.contact-form-box textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--zg-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--zg-ink);
  background: var(--zg-bg-alt);
  resize: vertical;
  min-height: 140px;
}

.input-icon-group input:focus,
.input-icon-group select:focus,
.contact-form-box textarea:focus,
.form-checkbox-group input:focus-visible {
  outline: 2px solid var(--zg-teal);
  outline-offset: 1px;
  background: #fff;
}

.input-icon-group input:invalid:not(:placeholder-shown),
.input-icon-group select:invalid {
  border-color: #d64545;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--zg-muted);
}

.form-checkbox-group input {
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
  accent-color: var(--zg-teal);
  flex-shrink: 0;
}

.form-checkbox-group a {
  color: var(--zg-teal-dark);
  text-decoration: underline;
}

.contact-form-box button[type="submit"] {
  align-self: flex-start;
  padding: 0.9rem 2rem;
  background: var(--zg-teal);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form-box button[type="submit"]:hover,
.contact-form-box button[type="submit"]:focus-visible {
  background: var(--zg-teal-dark);
  transform: translateY(-1px);
}

.form-status {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: #e6f7f2;
  color: var(--zg-teal-dark);
}

.form-status.is-error {
  background: #fdecec;
  color: #b32424;
}

.why-contact-us {
  padding: 4rem 0;
  background: var(--zg-bg-alt);
  text-align: center;
}

.why-contact-us h2 {
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  color: var(--zg-navy);
  font-size: clamp(24px, 3vw, 34px);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.why-us-card {
  background: #fff;
  border-radius: var(--zg-radius);
  padding: 1.75rem;
  border: 1px solid var(--zg-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zg-shadow);
}

.why-us-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--zg-navy);
  color: var(--zg-teal);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.why-us-card h4 {
  margin: 0 0 0.5rem;
  color: var(--zg-ink);
}

.why-us-card p {
  margin: 0;
  color: var(--zg-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.map-section {
  padding: 4rem 0 0;
  text-align: center;
}

.map-section h2 {
  margin-top: 0.5rem;
  color: var(--zg-navy);
  font-size: clamp(22px, 2.8vw, 30px);
}

.map-section p {
  color: var(--zg-muted);
  margin-bottom: 2rem;
}

.map-embed {
  width: 100%;
  line-height: 0;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
}

.contact-cta {
  background: linear-gradient(135deg, var(--zg-navy) 0%, var(--zg-navy-soft) 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
}

.contact-cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.contact-cta p {
  margin: 0 auto 2rem;
  max-width: 560px;
  color: #c8cede;
}

.contact-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-cta-buttons .btn-primary,
.contact-cta-buttons .btn-secondary {
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-cta-buttons .btn-primary {
  background: var(--zg-teal);
  color: #fff;
}

.contact-cta-buttons .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.contact-cta-buttons a:hover,
.contact-cta-buttons a:focus-visible {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .contact-page-wrapper {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page {
    padding: 70px 0 80px;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 1.5rem;
  }

  .contact-info-card {
    padding: 1rem;
  }

  .contact-cta {
    padding: 3rem 1.25rem;
  }

  .map-embed iframe {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .contact-panel {
    padding: 1.25rem;
  }

  .contact-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-cta-buttons a {
    text-align: center;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {

  .contact-info-card,
  .why-us-card,
  .contact-form-box button[type="submit"],
  .contact-cta-buttons a {
    transition: none;
  }
}

/* =========================================
TRENDY MICRO-INTERACTIONS — CONTACT
========================================= */

.contact-info-card {
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease,
    background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  background: var(--zg-bg-alt);
  box-shadow: 0 12px 28px rgba(30, 86, 255, 0.12);
}

.contact-info-icon {
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.contact-info-card:hover .contact-info-icon {
  background: var(--zg-teal);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.input-icon-group input,
.input-icon-group select,
.contact-form-box textarea {
  transition: background-color 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease, transform 0.2s ease;
}

.input-icon-group:hover input,
.input-icon-group:hover select,
.contact-form-box textarea:hover {
  background: #fff;
  border-color: #c7d3f5;
}

.input-icon-group input:focus,
.input-icon-group select:focus,
.contact-form-box textarea:focus {
  box-shadow: 0 0 0 4px rgba(30, 86, 255, 0.15);
  transform: translateY(-1px);
}

.input-icon-group>i {
  transition: color 0.3s ease, transform 0.3s ease;
}

.input-icon-group:focus-within>i {
  color: var(--zg-navy);
  transform: scale(1.15);
}

.contact-form-box button[type="submit"] {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--zg-teal), #6f49ff);
  background-size: 200% auto;
  background-position: 0% center;
}

.contact-form-box button[type="submit"]:hover,
.contact-form-box button[type="submit"]:focus-visible {
  background-position: 100% center;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(30, 86, 255, 0.35);
}

.contact-form-box button[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.contact-form-box button[type="submit"]:hover::before {
  left: 130%;
}

.why-us-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.why-us-card:hover {
  background: linear-gradient(135deg, #ffffff, #eef3ff);
}

.why-us-icon {
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.why-us-card:hover .why-us-icon {
  background: var(--zg-teal);
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

.contact-cta-buttons .btn-primary {
  background: linear-gradient(135deg, var(--zg-teal), #6f49ff);
  background-size: 200% auto;
  background-position: 0% center;
  transition: background-position 0.5s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-cta-buttons .btn-primary:hover {
  background-position: 100% center;
  box-shadow: 0 12px 28px rgba(30, 86, 255, 0.4);
}

.contact-cta-buttons .btn-secondary {
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.contact-cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

@keyframes statusSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-status.is-visible {
  animation: statusSlideIn 0.35s ease;
}

@keyframes clockTick {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(12deg);
  }
}

.contact-info-card:hover .fa-clock {
  animation: clockTick 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {

  .contact-info-card,
  .contact-info-icon,
  .why-us-card,
  .why-us-icon,
  .contact-form-box button[type="submit"],
  .contact-cta-buttons a,
  .form-status.is-visible,
  .fa-clock {
    animation: none !important;
    transition: none !important;
  }
}

.form-status {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.form-status.is-visible {
  opacity: 1;
  max-height: 200px;
}