/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #1f2a2e;
  padding-top: 80px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================= COMMON ================= */
.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo strong {
  font-size: 18px;
}

.logo span {
  display: block;
  font-size: 12px;
  color: #777;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #1f2a2e;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #0d6efd;
}

.nav .nav-disabled {
  color: #999;
  font-weight: 500;
  cursor: default;
}

.btn-primary {
  background: #1f2a2e;
  color: #fff;
  padding: 9px 18px;
  border-radius: 22px;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: Left;
  gap: 20px;
  margin-left: 20px;
}

.logo-img {
  width: 60px;        /* ideal size */
  height: 60px;
  object-fit: contain;
}

.logo-text strong {
  font-size: 18px;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 12px;
  color: #777;
}


/* ================= HERO ================= */
.hero {
  position: relative;
  height: 95vh;
  overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero-designer.jpg") left center / cover no-repeat;
}

/* White gradient overlay */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 45%,
    rgba(255,255,255,0.85) 65%,
    #ffffff 100%
  );
}

/* Hero content positioning */
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  max-width: 600px;
  margin-left: 55%;
}

/* Text styles */
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero-content h1 span {
  font-weight: 300;
  font-style: italic;
}

.hero-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 35px;
}

/* Hero button */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: #1f2a2e;
  color: #fff;
  padding: 9px 18px;
  border-radius: 22px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ================= ANIMATIONS ================= */
.animate {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= CERTIFICATION BADGES ================= */
.badges-section {
  padding: 60px 0;
  background: #ffffff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: visible;
}

.badges-label {
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 50px;
  font-weight: 500;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
  overflow: visible;
}

.badge-item {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(18px);
  width: 100%;
  overflow: visible;
}

.badge-item:nth-child(1) { animation-delay: 0.1s; }
.badge-item:nth-child(2) { animation-delay: 0.2s; }
.badge-item:nth-child(3) { animation-delay: 0.3s; }
.badge-item:nth-child(4) { animation-delay: 0.4s; }
.badge-item:nth-child(5) { animation-delay: 0.5s; }
.badge-item:nth-child(6) { animation-delay: 0.6s; }

.badge-logo {
  max-width: 140px;
  width: 140px;
  height: auto;
  min-height: 100px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
  display: block;
  object-fit: contain;
}

.badge-item:hover .badge-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.badge-link {
  display: inline-block;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .badges-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .badges-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .badges-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* ================= SERVICES ================= */
.services {
  padding: 100px 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-content {
    margin-left: 0;
    max-width: 100%;
    text-align: center;
  }

  .nav {
    display: none;
  }

  .hero-content h1 {
    font-size: 38px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .animate {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 120px 0 80px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

/* LEFT CONTENT */
.about-content {
  animation: fadeUp 0.8s ease forwards;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-content h2 span {
  font-weight: 300;
  font-style: italic;
}

.about-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
  max-width: 520px;
}

.about-badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.about-badge:hover {
  border-color: #7a92b2;
  background: linear-gradient(135deg, #f5f8fb 0%, #ffffff 100%);
  transform: translateY(-2px);
}

.about-cta {
  margin-top: 30px;
}

/* RIGHT VIDEO */
.about-video {
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
  transform: translateY(18px);
}

.video-card {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #f5f7f8 url("../images/about-preview.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 24px rgba(150, 150, 150, 0.25),
    0 0 0 50px rgba(150, 150, 150, 0.15);
  transition: all 0.4s ease;
}

.video-card:hover {
  box-shadow:
    0 0 0 28px rgba(122, 146, 178, 0.3),
    0 0 0 56px rgba(122, 146, 178, 0.15);
  transform: scale(1.02);
}

.video-play {
  width: 70px;
  height: 70px;
  background: #1f2a2e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-play:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.video-card p {
  position: absolute;
  bottom: -45px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .video-card {
    width: 280px;
    height: 280px;
  }
}

/* ================= WHAT I OFFER ================= */
.offer-section {
  padding: 70px 0 120px 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(circle, rgba(100, 100, 100, 0.35) 2px, transparent 2px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

.offer-section::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(circle, rgba(100, 100, 100, 0.35) 2px, transparent 2px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

.section-header.center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  animation: fadeUp 0.8s ease forwards;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: default;
}

.section-badge:hover {
  border-color: #7a92b2;
  background: linear-gradient(135deg, #f5f8fb 0%, #ffffff 100%);
  transform: translateY(-2px);
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.section-subtext {
  font-size: 16px;
  color: #666;
}

/* Grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Cards */
.offer-card {
  background: #ffffff;
  border: 1px solid #e5e9f2;
  padding: 40px 30px;
  transition: all 0.3s ease;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(18px);
}

.offer-card:nth-child(1) { animation-delay: 0.1s; }
.offer-card:nth-child(2) { animation-delay: 0.2s; }
.offer-card:nth-child(3) { animation-delay: 0.3s; }
.offer-card:nth-child(4) { animation-delay: 0.4s; }
.offer-card:nth-child(5) { animation-delay: 0.5s; }
.offer-card:nth-child(6) { animation-delay: 0.6s; }

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Icon */
.offer-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

/* Text */
.offer-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.offer-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 34px;
  }
}

/* ================= CTA BAND ================= */
.cta-band {
  position: relative;
  padding: 100px 0;
  background: url("../images/cta-bg.jpg") center / cover no-repeat;
  color: #ffffff;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 46, 0.75);
}

.cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  animation: fadeUp 0.8s ease forwards;
}

/* Text */
.cta-text h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.cta-text p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 520px;
}

/* Action */
.cta-action {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.15);
  padding: 18px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.cta-action:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.25);
}

.cta-icon {
  width: 52px;
  height: 52px;
  background: #ffffff;
  color: #1f2a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.cta-action:hover .cta-icon {
  animation: none;
  transform: scale(1.1) rotate(15deg);
}

.cta-contact span {
  display: block;
  font-size: 13px;
  opacity: 0.9;
}

.cta-contact strong {
  font-size: 18px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 32px;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: #ffffff;
  border-top: 1px solid #eee;
  padding: 100px 0 0;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}

.footer-grid > * {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(18px);
}

.footer-about { animation-delay: 0.1s; }
.footer-links { animation-delay: 0.2s; }
.footer-contact { animation-delay: 0.3s; }

/* LEFT */
.footer-about h3 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.footer-about h3 span {
  font-weight: 600;
}

.footer-about p {
  font-size: 15px;
  color: #555;
  max-width: 380px;
  margin-bottom: 30px;
}

.footer-btn {
  display: inline-block;
}

/* SERVICES */
.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #1f2a2e;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  font-size: 15px;
  color: #555;
  margin-bottom: 14px;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  padding-left: 0;
}

.footer-links li::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #7a92b2;
}

.footer-links li:hover {
  color: #1f2a2e;
  padding-left: 20px;
}

.footer-links li:hover::before {
  opacity: 1;
  left: 0;
}

/* CONTACT */
.footer-contact .contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: #f2f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-contact .contact-item {
  transition: transform 0.3s ease;
  cursor: default;
}

.footer-contact .contact-item:hover {
  transform: translateX(5px);
}

.footer-contact .contact-item:hover .contact-icon {
  background: #7a92b2;
  color: #ffffff;
  transform: scale(1.1);
}

.footer-contact small {
  font-size: 12px;
  color: #777;
}

.footer-contact strong {
  font-size: 15px;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 80px;
  border-top: 1px solid #eee;
  padding: 25px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom span {
  font-size: 14px;
  color: #777;
}

.footer-nav {
  display: flex;
  gap: 25px;
}

.footer-nav a {
  font-size: 14px;
  color: #1f2a2e;
  text-decoration: none;
}

/* ================= VIDEO MODAL ================= */
.video-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-modal-content video {
  width: 100%;
  height: auto;
  display: block;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 2001;
  line-height: 20px;
  transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
  color: #ff6b6b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
  }

  .video-modal-content {
    width: 95%;
  }

  .close-modal {
    font-size: 30px;
    top: 10px;
    right: 15px;
  }
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 98%;
  }
}
/* ===================================================
   ABOUT PAGE – MENU & HERO ONLY
   =================================================== */

/* Active menu state */
.nav a.active {
  color: #0d6efd;
}

/* ===================================================
   ABOUT PAGE – HERO (FULL BACKGROUND IMAGE)
   =================================================== */

.about-hero {
  position: relative;
  height: 95vh;
  overflow: hidden;
}

/* Background image */
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/about-hero.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}


/* Gradient overlay (for readability) */
.about-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.75) 45%,
    rgba(255,255,255,0.4) 65%,
    rgba(255,255,255,0) 100%
  );
}

/* Content positioning (same logic as Home hero) */
.about-hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.about-hero-text {
  max-width: 600px;
}

/* Text */
.about-eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 20px;
  display: inline-block;
}

.about-hero-text h1 {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 25px;
}

.about-hero-text h1 span {
  font-weight: 300;
  font-style: italic;
}

.about-hero-text p {
  font-size: 16px;
  color: #555;
  max-width: 520px;
  margin-bottom: 35px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero-text h1 {
    font-size: 38px;
  }
}
/* ===================================================
   ABOUT HERO – OUTLINED BACKGROUND TEXT
   =================================================== */

.about-hero-outline {
  position: absolute;
  bottom: 20;
  right: 5%;

  font-size: 90px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;

  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.25);
  text-stroke: 1px rgba(0,0,0,0.25);

  pointer-events: none;
  z-index: 1;
}

/* Hide on small screens */
@media (max-width: 900px) {
  .about-hero-outline {
    display: none;
  }
}
/* ===================================================
   TYPING EFFECT – ABOUT HERO
   =================================================== */

.typing-text {
  font-weight: 300;
  font-style: italic;
  color: #1f2a2e;
  position: relative;
}

/* Blinking cursor */
.typing-text::after {
  content: "|";
  margin-left: 6px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
/* Prevent typing text from breaking into multiple lines */
.typing-text {
  display: inline-block;
  white-space: nowrap;     /* 🔑 THIS IS THE KEY */
  overflow: hidden;
  vertical-align: bottom;
}
/* ===================================================
   SKILLS SECTION
   =================================================== */

.skills-section {
  padding: 120px 0;
  background: #ffffff;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.skills-title {
  font-size: 34px;
  margin-bottom: 40px;
}

/* Individual skill */
.skill {
  margin-bottom: 28px;
}

.skill-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.skill-percent {
  color: #6c8fbf;      /* matches bar color */
  font-weight: 500;
  font-size: 13px;
}


/* Bar */
/* ================= SKILL BARS (REFINED UI) ================= */

.skill-bar {
  height: 8px;
  background: #eef2f5;           /* soft neutral base */
  border-radius: 6px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0; /* animated */
  background: linear-gradient(
    to right,
    #6c8fbf,                      /* muted blue */
    #9fb6d9                       /* soft fade */
  );
  border-radius: 6px;
  transition: width 1.4s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
/* ================= EXCELLENCE SECTION ================= */

.excellence-section {
  padding: 100px 0;
  background: #f5f8fb;
}

.excellence-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.excellence-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

.excellence-header p {
  font-size: 16px;
  color: #5f6b77;
}

.excellence-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}

/* LEFT CARDS */
.excellence-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.excellence-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #e7edf3;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.excellence-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #7a92b2;
}

.excellence-index {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 26px;
  font-weight: 600;
  color: #dbe3ec;
}

.excellence-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.excellence-card p {
  font-size: 15px;
  color: #5f6b77;
  line-height: 1.6;
}

/* RIGHT PANEL */
.excellence-highlight {
  background: #ffffff;
  padding: 40px;
  border-radius: 22px;
  border: 1px solid #e7edf3;
}

.excellence-highlight h4 {
  font-size: 22px;
  margin-bottom: 20px;
}

.excellence-highlight ul {
  list-style: none;
  padding: 0;
}

.excellence-highlight li {
  font-size: 15px;
  color: #4f5b66;
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
}

.excellence-highlight li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7a92b2;
  font-weight: 600;
}

/* ================= ANIMATION ================= */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .excellence-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= RIGHT PANEL IMAGE LAYOUT ================= */

.excellence-highlight {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Top content stays clean */
.highlight-content h4 {
  font-size: 22px;
  margin-bottom: 16px;
}

.highlight-content ul {
  list-style: none;
  padding: 0;
}

/* Image container */
.highlight-image {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

/* Image styling */
.highlight-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* ================= PROJECTS DELIVERED (BRAND MATCHED) ================= */

.projects-numbers {
  padding: 90px 0;
  background: #ffffff; /* same soft background used elsewhere */
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.projects-content .section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #7a92b2; /* same muted accent */
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.projects-content h2 {
  font-size: 32px;              /* matches other section headings */
  font-weight: 600;
  margin-bottom: 18px;
  color: #1f2a2e;
}

.projects-content p {
  font-size: 16px;
  color: #5f6b77;
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* BUTTON (same language as rest of site) */
.btn-outline {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 22px;
  border: 1px solid #7a92b2;
  color: #1f2a2e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: #7a92b2;
  color: #ffffff;
}

/* RIGHT STATS */
.projects-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* Each stat feels like content, not marketing */
.stat-box {
  background: #ffffff;
  padding: 26px 24px;
  border-radius: 18px;
  border: 2px solid #e7edf3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7a92b2, #9fb6d9);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(122, 146, 178, 0.15);
  border-color: #7a92b2;
}

.stat-box:hover::before {
  transform: scaleX(1);
}

.stat-box h3 {
  font-size: 36px;        /* softer than earlier version */
  font-weight: 600;
  color: #1f2a2e;
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 14px;
  color: #6b7785;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .projects-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .projects-stats {
    grid-template-columns: 1fr;
  }
}
/* ================= DOTTED GRID DECORATION ================= */

.projects-numbers {
  position: relative;
  overflow: hidden; /* ensures dots stay inside section */
}

/* Top-left dotted grid */
.projects-numbers::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(
    rgba(122, 146, 178, 0.25) 1px,
    transparent 2px
  );
  background-size: 12px 12px;
  opacity: 10;
  pointer-events: none;
}

/* Bottom-right dotted grid */
.projects-numbers::after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(
    rgba(122, 146, 178, 0.25) 1px,
    transparent 2px
  );
  background-size: 12px 12px;
  opacity: 10;
  pointer-events: none;
}
/* ================= PROJECTS PAGE ================= */

.projects-hero {
  padding: 120px 0 70px;
  background: #f5f8fb;
  text-align: center;
}

.projects-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.projects-hero p {
  font-size: 16px;
  color: #5f6b77;
  max-width: 720px;
  margin: auto;
}

/* Project List */
.projects-list {
  padding: 90px 0;
  background: #ffffff;
}

.project-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}

.project-item.reverse {
  direction: rtl;
}

.project-item.reverse > * {
  direction: ltr;
}

.project-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 12px;
}

.project-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #ddd;
  border-radius: 0;
  pointer-events: none;
  z-index: 1;
}

.project-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  border: 4px solid #fff;
  display: block;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}

.project-details h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.project-details p {
  font-size: 15px;
  color: #5f6b77;
  margin-bottom: 16px;
  line-height: 1.6;
}

.project-details ul {
  padding-left: 18px;
  margin-bottom: 22px;
  color: #5f6b77;
  font-size: 14px;
}

.project-tag {
  display: inline-block;
  font-size: 12px;
  color: #7a92b2;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .project-item {
    grid-template-columns: 1fr;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f5f8fb 0%, #ffffff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(122, 146, 178, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: float 20s ease-in-out infinite;
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1f2a2e;
}

.contact-hero p {
  font-size: 17px;
  color: #5f6b77;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-section {
  padding: 90px 0 120px;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  border: 1px solid #e7edf3;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.contact-form-wrapper h2 {
  font-size: 32px;
  margin-bottom: 35px;
  color: #1f2a2e;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1f2a2e;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e7edf3;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: #1f2a2e;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7a92b2;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(122, 146, 178, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a8b3bf;
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #1f2a2e 0%, #2d3e44 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(31, 42, 46, 0.3);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-submit:hover .btn-arrow {
  transform: translateX(5px);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #e7edf3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #7a92b2 0%, #a3b8d5 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.contact-info-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border-color: #7a92b2;
}

.contact-info-card:hover::before {
  transform: scaleY(1);
}

.info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f5f8fb 0%, #e7edf3 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.contact-info-card:hover .info-icon {
  background: linear-gradient(135deg, #7a92b2 0%, #9fb6d9 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.contact-info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f2a2e;
}

.contact-info-card p {
  font-size: 15px;
  color: #5f6b77;
  line-height: 1.6;
  margin-bottom: 8px;
}

.info-subtext {
  font-size: 13px;
  color: #8994a0;
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7a92b2;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.info-link:hover {
  color: #1f2a2e;
  gap: 10px;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

/* ================= ENHANCED NAVIGATION ================= */

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0d6efd;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a.active {
  color: #0d6efd;
}

.header {
  transition: all 0.3s ease;
}

/* ================= ENHANCED BUTTONS ================= */

.btn-primary,
.btn-hero,
.btn-outline {
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-hero::before,
.btn-outline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before,
.btn-hero:hover::before,
.btn-outline:hover::before {
  width: 300px;
  height: 300px;
}

html {
  scroll-behavior: smooth;
}

.badge-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge-item:hover {
  transform: translateY(-8px) scale(1.05);
}

.offer-card {
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(122, 146, 178, 0.08), transparent);
  transition: left 0.5s ease;
}

.offer-card:hover::before {
  left: 100%;
}

.offer-icon {
  transition: transform 0.3s ease;
}

.offer-card:hover .offer-icon {
  transform: scale(1.2) rotate(5deg);
}

.project-item {
  transition: all 0.3s ease;
}

.project-details h2 {
  transition: color 0.3s ease;
}

.project-item:hover .project-details h2 {
  color: #7a92b2;
}

.project-tag {
  position: relative;
  transition: all 0.3s ease;
}

.project-item:hover .project-tag {
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-form-wrapper {
    padding: 35px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-hero {
    padding: 100px 0 60px;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .contact-form-wrapper h2 {
    font-size: 26px;
  }

  .btn-submit {
    padding: 14px 28px;
  }
}

*:focus-visible {
  outline: 2px solid #7a92b2;
  outline-offset: 3px;
}

a:focus,
button:focus {
  outline: 2px solid #7a92b2;
  outline-offset: 2px;
}

::selection {
  background: #7a92b2;
  color: #ffffff;
}

::-moz-selection {
  background: #7a92b2;
  color: #ffffff;
}
