:root {
  --bg: #f6f4f2;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --surface-dark: #101726;
  --primary: #0f2747;
  --primary-2: #1c3d67;
  --accent: #b8865b;
  --accent-soft: rgba(184, 134, 91, 0.14);
  --text: #1d2430;
  --muted: #6d7480;
  --line: rgba(18, 28, 45, 0.12);
  --shadow: 0 18px 40px rgba(8, 17, 30, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
  --transition: all 0.35s ease;
}

/* ========================================
   Base
======================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}
.clients-grid img {
    width: 100%;
    max-height: 100px;
	padding: 10px;}
/* ========================================
   Utilities
======================================== */

.container {
  width: var(--container);
  margin: 0 auto;
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.section-head.centered {
  justify-content: center;
  text-align: center;
}

.section-tag,
.eyebrow,
.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 12px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  line-height: 1.15;
}

h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.lead {
  color: #525b69;
  font-size: 1.05rem;
}

.center-btn {
  margin-top: 28px;
  text-align: center;
}

.is-hidden {
  display: none;
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

/* ========================================
   Buttons & Links
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.btn:hover {
  background: #9b1b1c;
  box-shadow: 0 14px 24px rgba(14, 29, 53, 0.12);
  color: #fff;
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(15, 39, 71, 0.18);
  color: var(--primary);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
}

.text-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* ========================================
   Header
======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 246, 244, 0.78);
  border-bottom: 1px solid rgba(15, 39, 71, 0.08);
  backdrop-filter: blur(16px);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 10px 26px rgba(14, 24, 40, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 250px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: #304055;
  font-weight: 500;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a:hover::after {
  width: 100%;
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary);
  transition: 0.25s ease;
}

/* ========================================
   Hero
======================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: #08143a;
}

.hero .container {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
}

.hero-slider {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: 760px;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease,
    visibility 0.9s ease;
  will-change: transform, opacity;
  z-index: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 3;
}

.hero-slide.enter-right {
  opacity: 1;
  visibility: visible;
  transform: translateX(100%);
  z-index: 4;
}

.hero-slide.exit-left {
  opacity: 1;
  visibility: visible;
  transform: translateX(-100%);
  z-index: 2;
}

.hero-slide.next {
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 110px;
}

.hero-content .eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: #c79b63;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content h2 {
  max-width: 750px;
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 6vw, 94px);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 0.95;
  text-align: left;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-slide .hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.hero-slide.active .hero-content > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide.active .hero-content .eyebrow {
  transition-delay: 0.15s;
}

.hero-slide.active .hero-content h1,
.hero-slide.active .hero-content h2 {
  transition-delay: 0.28s;
}

.hero-slide.active .hero-content .hero-buttons {
  transition-delay: 0.42s;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 80px));
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-arrow,
.hero-dots {
  pointer-events: auto;
}

.hero-arrow {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  font-size: 30px;
  transition: all 0.3s ease;
}

.hero-arrow:hover {
  background: rgba(199, 155, 99, 0.18);
  border-color: rgba(199, 155, 99, 0.45);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dots button.active {
  width: 34px;
  background: #ffffff;
  border-radius: 999px;
}

/* ========================================
   Profile
======================================== */

.profile-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr 0.95fr;
  align-items: center;
  gap: 28px;
}

.profile-image-card,
.books-panel,
.split-card,
.contact-form,
.contact-content,
.spec-card,
.event-card,
.media-card,
.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.profile-image-card {
  overflow: hidden;
}

.profile-image-card img {
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
}

.profile-content {
  padding: 18px 6px;
}

.profile-points {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.profile-points li {
  position: relative;
  padding-left: 28px;
  color: #4c5665;
}

.profile-points li::before {
  content: "✦";
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--accent);
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.books-panel {
  display: grid;
  gap: 20px;
  padding: 28px;
}

.book-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 241, 0.85));
  border: 1px solid rgba(15, 39, 71, 0.08);
  border-radius: 18px;
}

.book-cover {
  display: grid;
  aspect-ratio: 3 / 4;
  place-items: center;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(10, 20, 35, 0.12);
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}

.book-one {
  background: linear-gradient(145deg, #fff8f2, #efe3d7);
}

.book-two {
  background: linear-gradient(145deg, #f4f7fb, #dde6f2);
}

.floating-card {
  transition: var(--transition);
}

.floating-card:hover {
  transform: translateY(-6px);
}

/* ========================================
   Specializations
======================================== */

.specialization-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.spec-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(12, 32, 66, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-6px);
  border-color: #d9e4f2;
  box-shadow: 0 18px 40px rgba(12, 32, 66, 0.1);
}

.spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #f3f7fc 0%, #eaf1fb 100%);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #183b6b;
}

.spec-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.spec-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

.spec-card p {
  margin: 0;
  color: #5e6b7a;
  font-size: 15px;
  line-height: 1.75;
}

/* ========================================
   Events
======================================== */

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  overflow: hidden;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-8px);
}

.event-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.event-content {
  padding: 22px;
}

.event-date {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.93rem;
  font-weight: 700;
}

/* ========================================
   Media
======================================== */

.media-section {
  overflow: hidden;
  background: #f5f7fb;
}

.media-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.media-carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.media-carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.media-video-card {
  flex: 0 0 calc(33.333% - 19px);
  min-height: 100%;
  padding: 16px 16px 18px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(17, 35, 67, 0.08);
}

.media-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1f1f1f;
  border-radius: 18px;
}

.media-video-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-video-content {
  padding: 24px 18px 0;
  text-align: center;
}

.media-video-content h3 {
  margin: 0;
  color: #182033;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.2;
}

.media-line {
  display: block;
  width: 58px;
  height: 3px;
  margin: 14px auto 22px;
  background: #d7262e;
  border-radius: 20px;
}

.media-video-content p {
  margin: 0;
  color: #4d596b;
  font-size: 18px;
  line-height: 1.65;
}

.media-nav {
  z-index: 3;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(17, 35, 67, 0.12);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-nav:hover {
  box-shadow: 0 12px 28px rgba(17, 35, 67, 0.16);
  transform: translateY(-2px);
}

.media-nav span {
  margin-top: -2px;
  color: #444c5c;
  font-size: 32px;
  line-height: 1;
}

.media-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.media-dot {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid #b8bec8;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.media-dot.active {
  width: 26px;
  background: #d7262e;
  border-color: #d7262e;
}

/* ========================================
   Split Section
======================================== */

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.split-card {
  padding: 34px;
}

.timeline-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  padding-left: 22px;
  border-left: 2px solid rgba(184, 134, 91, 0.35);
}

.timeline-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
}

.timeline-list span {
  color: var(--muted);
}

/* ========================================
   Clients
======================================== */

.clients-section {
  padding-bottom: 70px;
}

.logo-marquee {
  overflow: hidden;
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee 52s linear infinite;
}

.logo-track span {
  min-width: 200px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(10, 22, 35, 0.06);
  color: var(--primary);
  font-weight: 700;
  text-align: center;
}
.logo-track span img{height:80px}
@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ========================================
   Testimonials Marquee
======================================== */

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-bottom: 6px;
  animation: testimonialScroll 54s linear infinite;
}

.testimonial-card {
  width: 340px;
  padding: 30px;
}

.testimonial-card p {
  color: #495364;
  font-size: 1rem;
}

.testimonial-card h4 {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.testimonial-card span {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ========================================
   Contact
======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  gap: 28px;
}

.contact-content,
.contact-form {
  padding: 34px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 39, 71, 0.12);
  border-radius: 16px;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(15, 39, 71, 0.45);
  box-shadow: 0 0 0 4px rgba(15, 39, 71, 0.06);
}

/* ========================================
   Footer
======================================== */

.site-footer {
  margin-top: 40px;
  background: #0d1625;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.8fr;
  gap: 28px;
  padding: 70px 0 38px;
}

.site-footer h4 {
  color: #fff;
  font-size: 1.2rem;
}

.footer-brand-link strong,
.footer-brand-link small {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #02163b;
  color: #fff;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  padding: 18px 0;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

/* ========================================
   Founder Page
======================================== */

.founder-section {
  background: #f8fafc;
}

.founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.founder-photo img {
  display: block;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.founder-intro h2 {
  margin-bottom: 16px;
}

.founder-highlight {
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.7;
}

.founder-quick-points {
  margin-top: 20px;
  padding-left: 18px;
}

.founder-quick-points li {
  margin-bottom: 8px;
  color: #5b6575;
  line-height: 1.7;
}

.founder-content {
  margin-bottom: 40px;
}

.founder-content h3 {
  margin-bottom: 18px;
}

.founder-content p {
  line-height: 1.85;
}

.founder-card {
  margin-bottom: 30px;
  padding: 35px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.founder-card h3 {
  margin-bottom: 18px;
}

.founder-card p {
  line-height: 1.85;
}

.founder-card ul {
  margin: 0;
  padding-left: 20px;
}

.founder-card li {
  margin-bottom: 10px;
  color: #5d6675;
  line-height: 1.75;
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.expertise-grid span {
  padding: 10px 16px;
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

/* ========================================
   Breadcrumbs
======================================== */

.breadcrumb-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: url("../images/hero-1.jpg") center center / cover no-repeat;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(12, 26, 52, 0.75), rgba(12, 26, 52, 0.65));
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-title {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 52px);
}

.breadcrumb-path {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.breadcrumb-path a {
  color: #ffffffcc;
  transition: 0.3s ease;
}

.breadcrumb-path a:hover {
  color: #fff;
}

.breadcrumb-path span {
  color: #ffffffaa;
}

.breadcrumb-path .current {
  color: #c79b63;
  font-weight: 600;
}

/* ========================================
   Specialization Page
======================================== */

.specialization-breadcrumb {
  background: url("../images/hero-1.jpg") center center / cover no-repeat;
}

.specialization-page {
  background: #f7f8fb;
}

.specialization-page-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.specialization-page-intro h2 {
  margin-bottom: 18px;
}

.specialization-page-intro p {
  color: #5d6777;
  font-size: 17px;
  line-height: 1.9;
}

.specialization-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.specialization-page-card {
  position: relative;
  overflow: hidden;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid #e9edf4;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(16, 28, 54, 0.05);
  transition: 0.35s ease;
}

.specialization-page-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b8865b, #0f2747);
}

.specialization-page-card:hover {
  box-shadow: 0 20px 45px rgba(16, 28, 54, 0.1);
  transform: translateY(-8px);
}

.specialization-page-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  background: rgba(184, 134, 91, 0.1);
  border-radius: 18px;
  color: #0f2747;
  font-size: 18px;
  font-weight: 700;
}

.specialization-page-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.3;
}

.specialization-page-card p {
  margin-bottom: 16px;
  color: #5f6877;
  font-size: 15px;
  line-height: 1.8;
}

.specialization-page-card ul {
  margin: 0;
  padding-left: 18px;
}

.specialization-page-card ul li {
  margin-bottom: 10px;
  color: #4e5867;
  font-size: 14px;
  line-height: 1.75;
}

/* ========================================
   Awards Page
======================================== */

.awards-breadcrumb {
  background: url("../images/hero-1.jpg") center center / cover no-repeat;
}

.awards-page {
  background: #f7f8fb;
}

.awards-page-intro {
  max-width: 920px;
  margin: 0 auto 55px;
  text-align: center;
}

.awards-page-intro h2 {
  margin-bottom: 18px;
}

.awards-page-intro p {
  color: #5d6777;
  font-size: 17px;
  line-height: 1.9;
}

.awards-timeline {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 34px;
}

.awards-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 2px;
  background: linear-gradient(to bottom, #b8865b, rgba(15, 39, 71, 0.18));
}

.award-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: start;
  gap: 26px;
  margin-bottom: 28px;
}

.award-item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -28px;
  width: 14px;
  height: 14px;
  background: #b8865b;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(184, 134, 91, 0.12);
}

.award-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 16px;
  background: rgba(184, 134, 91, 0.1);
  border-radius: 16px;
  color: #0f2747;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.award-card {
  padding: 28px;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(16, 28, 54, 0.05);
  transition: 0.35s ease;
}

.award-card:hover {
  box-shadow: 0 18px 40px rgba(16, 28, 54, 0.1);
  transform: translateY(-6px);
}

.award-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.3;
}

.award-card p {
  margin-bottom: 0;
  color: #5b6575;
  font-size: 15px;
  line-height: 1.85;
}

.award-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: #0f2747;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.award-link::after {
  content: "→";
  margin-left: 6px;
  transition: 0.3s ease;
}

.award-link:hover::after {
  transform: translateX(4px);
}

/* ========================================
   Workshops Page
======================================== */

.workshops-breadcrumb {
  background: url("../images/hero-1.jpg") center center / cover no-repeat;
}

.workshops-page {
  background: #f2f3f6;
}

.workshops-intro {
  margin-bottom: 34px;
}

.workshops-intro h2 {
  margin-bottom: 10px;
}

.workshops-intro p {
  max-width: 900px;
  color: #5d6675;
  font-size: 17px;
  line-height: 1.8;
}

.workshops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.workshop-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 26px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid #e4e6eb;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(15, 24, 40, 0.05);
  transition: 0.35s ease;
}

.workshop-card:hover {
  box-shadow: 0 20px 40px rgba(15, 24, 40, 0.1);
  transform: translateY(-6px);
}

.workshop-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e8eaef;
  border-radius: 18px;
}

.workshop-poster img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.poster-zoom {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 10px 14px;
  background: rgba(24, 30, 47, 0.88);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.workshop-content h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.3;
}

.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: #081a39;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.meta-date {
  color: #6c7482;
  font-size: 15px;
}

.workshop-content p {
  max-width: 95%;
  margin-bottom: 24px;
  color: #586171;
  font-size: 16px;
  line-height: 1.9;
}

.workshop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #ff6b4a, #ff3d3d);
  border-radius: 999px;
  box-shadow: 0 18px 30px rgba(255, 82, 82, 0.2);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.workshop-btn:hover {
  box-shadow: 0 22px 34px rgba(255, 82, 82, 0.28);
  color: #fff;
  transform: translateY(-3px);
}

/* ========================================
   Contribution Page
======================================== */

.contribution-breadcrumb {
  background: url("../images/hero-1.jpg") center center / cover no-repeat;
}

.contribution-page {
  background: #f7f8fb;
}

.contribution-intro {
  max-width: 930px;
  margin: 0 auto 52px;
  text-align: center;
}

.contribution-intro h2 {
  margin-bottom: 18px;
}

.contribution-intro p {
  color: #5d6777;
  font-size: 17px;
  line-height: 1.9;
}

.contribution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.contribution-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  overflow: hidden;
  padding: 30px 28px;
  background: #ffffff;
  border: 1px solid #e8edf4;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(16, 28, 54, 0.05);
  transition: 0.35s ease;
}

.contribution-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #b8865b, #0f2747);
}

.contribution-card:hover {
  box-shadow: 0 20px 42px rgba(16, 28, 54, 0.1);
  transform: translateY(-8px);
}

.contribution-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #fffdfb, #f8f5f1);
}

.contribution-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-width: 64px;
  height: 64px;
  background: rgba(184, 134, 91, 0.12);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: #0f2747;
  font-size: 20px;
  font-weight: 700;
}

.contribution-card-content {
  flex: 1;
}

.contribution-card-content h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.3;
}

.contribution-card-content p {
  margin-bottom: 0;
  color: #5b6575;
  font-size: 15px;
  line-height: 1.85;
}

.contribution-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contribution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: rgba(15, 39, 71, 0.06);
  border-radius: 999px;
  color: #0f2747;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.contribution-link:hover {
  background: #0f2747;
  color: #fff;
  transform: translateY(-2px);
}

/* ========================================
   Contact Page
======================================== */

.contact-breadcrumb {
  background: url("../images/hero-1.jpg") center center / cover no-repeat;
}

.contact-page {
  background: #f7f8fb;
}

.contact-page-intro {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.contact-page-intro h2 {
  margin-bottom: 16px;
}

.contact-page-intro p {
  color: #5d6777;
  font-size: 17px;
  line-height: 1.9;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 28px;
}

.contact-info-column,
.contact-form-column {
  display: grid;
  gap: 24px;
}

.contact-info-card,
.contact-social-card,
.contact-form-card,
.contact-map-card {
  position: relative;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e8edf4;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(16, 28, 54, 0.05);
}

.contact-info-card::before,
.contact-social-card::before,
.contact-form-card::before,
.contact-map-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #b8865b, #0f2747);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  overflow: hidden;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-width: 58px;
  height: 58px;
  background: rgba(184, 134, 91, 0.12);
  border-radius: 18px;
  color: #0f2747;
  font-size: 18px;
  font-weight: 700;
}

.contact-info-content h3,
.contact-social-card h3,
.contact-form-card h3,
.contact-map-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.3;
}

.contact-info-content p,
.contact-social-card p,
.contact-form-card p,
.contact-map-card p {
  margin-bottom: 14px;
  color: #5c6676;
  line-height: 1.85;
}

.contact-info-content ul {
  margin: 0;
  padding-left: 18px;
}

.contact-info-content ul li {
  margin-bottom: 10px;
  color: #4f5968;
  line-height: 1.75;
}

.contact-info-content a,
.contact-social-links a {
  color: #0f2747;
  font-weight: 600;
  text-decoration: none;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: rgba(15, 39, 71, 0.06);
  border-radius: 999px;
  transition: 0.3s ease;
}

.contact-social-links a:hover {
  background: #0f2747;
  color: #fff;
  transform: translateY(-2px);
}

.contact-page-form {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #24344d;
  font-size: 14px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #dce3ee;
  border-radius: 16px;
  color: #1d2430;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #b8865b;
  box-shadow: 0 0 0 4px rgba(184, 134, 91, 0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, #0f2747, #1c3d67);
  border: none;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.contact-submit-btn:hover {
  box-shadow: 0 14px 28px rgba(15, 39, 71, 0.18);
  transform: translateY(-3px);
}

.contact-map-placeholder {
  margin-top: 18px;
}

.map-placeholder-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(15, 39, 71, 0.03), rgba(184, 134, 91, 0.04));
  border: 1px dashed #c9d3e2;
  border-radius: 22px;
  text-align: center;
}

.map-placeholder-box span {
  color: #5d6777;
  font-size: 16px;
  font-weight: 600;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 22px;
}

/* ========================================
   Testimonials Grid
======================================== */

.testimonials-section {
  background: linear-gradient(180deg, #f8f5f1 0%, #ffffff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-box {
  height: 100%;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 39, 71, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(9, 20, 35, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-box:hover {
  border-color: rgba(184, 134, 91, 0.28);
  box-shadow: 0 20px 42px rgba(9, 20, 35, 0.1);
  transform: translateY(-8px);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.testimonial-photo {
  width: 78px;
  height: 78px;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(184, 134, 91, 0.18);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(15, 39, 71, 0.08);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-meta h3 {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 1.18rem;
  line-height: 1.3;
}

.testimonial-meta .designation {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
}

.testimonial-text p {
  position: relative;
  margin: 0;
  color: #4f5968;
  font-size: 0.98rem;
  line-height: 1.8;
}

.testimonial-text p::before {
  content: "“";
  display: block;
  margin-bottom: -10px;
  color: rgb(184 134 91 / 39%);
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1;
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 1199px) {
  .hero-slide {
    min-height: 580px;
    background-position: 72% center;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 560px;
    font-size: clamp(42px, 5vw, 72px);
  }

  .specialization-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-video-card {
    flex: 0 0 calc(50% - 14px);
  }

  .media-video-content h3 {
    font-size: 21px;
  }

  .media-video-content p {
    font-size: 16px;
  }

  .founder-grid {
    grid-template-columns: 340px 1fr;
    gap: 36px;
  }

  .founder-card {
    padding: 30px;
  }

  .specialization-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workshops-grid {
    grid-template-columns: 1fr;
  }

  .contribution-grid {
    grid-template-columns: 1fr;
  }

  .contribution-card.featured {
    grid-column: span 1;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .profile-grid,
  .media-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .event-grid,
  .split-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-image-card img {
    min-height: 400px;
  }
}

@media (max-width: 991px) {
  .hero .container,
  .hero-controls {
    width: calc(100% - 32px);
  }

  .hero-slide {
    min-height: 620px;
    align-items: flex-start;
    background-position: 82% bottom;
    background-size: cover;
  }

  .hero-content {
    padding-top: 90px;
    padding-bottom: 130px;
  }

  .hero-content .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 290px;
    font-size: clamp(34px, 9vw, 52px);
    line-height: 0.98;
  }

  .hero-buttons {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-buttons .btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-controls {
    bottom: 18px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .main-nav {
    position: fixed;
    inset: 86px 20px auto 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 39, 71, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-slider,
  .hero-content {
    min-height: 640px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .founder-photo {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .founder-intro {
    text-align: left;
  }

  .founder-content {
    margin-bottom: 30px;
  }

  .founder-card {
    margin-bottom: 24px;
    padding: 28px;
  }

  .award-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .award-year {
    width: fit-content;
  }
}

@media (max-width: 920px) {
  .main-nav {
    inset: 86px 20px auto 20px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 70px 0;
  }

  .container {
    width: min(calc(100% - 28px), 1180px);
  }

  .header-inner {
    min-height: 78px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-slider,
  .hero-content {
    min-height: 600px;
  }

  .hero-slide {
    border-radius: 0 0 24px 24px;
  }

  .hero-buttons,
  .profile-actions,
  .section-head {
    align-items: flex-start;
  }

  .section-head {
    flex-direction: column;
  }

  .hero-controls {
    margin-top: -76px;
  }

  .specialization-grid,
  .event-grid,
  .split-grid,
  .field-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    width: 300px;
  }

  .specialization-grid {
    gap: 18px;
  }

  .spec-card {
    padding: 22px 18px;
  }

  .spec-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
  }

  .spec-icon svg {
    width: 34px;
    height: 34px;
  }

  .spec-card h3 {
    font-size: 20px;
  }

  .media-carousel-wrap {
    position: relative;
    gap: 10px;
    padding: 0 6px;
  }

  .media-carousel-track {
    gap: 16px;
  }

  .media-video-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 12px 12px 16px;
    border-radius: 18px;
  }

  .media-video-content {
    padding: 20px 10px 0;
  }

  .media-video-content h3 {
    font-size: 18px;
    letter-spacing: 1.4px;
  }

  .media-video-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .media-nav {
    position: absolute;
    top: 34%;
    z-index: 5;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
  }

  .media-nav span {
    font-size: 26px;
  }

  .media-prev {
    left: -4px;
  }

  .media-next {
    right: -4px;
  }

  .founder-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .founder-grid {
    gap: 22px;
    margin-bottom: 32px;
  }

  .founder-intro h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .founder-highlight {
    font-size: 15px;
    line-height: 1.7;
  }

  .founder-quick-points {
    padding-left: 18px;
  }

  .founder-content p,
  .founder-card p,
  .founder-card li,
  .founder-quick-points li {
    font-size: 15px;
    line-height: 1.75;
  }

  .founder-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .founder-card h3,
  .founder-content h3 {
    font-size: 24px;
    line-height: 1.3;
  }

  .expertise-grid {
    gap: 10px;
  }

  .expertise-grid span {
    padding: 9px 14px;
    font-size: 13px;
  }

  .specialization-page-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .specialization-page-intro {
    margin-bottom: 34px;
  }

  .specialization-page-intro p {
    font-size: 15px;
    line-height: 1.8;
  }

  .specialization-page-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .specialization-page-card h3 {
    font-size: 21px;
  }

  .specialization-page-card p,
  .specialization-page-card ul li {
    font-size: 14px;
  }

  .awards-page-intro {
    margin-bottom: 36px;
  }

  .awards-page-intro p {
    font-size: 15px;
    line-height: 1.8;
  }

  .awards-timeline {
    padding-left: 24px;
  }

  .awards-timeline::before {
    left: 8px;
  }

  .award-item::before {
    left: -20px;
    width: 12px;
    height: 12px;
  }

  .award-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .award-card h3 {
    font-size: 21px;
  }

  .award-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .award-year {
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
  }

  .workshops-intro p {
    font-size: 15px;
    line-height: 1.75;
  }

  .workshop-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
    border-radius: 18px;
  }

  .workshop-poster img {
    height: auto;
    max-height: 320px;
    object-fit: cover;
  }

  .workshop-content h3 {
    font-size: 22px;
  }

  .workshop-content p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.75;
  }

  .meta-tag {
    padding: 7px 12px;
    font-size: 12px;
  }

  .meta-date {
    font-size: 14px;
  }

  .workshop-btn {
    width: 100%;
    min-width: 100%;
    padding: 13px 18px;
  }

  .poster-zoom {
    bottom: 10px;
    left: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .contribution-intro {
    margin-bottom: 34px;
  }

  .contribution-intro p {
    font-size: 15px;
    line-height: 1.8;
  }

  .contribution-card {
    gap: 16px;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .contribution-number {
    width: 54px;
    min-width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 17px;
  }

  .contribution-card-content h3 {
    font-size: 21px;
  }

  .contribution-card-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .contribution-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .contact-page-intro {
    margin-bottom: 34px;
  }

  .contact-page-intro p {
    font-size: 15px;
    line-height: 1.8;
  }

  .contact-info-card,
  .contact-social-card,
  .contact-form-card,
  .contact-map-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .contact-info-card {
    flex-direction: column;
    gap: 14px;
  }

  .contact-info-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 16px;
  }

  .contact-info-content h3,
  .contact-social-card h3,
  .contact-form-card h3,
  .contact-map-card h3 {
    font-size: 21px;
  }

  .contact-info-content p,
  .contact-social-card p,
  .contact-form-card p,
  .contact-map-card p,
  .contact-info-content ul li {
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-submit-btn,
  .contact-social-links a {
    width: 100%;
  }

  .map-placeholder-box,
  .contact-map-card iframe {
    min-height: 260px;
    border-radius: 18px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial-box {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .testimonial-top {
    align-items: flex-start;
  }

  .testimonial-photo {
    width: 68px;
    height: 68px;
  }

  .testimonial-meta h3 {
    font-size: 1.05rem;
  }

  .testimonial-meta .designation {
    font-size: 0.88rem;
  }
}

@media (max-width: 575px) {
  .hero-slide {
    min-height: 560px;
    background-position: 86% bottom;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 250px;
    font-size: 38px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .founder-intro h2 {
    font-size: 28px;
  }

  .founder-highlight,
  .founder-content p,
  .founder-card p,
  .founder-card li,
  .founder-quick-points li {
    font-size: 14px;
  }

  .founder-card {
    padding: 20px 16px;
  }

  .expertise-grid span {
    width: 100%;
    border-radius: 14px;
    text-align: center;
  }
}
/* Section spacing */
.cj-media-block {
  margin-bottom: 60px;
}

/* Card look */
.cj-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Grid layout */
.cj-media-block__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  margin-bottom:16px;
  align-items: center;
}

/* Video wrapper */
.cj-media-videoWrap iframe,
.cj-media-imageWrap img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
	border: 1px solid #ccc;
    padding: 10px;

}

/* Fix iframe height */
.cj-media-videoWrap iframe {
  min-height: 300px;
}

/* Content section */
.cj-media-block__content {
  padding: 20px 10px;
}

/* Tag */
.cj-media-tag {
  display: inline-block;
  background: #f3f4f6;
  color: #555;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Title */
.cj-media-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Description */
.cj-media-desc {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Meta section */
.cj-media-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Meta item */
.cj-media-metaItem {
  display: flex;
  flex-direction: column;
}

/* Labels */
.cj-media-metaLabel {
  font-size: 12px;
  color: #999;
}

/* Values */
.cj-media-metaValue {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

/* Divider */
.cj-media-metaDivider {
  width: 1px;
  height: 30px;
  background: #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
  .cj-media-block__grid {
    grid-template-columns: 1fr;
  }

  .cj-media-videoWrap iframe {
    min-height: 220px;
  }
}

/* Gallery Grid */
/* Heading */
.cj-gallery-heading {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: left;
}
.cj-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}
.cj-gallery-item img {
width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;}
.cj-gallery img {
  width: 100%;
  cursor: pointer;
  transition: 0.3s ease;
}
.cj-gallery img {
  width: 100%;
  cursor: pointer;
  transition: 0.3s ease;
}

.cj-gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.cj-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Show when targeted */
.cj-lightbox:target {
  display: flex;
}

/* Enlarged image */
.cj-lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}

/* Close button */
.cj-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  text-decoration: none;
}

/* Navigation arrows */
.cj-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;
}

/* Left */
.cj-prev {
  left: 20px;
}

/* Right */
.cj-next {
  right: 20px;
}

/* Hover effect */
.cj-nav:hover {
  color: #ddd;
}

/* Lightbox base (if not added) */
.cj-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.cj-lightbox:target {
  display: flex;
}

.cj-lightbox img {
  max-width: 85%;
  max-height: 80%;
  border-radius: 10px;
}

/* Close button */
.cj-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  text-decoration: none;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

/* Base menu */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  text-decoration: none;
  padding: 8px;
  display: block;
  color: #222;
}

/* Dropdown */
.main-nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: none;
  min-width: 180px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding:0;
}

/* Show dropdown on hover */
.main-nav ul li:hover > ul {
  display: block;
}

/* Dropdown items */
.main-nav ul li ul li {
  width: 100%;
}

.main-nav ul li ul li a {
  padding: 10px;
/*  font-size:13px;*/
}

/* Optional arrow */
.main-nav ul li.menu-item-has-children > a::after {
  content: " ▼";
  font-size: 10px;

    position: absolute;
    left: 62px; 
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transition: var(--transition);
    top: 16px;
  
}
/* Desktop (keep your existing hover) */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
}

/* Hover only for desktop */
@media (min-width: 769px) {
  .main-nav ul li:hover > ul {
    display: block;
  }
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {

  .main-nav {
    display: none;
    width: 100%;
  }

  .main-nav.active,.main-nav.open {
            display: block;
        padding: 0;
        left: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  /* 🔥 IMPORTANT: disable hover behavior */
  .main-nav ul li:hover > ul {
    display: none;
  }

  /* hide dropdown */
  .main-nav ul li ul {
    display: none;
    position: static;
  }

  /* show when active */
  .main-nav ul li.active > ul {
    display: block;
  }
	
	.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
	
}
.hidden-fields-container {
  display: none;
}
p.cj-gallery-title {
    padding: 0px;
    /*background-color: #981617;*/
    color: #fff;
}

#whatsapp-contact-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:#fff;
    padding:14px 22px;
    border-radius:50px;
    font-family:Arial,sans-serif;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:0 8px 25px rgba(0,0,0,0.2);
    z-index:9999;
    transition:0.3s;
}
#whatsapp-contact-btn:hover{
    transform:translateY(-3px);
}

#whatsapp-popup{
    position:fixed;
    bottom:95px;
    right:25px;
    width:320px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 40px rgba(0,0,0,0.25);
    overflow:hidden;
    display:none;
    z-index:99999;
    font-family:Arial,sans-serif;
}

.whatsapp-header{
    background:#25D366;
    color:#fff;
    padding:18px;
    font-size:18px;
    font-weight:600;
}

.whatsapp-body{
    padding:18px;
}

.whatsapp-body input,
.whatsapp-body textarea{
    width:100%;
    margin-bottom:12px;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:14px;
    outline:none;
    box-sizing:border-box;
}

.whatsapp-body textarea{
    resize:none;
    height:90px;
}

.whatsapp-submit{
    width:100%;
    background:#25D366;
    color:#fff;
    border:none;
    padding:13px;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.whatsapp-submit:hover{
    background:#1ebe5d;
}