/*
 * AKSTARTECH AND ENTERTAINMENT PRIVATE LIMITED - Main Stylesheet
 * Color Scheme: RIL Inspired (Deep Blue, Gold, White)
 */

:root {
  --primary-blue: #0056b3; /* Brighter Royal Blue */
  --secondary-blue: #0084ff; /* Vibrant Electric Blue */
  --accent-gold: #e0b44b; /* Brighter Gold */
  --text-dark: #1a1e21;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
  --gradient-blue: linear-gradient(135deg, #0056b3 0%, #0084ff 100%);
  --gradient-gold: linear-gradient(135deg, #e0b44b 0%, #fbd883 100%);
  --font-main: 'Outfit', sans-serif;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

p {
  line-height: 1.7;
  color: #333;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.text-muted {
  color: #666 !important;
}

/* Utilities */
.text-gold { color: var(--accent-gold) !important; }
.bg-blue { background-color: var(--primary-blue) !important; }
.bg-gold { background-color: var(--accent-gold) !important; }
.bg-gradient-blue { background: var(--gradient-blue); }

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-gold);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Buttons */
.btn-primary {
  background: var(--gradient-blue);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 5px;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 75, 141, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 75, 141, 0.4);
  background: var(--primary-blue);
  color: white;
}

.btn-outline-gold {
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 10px 28px;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  border-radius: 5px;
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: white;
}

/* Navbar */
.navbar {
  background-color: white;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 50px; /* Adjust based on logo needs */
  width: auto;
}

.nav-link {
  color: var(--primary-blue) !important;
  font-weight: 600;
  padding: 10px 20px !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: calc(100% - 40px);
}

.navbar-toggler {
  border: none;
  color: var(--primary-blue);
}

/* Footer */
footer {
  background-color: #0b1e33; /* Very dark blue */
  color: white;
  padding: 60px 0 20px;
}

footer h4 {
  color: white;
  margin-bottom: 25px;
}

footer p, footer a {
  color: #e0e0e0;
}

footer a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Parallax Effect */
.parallax-section {
  background-attachment: fixed !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Page Header (New Banner Style) */
.page-header {
  background: linear-gradient(rgba(0, 30, 60, 0.85), rgba(0, 30, 60, 0.85)), url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 160px 0 100px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header .lead {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #f0f0f0;
}

/* Talent Cards */
.talent-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  height: 400px; /* Fixed height for consistency */
}

.talent-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.talent-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.talent-card:hover .talent-img {
  transform: scale(1.1);
}

.talent-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  padding: 30px 20px;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.talent-card:hover .talent-info {
  transform: translateY(0);
}

.talent-info h5 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--accent-gold);
}

.talent-info p {
  color: #ddd;
  margin-bottom: 0;
  font-size: 1rem;
}

/* Brand Grid / Marquee */
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  height: 100px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  min-width: 200px; /* Ensure fixed width for smooth scroll */
  margin: 0 15px; /* Spacing between items in marquee */
}

.brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.brand-item img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: none; /* Show full color */
  transition: all 0.4s ease;
}

/* Marquee Animation */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite; /* Adjusted speed for readability */
}

.marquee-track:hover {
  animation-play-state: paused; /* Pause on hover */
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Scrolls half the track width (the original set) */
}

/* =========================================
   Masonry Grid for Videos
   ========================================= */
.masonry-grid {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .masonry-grid {
        column-count: 3;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    width: 100%;
}


/* =========================================
   Carousel Controls (Modern)
   ========================================= */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    border: none;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--accent-gold);
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

@media (max-width: 992px) {
    .carousel-control-prev { left: 0; }
    .carousel-control-next { right: 0; }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100%, 100%;
}

/* =========================================
   Home Hero Section Revamp
   ========================================= */
.hero-section-home {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 96px;
    background:
      linear-gradient(120deg, rgba(6, 18, 40, 0.90), rgba(0, 86, 179, 0.28) 55%, rgba(224, 180, 75, 0.12)),
      url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top left, rgba(0, 132, 255, 0.18), transparent 28%),
      linear-gradient(180deg, rgba(4, 13, 29, 0.22) 0%, rgba(4, 13, 29, 0.62) 100%);
    z-index: 1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.35;
    z-index: 1;
}

.hero-orb-one {
    width: 260px;
    height: 260px;
    top: 12%;
    left: 6%;
    background: rgba(0, 132, 255, 0.30);
}

.hero-orb-two {
    width: 230px;
    height: 230px;
    right: 8%;
    bottom: 10%;
    background: rgba(224, 180, 75, 0.26);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.hero-layout {
    min-height: 72vh;
}

.hero-copy {
    max-width: 720px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f7f9ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-brand {
    margin-bottom: 14px;
    color: rgba(255,255,255,0.72);
    font-size: 0.98rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    text-transform: none;
    color: #ffffff;
    text-shadow: 0 12px 30px rgba(0,0,0,0.30);
}

.hero-subtitle {
    max-width: 620px;
    font-size: clamp(1.15rem, 2.1vw, 1.5rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-trust-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust-item {
    min-width: 170px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero-trust-item strong {
    display: block;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-trust-item span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.hero-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-stage-card {
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(3, 10, 23, 0.30);
}

.hero-stage-card-primary {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246,249,255,0.92));
    color: var(--text-dark);
}

.hero-stage-card-primary h3 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-stage-card-primary p {
    margin-bottom: 0;
    color: #4f5a6b;
}

.hero-stage-card-secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.90), rgba(11, 30, 51, 0.92));
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.10);
}

.hero-stage-card-secondary h4 {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 1.35rem;
}

.hero-stage-card-secondary strong {
    color: var(--accent-gold);
    font-size: 2.2rem;
    font-weight: 800;
}

.hero-card-tag {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(224, 180, 75, 0.14);
    color: var(--accent-gold);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-stage-foot {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hero-stage-metric {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
}

.hero-stage-metric span {
    display: block;
    color: rgba(255,255,255,0.74);
    font-size: 0.85rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stage-metric strong {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(0, 86, 179, 0.6);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(0, 86, 179, 0.9);
    transform: translateY(-3px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .hero-layout {
        min-height: auto;
    }

    .hero-copy {
        text-align: center;
        margin: 0 auto;
    }

    .hero-actions,
    .hero-trust-row {
        justify-content: center;
    }

    .hero-stage {
        max-width: 640px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section-home {
        padding: 126px 0 72px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3.8rem);
        line-height: 1.02;
    }

    .hero-brand {
        font-size: 0.82rem;
        letter-spacing: 0.12em;
    }

    .hero-subtitle {
        font-size: 1.04rem;
        margin-bottom: 24px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust-item,
    .hero-stage-metric {
        width: 100%;
    }

    .hero-stage-card {
        padding: 22px;
        border-radius: 22px;
    }

    .hero-stage-card-primary h3 {
        font-size: 1.55rem;
    }

    .hero-stage-card-secondary {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stage-foot {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Modern Portfolio Redesign
   ========================================= */

/* Filter Nav (Modern Pills) */
.nav-pills-modern {
  gap: 15px;
}

.nav-pills-modern .nav-link {
  background: white;
  color: var(--primary-blue);
  border: 1px solid #eee;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-pills-modern .nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: var(--accent-gold);
}

.nav-pills-modern .nav-link.active {
  background: var(--gradient-blue);
  color: white !important;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
  transform: translateY(-2px);
}

.nav-pills-modern .nav-link::after {
  display: none; /* Remove default underline from nav-link */
}

/* Portfolio Cards Modern */
.portfolio-card-modern {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  background: #fff;
  transition: all 0.4s ease;
  cursor: pointer;
  aspect-ratio: 4/3; /* Consistent aspect ratio */
}

.portfolio-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.portfolio-card-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.portfolio-card-modern:hover img {
  transform: scale(1.15);
}

.portfolio-overlay-modern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 30, 60, 0.9) 0%, rgba(0, 86, 179, 0.8) 40%, rgba(0, 86, 179, 0.4) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(2px);
  padding: 20px;
}

.portfolio-card-modern:hover .portfolio-overlay-modern {
  opacity: 1;
}

.portfolio-overlay-modern h5 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: transform 0.4s 0.1s ease, opacity 0.4s 0.1s ease;
  opacity: 0;
}

.portfolio-overlay-modern p {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: transform 0.4s 0.2s ease, opacity 0.4s 0.2s ease;
  opacity: 0;
}

.portfolio-card-modern:hover .portfolio-overlay-modern h5,
.portfolio-card-modern:hover .portfolio-overlay-modern p {
  transform: translateY(0);
  opacity: 1;
}

.btn-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-top: 15px;
  transform: scale(0);
  transition: transform 0.4s 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-card-modern:hover .btn-icon-circle {
  transform: scale(1);
}

.btn-icon-circle:hover {
  background: var(--accent-gold);
  color: white;
}

/* Modern Video Card */
.video-card-modern {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: #000;
  position: relative;
  transition: transform 0.3s ease;
}

.video-card-modern:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.video-card-modern video {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 3px solid var(--accent-gold);
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, black 0%, transparent 100%);
  padding: 20px;
  pointer-events: none; /* Let clicks pass through to video controls if needed, but standard controls usually handle this */
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
  .portfolio-card-modern {
    aspect-ratio: 16/9;
  }
}

.form-status {
  margin-top: 1rem;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section-title-modern {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(0, 86, 179, 0.08);
  color: var(--primary-blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-title-modern h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
}

.section-title-modern p {
  max-width: 700px;
  margin: 0 auto;
  color: #5a6475;
}

.section-title.section-title-modern::after {
  width: 82px;
  height: 5px;
  margin-top: 18px;
}

.brand-showcase-section {
  position: relative;
  background:
    radial-gradient(circle at top center, rgba(0, 132, 255, 0.08), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.brand-showcase-grid {
  margin-top: 10px;
}

.brand-showcase-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid rgba(0, 86, 179, 0.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 15px 40px rgba(11, 30, 51, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
}

.brand-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(11, 30, 51, 0.14);
  border-color: rgba(224, 180, 75, 0.45);
}

.brand-showcase-card .brand-item {
  min-width: auto;
  height: 130px;
}

.team-card-modern {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(0, 86, 179, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(11, 30, 51, 0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(11, 30, 51, 0.16);
}

.team-card-image-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.10), rgba(224, 180, 75, 0.14));
}

.team-card-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card-content {
  padding: 24px;
}

.team-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(0, 86, 179, 0.08);
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-card-modern {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(0, 86, 179, 0.08);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(11, 30, 51, 0.10);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(11, 30, 51, 0.16);
}

.testimonial-quote-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--gradient-gold);
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(224, 180, 75, 0.35);
}

.testimonial-copy {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f3441;
  margin-bottom: 24px;
}

.testimonial-company {
  display: inline-block;
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .brand-showcase-card .brand-item {
    height: 110px;
  }

  .team-card-image {
    height: 300px;
  }

  .testimonial-card-modern {
    padding: 24px;
  }
}


/* =========================================
   Responsive Polish: Tablet & Mobile
   ========================================= */
@media (max-width: 991px) {
  body {
    font-size: 15px;
  }

  p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .section-padding {
    padding: 64px 0;
  }

  .section-title {
    margin-bottom: 34px;
  }

  .section-title h2,
  .section-title-modern h2 {
    font-size: clamp(1.9rem, 4.8vw, 2.5rem);
  }

  .page-header {
    padding: 130px 0 78px;
    background-attachment: scroll;
  }

  .page-header h1 {
    font-size: clamp(2.4rem, 6vw, 3.2rem);
    letter-spacing: 0.06em;
  }

  .page-header .lead {
    font-size: 1.1rem;
  }

  .navbar {
    padding: 12px 0;
  }

  .navbar-brand img {
    height: 42px;
  }

  .nav-link {
    padding: 10px 12px !important;
  }

  .hero-section-home {
    padding: 120px 0 68px;
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    gap: 28px !important;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions,
  .hero-trust-row {
    justify-content: center;
  }

  .hero-stage {
    max-width: 680px;
    margin: 0 auto;
  }

  .hero-stage-card {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-stage-card-primary h3 {
    font-size: 1.7rem;
  }

  .hero-stage-metric,
  .hero-trust-item {
    min-width: 150px;
  }

  .talent-card {
    height: 340px;
  }

  .brand-item {
    min-width: 160px;
    height: 92px;
    margin: 0 10px;
  }

  .brand-item img {
    max-height: 64px;
  }

  .brand-showcase-card {
    padding: 14px;
    border-radius: 20px;
  }

  .brand-showcase-card .brand-item {
    height: 112px;
  }

  .team-card-image {
    height: 300px;
  }

  .team-card-content {
    padding: 20px;
  }

  .testimonial-card-modern {
    padding: 24px;
  }

  .testimonial-copy {
    font-size: 1rem;
    line-height: 1.7;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 42px;
    height: 42px;
  }

  footer {
    padding: 52px 0 18px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .section-padding {
    padding: 48px 0;
  }

  .section-title {
    margin-bottom: 26px;
  }

  .section-title h2,
  .section-title-modern h2 {
    font-size: 1.7rem;
    letter-spacing: 0.01em;
  }

  .section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    padding: 7px 12px;
    margin-bottom: 12px;
  }

  .page-header {
    padding: 108px 0 58px;
  }

  .page-header h1 {
    font-size: 2rem;
    letter-spacing: 0.04em;
  }

  .page-header .lead {
    font-size: 1rem;
  }

  .hero-section-home {
    padding: 108px 0 54px;
  }

  .hero-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding: 8px 12px;
  }

  .hero-brand {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    line-height: 1.02;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 22px;
  }

  .hero-actions .btn,
  .btn-lg {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .hero-trust-row {
    gap: 10px;
  }

  .hero-trust-item,
  .hero-stage-metric {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
  }

  .hero-stage-card {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-stage-card-primary h3 {
    font-size: 1.4rem;
  }

  .hero-stage-card-secondary {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stage-card-secondary strong {
    font-size: 1.8rem;
  }

  .hero-stage-foot {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .display-4 {
    font-size: 2rem;
  }

  .talent-card {
    height: 250px;
    border-radius: 18px;
  }

  .talent-info {
    padding: 18px 16px;
    transform: translateY(0);
  }

  .talent-info h5 {
    font-size: 1.15rem;
  }

  .talent-info p {
    font-size: 0.92rem;
  }

  .brand-showcase-card {
    padding: 12px;
    border-radius: 18px;
  }

  .brand-showcase-card .brand-item {
    height: 92px;
  }

  .brand-item {
    padding: 12px;
    height: 82px;
  }

  .brand-item img {
    max-height: 52px;
  }

  .nav-pills-modern {
    gap: 10px;
    flex-direction: column;
  }

  .nav-pills-modern .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    font-size: 0.92rem;
  }

  .team-card-image {
    height: 250px;
  }

  .team-card-content {
    padding: 18px;
  }

  .team-card-badge {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    padding: 7px 12px;
  }

  .testimonial-card-modern {
    padding: 20px;
    border-radius: 20px;
  }

  .testimonial-copy {
    font-size: 0.96rem;
    margin-bottom: 18px;
  }

  .testimonial-quote-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .masonry-grid {
    column-gap: 1rem;
  }

  .masonry-item {
    margin-bottom: 1rem;
  }

  .video-info {
    padding: 14px;
  }

  .video-info h5 {
    font-size: 1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 38px;
    height: 38px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }

  .card-body.p-5,
  .card-body.p-4 {
    padding: 1.2rem !important;
  }

  footer {
    padding: 44px 0 16px;
  }

  footer h4,
  footer h5 {
    margin-bottom: 14px;
  }

  .footer-bottom {
    margin-top: 24px;
    padding-top: 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .hero-section-home {
    padding: 102px 0 48px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.96rem;
  }

  .brand-showcase-grid .col-6 {
    width: 50%;
  }

  .brand-showcase-card .brand-item {
    height: 84px;
  }

  .brand-item img {
    max-height: 46px;
  }

  .team-card-image {
    height: 220px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }
}
