/* Custom CSS for Shaashvat Films Modern Design */

/* Reset and Base Styles */
/* Custom About page styles added by assistant */
.about-hero{position:relative; padding:60px 0 40px;}
.about-hero__bg{position:absolute; inset:0; background-size:cover; background-position:center; filter:brightness(0.6); z-index:0;}
.about-hero__inner{position:relative; z-index:2; padding:48px 24px; max-width:1100px; margin:0 auto; color:#fff;}
.about-hero__title{font-size:40px; margin:8px 0 12px; font-weight:800;color: #999;}
.about-hero__subtitle{color:rgba(255,255,255,0.9); margin-bottom:12px;}
.about-breadcrumb{color:rgba(255,255,255,0.9); margin-top:8px;}
.about-breadcrumb a{color:rgba(255,255,255,0.9); text-decoration:none; opacity:0.95}
.about-breadcrumb .sep{margin:0 8px; color:rgba(255,255,255,0.6)}

.about-main{padding:60px 0 80px;}
.about-section-title{font-size:28px; margin-bottom:20px; font-weight:700}
.about-story{font-size:16px; line-height:1.85; color:#333}
.about-stats{display:flex; gap:18px; list-style:none; padding:0; margin:28px 0 0}
.about-stats .stat-item{flex:1; background:#fafafa; padding:18px; border-radius:10px; text-align:center; box-shadow:0 6px 18px rgba(20,20,20,0.04)}
.about-stats .stat-number{font-size:20px; font-weight:700; color:#111}
.about-stats .stat-label{color:#666; margin-top:6px}

.about-sidebar .about-image img{width:100%; height:100%; object-fit:cover; border-radius:10px; display:block}
.about-image--placeholder{background:#f5f5f5; min-height:260px; display:flex; align-items:center; justify-content:center; border-radius:10px; color:#999}

/* Responsive tweaks */
@media (max-width: 960px){
  .about-hero__title{font-size:28px}
  .about-main{padding:40px 0}
  .about-stats{flex-direction:column}
  /* Ensure title stacks before content on small screens */
  .about-grid{display:grid; grid-template-columns: 1fr; grid-template-areas: "title" "content"; gap:20px}
  .about-col--title, .about-col--content{width:100%;}
  .about-col--title{padding-bottom:8px}
}

/* Small utility */
.kicker{font-size:14px; color:rgba(255,255,255,0.9);}

/* Ensure hero bg doesn't cover header */
.about-hero__bg:before{content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 100%);}

/* Modern two-column layout for About page (image card removed) */
.about-grid{display:grid; grid-template-columns: 260px 1fr; gap:36px; align-items:start; grid-template-areas: "title content";}
.about-col--title{padding-top:30px; grid-area: title}
.about-col--content{grid-area: content}
.about-side-title{font-size:34px; font-weight:800; margin:0 0 18px}
.about-side-sub{color:#666; max-width:260px}
.about-content-center{max-width:720px}

.about-stats{display:flex; gap:18px; list-style:none; padding:0; margin:28px 0 0}
.about-stats .stat-item{flex:1; background:#fff; padding:22px; border-radius:12px; text-align:center; box-shadow:0 10px 30px rgba(20,20,20,0.04);}
.about-stats .stat-number{font-size:22px; font-weight:800}
.about-stats .stat-label{color:#666; margin-top:8px}

@media (max-width: 1024px){
  .about-grid{display:grid; grid-template-columns: 1fr; grid-template-areas: "title" "content"; gap:24px}
  .about-side-title{font-size:28px}
  .about-stats{flex-direction:row; overflow:auto}
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Poppins', sans-serif; */
  font-family: "Jost", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Set Jost as the global UI font but avoid forcing it onto every descendant (prevents breaking icon fonts) */
html, body, #site-wrapper, .site {
  font-family: "Jost", sans-serif;
}

/* Keep monospace where explicitly required */
code, kbd, pre, samp { font-family: "Courier 10 Pitch", Courier, monospace !important; }

/* Ensure Font Awesome icons use their own webfont (do not inherit Jost) */
.fa, .fas, .far, .fal, .fab, [class^="fa-"], [class*=" fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
  font-style: normal;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  background: #0d0d0d;
  color: white;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 0;
  margin-bottom: -1px;
  /* overlap to hide any sub-pixel gap */
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.branding img {
  height: 84px;
  width: auto;
}

.brand-text {
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pr-main-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.pr-main-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.pr-main-menu a:hover {
  color: #e9204f;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  background-color: #000;
}

/* Ensure no spacing under header */
#content,
.site-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

/* Service Section Styles */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  color: #667eea;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-heading h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #6c757d;
}

.service-content {
  padding: 25px;
  text-align: center;
}

.service-title {
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .section-heading h3 {
    font-size: 1.2rem;
  }
}

/* Handle sub-pixel gaps on some browsers */
.hero-section {
  margin-top: -10px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Button Styles */
.pr-button {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.pr-button-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.pr-button-style2-shutouthor {
  background: #e9204f;
  color: white;
  border: 2px solid #e9204f;
}

.pr-button-style2-shutouthor:hover {
  background: transparent;
  color: #e9204f;
}

.pr-button-style1-right {
  background: #333;
  color: white;
  border: 2px solid #333;
}

.pr-button-style1-right:hover {
  background: transparent;
  color: #333;
}

/* Section Styles */
/* .services-section, */
/* .about-section, */
.portfolio-section,
.team-section,
/* ...existing code... */

/* IMPORTANT: Footer overrides to match requested UI (outlined circular icons) */
.site-footer {
  background: #0b0b0b !important;
  padding: 36px 0 !important;
  color: #fff !important;
}

.site-footer .uk-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
}

.site-footer .footer-top {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 28px !important;
  width: 100% !important;
}

.site-footer .footer-top .social {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
}

.site-footer .footer-top .social a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  border: 3px solid #e9204F !important;
  color: #ffffff !important;
  /* white icons */
  background: transparent !important;
  text-decoration: none !important;
  font-size: 20px !important;
  line-height: 1 !important;
  transition: all .18s ease !important;
}

.site-footer .footer-top .social a i {
  display: block !important;
}

.site-footer .footer-top .social a:hover,
.site-footer .footer-top .social a:focus {
  color: #ffffff !important;
  background: #e9204F !important;
  border-color: #e9204F !important;
  box-shadow: 0 10px 30px rgba(233, 32, 79, 0.18) !important;
  transform: translateY(-3px) scale(1.04) !important;
}

.site-footer .footer-bottom p {
  color: #ffffff !important;
  margin: 10px 0 0 !important;
  font-size: 14px !important;
}

@media (max-width: 720px) {
  .site-footer .uk-container {
    align-items: center !important;
    text-align: center !important;
  }

  .site-footer {
    margin-top: 40px !important;
  }

  .site-footer .footer-top {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
  }

  .site-footer .footer-top .links {
    order: 3 !important;
    width: 100% !important;
    margin: 8px 0 0 !important;
  }
}

.testimonials-section,
.services-details-section,
.contact-cta-section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 2.5rem;
  color: #ff1a2a;
  margin-bottom: 10px;
}

.section-heading h3 {
  font-size: 1.8rem;
  color: #333;
  font-weight: 400;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 20px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* About Section */
.about-section {
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.portfolio-content {
  padding: 20px;
}

.portfolio-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.portfolio-category {
  color: #666;
  font-size: 0.9rem;
}

/* Team Section */
.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #e9204f;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center;
}

.member-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.member-role {
  color: #666;
  font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: #333;
}

.author-role {
  color: #666;
  font-weight: 400;
  font-size: 0.9rem;
}

/* Services Details Section */
.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 3rem;
  color: #e9204f;
  margin-bottom: 20px;
}

.service-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-card-text {
  color: #666;
  line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.cta-content h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Footer */
.site-footer {
  background: #0d0d0d;
  color: white;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .header-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .pr-main-menu ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .services-grid,
  .portfolio-grid,
  .team-members,
  .testimonials-grid,
  .services-grid-detailed {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .section-heading h3 {
    font-size: 1.5rem;
  }
}

/* Services Mega Menu Styling */
.services-mega-menu {
  position: relative;
  z-index: 1001;
}

.services-trigger {
  position: relative;
  cursor: pointer;
}

.services-trigger::after {
  content: '▼';
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.services-mega-menu:hover .services-trigger::after {
  transform: rotate(180deg);
}

.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 90vw;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 0;
  overflow: hidden;
}

.services-mega-menu:hover .mega-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
  padding: 32px;
}

.mega-menu-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}

.mega-menu-header h3 {
  color: #1e293b;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
  font-family: 'Poppins', sans-serif;
}

.mega-menu-header p {
  color: #64748b;
  font-size: 16px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.services-grid-mega {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.36s cubic-bezier(.2, .9, .2, 1), box-shadow 0.36s ease, border-color 0.24s ease;
  position: relative;
  overflow: hidden;
}

.service-card-mega {
  background: white;
  transform: translateY(-10px);
  box-shadow: 0 26px 50px rgba(8, 18, 40, 0.16);
  border-color: #667eea;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-mega::before {
  content: '';
  position: absolute;
  left: -120%;
  top: -40%;
  width: 60%;
  height: 180%;
  background: rgba(255, 255, 255, 0.06);
  transform: skewX(-20deg);
  transition: left .6s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
  z-index: 2;
}

.service-card-mega:hover::before {
  left: 120%;
}

.service-card-mega {
  cursor: pointer;
  border: 1px solid #f1f5f9;
}

.service-card-mega:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

.service-image-mega {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.service-image-mega img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(.2, .9, .2, 1), filter 0.36s ease;
}

.service-card-mega:hover .service-image-mega img {
  transform: scale(1.12);
  filter: saturate(1.06) contrast(1.02);
}

.service-placeholder-mega {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.service-content-mega {
  padding: 20px;
}

.service-content-mega h4 {
  color: #1e293b;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  font-family: 'Poppins', sans-serif;
}

.service-content-mega p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.mega-menu-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

.view-all-services {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.view-all-services:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  color: white;
  text-decoration: none;
}

/* Arrow indicator for mega menu */
.mega-menu-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

/* Responsive Mega Menu */
@media (max-width: 768px) {
  .mega-menu-dropdown {
    width: 95vw;
    left: 0;
    transform: none;
  }

  .services-mega-menu:hover .mega-menu-dropdown {
    transform: none;
  }

  .services-grid-mega {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mega-menu-content {
    padding: 24px 20px;
  }

  .mega-menu-header h3 {
    font-size: 24px;
  }
}

/* About page: hero and components moved from inline styles for cleaner markup */
.about-hero{position:relative;margin:0;padding:0}
.about-hero__wrap{position:relative;width:100%;height:420px;overflow:hidden}
.about-hero__bg{position:absolute;inset:0;background-size:cover;background-position:center;z-index:0}
.about-hero__overlay{position:absolute;inset:0;background:linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.35));z-index:1}
.about-hero__inner{position:relative;z-index:2;padding:48px 24px;max-width:1100px;margin:0 auto;color:#fff;text-align:center}
.about-hero__title{font-size:48px;margin:8px 0 12px;font-weight:800;letter-spacing:-1px;line-height:1.02}
.about-hero__subtitle{color:rgba(255,255,255,0.95);margin-bottom:12px}
.hero-cta{padding:14px 34px;font-weight:600;transition:transform .18s ease,box-shadow .18s ease}
.hero-cta:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,0.25)}
.hero-cta.ghost{border:1px solid rgba(255,255,255,0.25);color:#fff}
.scroll-next{position:absolute;left:50%;transform:translateX(-50%);bottom:18px;color:#fff;background:rgba(0,0,0,0.3);padding:10px 12px;border-radius:30px;display:flex;align-items:center;justify-content:center;z-index:3;transition:transform .18s ease}
.scroll-next:hover{transform:translateX(-50%) translateY(-4px)}
.about-section p{line-height:1.8;letter-spacing:0.2px}
.stat-card{background:linear-gradient(180deg,#ffffff,#fbfbfb);border-radius:8px;padding:22px;box-shadow:0 6px 18px rgba(10,10,10,0.04)}
.stat-icon{font-size:28px;color:#1e88e5;display:block;margin-bottom:8px}
.count{font-size:32px;font-weight:700;display:block}
.team-photo{width:100%;height:auto;border-radius:6px;display:block}
.gradient-section{background:linear-gradient(90deg,#f7fafc,#eef2f7);padding:28px;border-radius:8px}
.uk-card:focus{outline:3px solid rgba(30,136,229,0.18);outline-offset:4px}

/* Performance: Use .webp images where possible for faster load. Replace hero image with .webp version in production. */
