/* Common Styles for All Pages */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Times New Roman", serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  padding-top: 60px; /* Add padding to account for fixed header */
}

/* Mobile-first approach - Base styles for mobile */
/* Enhanced Mobile Touch Optimization */
* {
  -webkit-tap-highlight-color: rgba(245, 198, 69, 0.3);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection for content */
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
div,
article,
section {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Improved touch targets */
a,
button,
input,
textarea,
select {
  min-height: 44px;
  min-width: 44px;
  touch-action: manipulation;
}

/* Header Styles */
.site-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 0.75rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  color: #f5c645;
  font-size: 32px;
  font-weight: normal;
  font-family: "avenir-lt-w01_85-heavy1475544", sans-serif;
  letter-spacing: 0.01em;
  text-decoration: none;
  z-index: 1001;
  outline: none !important;
}

.logo:hover,
.logo:focus,
.logo:active {
  color: #f5c645;
  outline: none !important;
  text-decoration: none !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  transition: color 0.3s ease;
  min-height: 44px;
  min-width: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  outline: none !important;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus,
.mobile-menu-toggle:active {
  color: #f5c645;
  outline: none !important;
}

.mobile-menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  margin-left: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.nav-item {
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  padding: 8px;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: "helvetica-w01-roman", "helvetica-w02-roman",
    "helvetica-lt-w10-roman", sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
  text-transform: none !important;
  transition: none !important;
  border-radius: 0 !important;
  border: 0 solid #ccc !important;
  background: rgba(255, 255, 255, 0) !important;
  box-shadow: none !important;
  outline: none !important;
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active {
  color: #1d67cd !important;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0) !important;
  border: 0 solid #ccc !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.nav-link.active {
  color: #1d67cd !important;
  text-decoration: none !important;
  background: rgba(247, 247, 247, 0) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #222222;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(245, 198, 69, 0.2);
  }

  .main-navigation.active {
    max-height: 400px;
    opacity: 1;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
  }

  .nav-item {
    margin: 0.5rem 0;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/* Desktop Navigation - Ensure it's visible */
@media (min-width: 769px) {
  .main-navigation {
    display: flex !important;
    position: static !important;
    opacity: 1 !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* Override any Wix-specific styles that might cause container effects */
.nav-item,
.nav-link,
.nav-menu li,
.nav-menu a {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
}

/* Remove any container styling from navigation items */
.nav-item {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

/* Ensure clean text styling */
.nav-menu {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 2rem;
  text-align: center;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-family: "Avenir", sans-serif;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  padding: 1rem 2rem;
  border-radius: 8px;
  min-height: 44px; /* Touch target size */
  display: flex;
  align-items: center;
  justify-content: center;
}

nav a:hover,
nav a.active {
  color: #f5c645;
  background-color: rgba(245, 198, 69, 0.1);
  transform: scale(1.05);
}

/* Mobile-specific navigation improvements */
@media (max-width: 768px) {
  nav {
    padding: 1rem 0;
  }

  nav a {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
    margin: 0.25rem 0;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    width: 90%;
    max-width: 300px;
  }

  nav a:hover,
  nav a.active {
    border-color: #f5c645;
    background-color: rgba(245, 198, 69, 0.15);
    transform: scale(1.02);
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./AB Sir Homepage.avif");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position: relative;
  color: white;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  bottom: 8%;
  left: 5%;
  max-width: 350px;
  width: auto;
  background-color: white;
  color: #333;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: left;
  overflow: visible;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-content::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 70%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid white;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  filter: drop-shadow(2px 0 4px rgba(0, 0, 0, 0.1));
}

.hero-heading {
  font-size: 30px;
  line-height: 1.3em;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #282626;
  margin: 0 0 1.5rem 0;
  word-wrap: break-word;
  hyphens: auto;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #666;
}

/* Hero Button Styles */
.hero-button {
  margin-top: 1.5rem;
}

.button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.button-label {
  font-weight: 600;
  font-size: 1rem;
}

.button-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #333;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f5c645;
  color: #000;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.15s ease;
  min-height: 44px;
  box-shadow: 0 4px 15px rgba(245, 198, 69, 0.3);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.cta-button:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 198, 69, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: 700;
}

/* Form Styles - Mobile Optimized */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
  font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px; /* Prevents zoom on iOS */
  font-family: inherit;
  transition: border-color 0.3s ease;
  background-color: white;
  min-height: 44px; /* Touch target size */
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #f5c645;
  box-shadow: 0 0 0 3px rgba(245, 198, 69, 0.1);
}

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

.submit-btn {
  background: #f5c645;
  color: #000;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.15s ease;
  min-height: 44px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(245, 198, 69, 0.3);
}

.submit-btn:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 198, 69, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Blog Grid - Mobile Optimized */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 200px;
  background: linear-gradient(45deg, #f5c645, #e6b800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.4;
}

.blog-excerpt {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1rem;
}

.read-more {
  color: #f5c645;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #e6b800;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  min-height: 44px;
}

.blog-date {
  font-size: 0.9rem;
  color: #999;
  display: flex;
  align-items: center;
}

.blog-footer .read-more {
  margin: 0;
  display: flex;
  align-items: center;
}

/* Filter Buttons - Mobile Optimized */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.filter-btn {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  color: #666;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-btn:hover,
.filter-btn.active {
  background: #f5c645;
  border-color: #f5c645;
  color: #000;
}

/* Pagination - Mobile Optimized */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  padding: 0.8rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  text-decoration: none;
  color: #666;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination a:hover {
  background: #f5c645;
  border-color: #f5c645;
  color: #000;
}

.pagination .current {
  background: #f5c645;
  border-color: #f5c645;
  color: #000;
  font-weight: 600;
}

/* Newsletter Section - Mobile Optimized */
.newsletter-section {
  background: #f8f9fa;
  padding: 3rem 1rem;
  margin-top: 3rem;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.newsletter-container p {
  color: #666;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  min-height: 44px;
}

.newsletter-input:focus {
  outline: none;
  border-color: #f5c645;
}

.newsletter-btn {
  background: #f5c645;
  color: #000;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.newsletter-btn:hover {
  background: #e6b800;
}

/* Success and Error Messages */
.success-message,
.error-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.success-message {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error-message {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.error {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Footer */
#main-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: rgb(255, 255, 255);
  padding: 0;
  margin-top: 3rem;
  position: relative;
  font-family: "poppins-v2", sans-serif;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

#main-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

#footer-widgets {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 0.25rem;
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  justify-items: start;
}

.footer-widget {
  min-width: 0;
}

.footer-logo {
  grid-column: 1;
  justify-self: start;
}

.footer-nav {
  grid-column: 2;
  justify-self: center;
}

.footer-legal {
  grid-column: 3;
  justify-self: center;
  margin-right: 0.01px;
}

.footer-services {
  grid-column: 4;
  justify-self: center;
  margin-left: 0.01px;
}

.footer-social {
  grid-column: 5;
  justify-self: center;
}

.textwidget {
  margin: 0;
}

.footer-logo-img {
  height: 200px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
  margin: 0 auto 0 -20px;
}

.footer-section-title {
  color: #f5c645;
  font-size: 16px !important;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #f5c645;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}

.footer-links-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f5c645;
  font-size: 1.2rem;
  font-weight: bold;
  top: 0;
}

.footer-links-list a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  transition: color 0.3s ease;
  font-family: "poppins-v2", sans-serif;
  line-height: 1.4;
}

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

/* Footer Social Media Icons */
.footer-widget h4 {
  color: #f5c645;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.footer-widget .social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.footer-widget .social-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
  color: #333333;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 2px;
}

.footer-widget .social-icon:hover {
  transform: translateY(-3px);
  background: #f8f8f8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Social Media Icon Colors */
.footer-widget .social-icon .fa-youtube {
  color: #ff0000;
}

.footer-widget .social-icon .fa-instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-widget .social-icon .fa-linkedin {
  color: #0077b5;
}

.footer-widget .social-icon .fa-medium {
  color: #000000;
}

.footer-widget .social-icon svg {
  color: #000000;
}

/* Copyright Bar */
#footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}

#footer-bottom .container {
  width: 100%;
  padding: 0 1rem;
}

#footer-info {
  color: rgb(255, 255, 255);
  font-size: 14px;
  margin: 0;
  font-family: "poppins-v2", sans-serif;
  font-weight: 300;
  opacity: 0.8;
}

#footer-info a {
  color: #f5c645;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer-info a:hover {
  color: rgb(255, 255, 255);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  #footer-widgets {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 2.5rem 0;
  }

  .footer-logo {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer-nav {
    grid-column: 1;
  }

  .footer-legal {
    grid-column: 2;
  }

  .footer-services {
    grid-column: 1;
  }

  .footer-social {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  #footer-widgets {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 2rem 0;
  }

  .footer-logo {
    grid-column: 1;
  }

  .footer-nav {
    grid-column: 1;
  }

  .footer-legal {
    grid-column: 1;
  }

  .footer-services {
    grid-column: 1;
  }

  .footer-social {
    grid-column: 1;
  }

  .footer-widget {
    align-items: center;
  }

  .footer-links-list li {
    text-align: center;
    padding-left: 0;
  }

  .footer-links-list li::before {
    display: none;
  }

  .footer-section-title {
    text-align: center;
    margin: 0 auto 1.5rem auto;
  }

  #footer-bottom {
    padding: 0.75rem;
  }

  #footer-info {
    font-size: 12px;
  }

  .footer-widget .social-icons {
    justify-content: center;
    gap: 0.5rem;
  }

  .footer-widget .social-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

/* Mobile-specific enhancements */
.mobile-device .cta-button,
.mobile-device .submit-btn,
.mobile-device .filter-btn,
.mobile-device .newsletter-btn {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.mobile-device .cta-button:active,
.mobile-device .submit-btn:active,
.mobile-device .filter-btn:active,
.mobile-device .newsletter-btn:active {
  transform: scale(0.98);
}

/* Enhanced mobile animations */
@media (max-width: 768px) {
  .hero-content {
    animation: fadeInUp 0.8s ease-out;
  }

  .cta-button {
    animation: fadeInUp 1s ease-out 0.2s both;
  }

  .section-title {
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading animations */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Image loading states */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.loaded {
  opacity: 1;
}

/* Mobile viewport optimizations */
@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
    margin-top: 60px;
  }

  .hero-content {
    margin: 1rem;
    padding: 1.5rem;
    max-width: 95%;
    width: auto;
    border-radius: 12px;
  }

  .hero-content h1 {
    font-size: 1.4rem;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
    font-weight: 700;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  /* Enhanced mobile typography */
  body {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Better mobile spacing */
  .main-content {
    padding: 1.5rem 1rem;
  }

  /* Mobile-optimized buttons */
  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
  }

  .main-content {
    padding: 1.5rem 1rem;
  }

  .blog-card {
    margin-bottom: 1rem;
  }

  .filter-buttons {
    gap: 0.3rem;
  }

  .filter-btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }

  .pagination {
    gap: 0.3rem;
  }

  .pagination a,
  .pagination span {
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
  }

  .newsletter-section {
    padding: 2rem 1rem;
  }

  .newsletter-container h2 {
    font-size: 1.6rem;
  }
}

/* Tablet Styles */
@media (min-width: 768px) {
  .header-container {
    padding: 0 2rem;
  }

  .logo {
    font-size: 1.6rem;
  }

  .mobile-menu-toggle {
    display: none !important;
  }

  nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    max-height: none;
    opacity: 1;
    overflow: visible;
    box-shadow: none;
  }

  nav ul {
    flex-direction: row;
    gap: 1.5rem;
  }

  nav a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 400px;
    padding: 2rem;
    text-align: left;
    overflow: hidden;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
    word-wrap: break-word;
  }

  .hero-content::after {
    right: -25px;
    top: 50%;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 25px solid white;
    filter: drop-shadow(2px 0 4px rgba(0, 0, 0, 0.1));
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .main-content {
    padding: 3rem 2rem;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .filter-buttons {
    gap: 1rem;
  }

  .filter-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .newsletter-form {
    flex-direction: row;
    max-width: 500px;
  }

  .newsletter-input {
    flex: 1;
  }

  .newsletter-btn {
    flex-shrink: 0;
  }

  .site-footer .footer-links-section {
    align-items: center;
    text-align: center;
  }

  .site-footer .policy-links,
  .site-footer .additional-links {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .site-footer .policy-links a,
  .site-footer .additional-links a {
    font-size: 13px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  header {
    padding: 1rem 0;
  }

  .logo {
    font-size: 1.8rem;
  }

  nav ul {
    gap: 2rem;
  }

  .hero-content {
    max-width: 450px;
    padding: 2.5rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .main-content {
    padding: 4rem 2rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 1.2rem;
  }

  .submit-btn {
    padding: 1.2rem 2.5rem;
    width: auto;
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .hero-content {
    max-width: 500px;
  }
}

/* Touch-friendly improvements */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
a {
  min-height: 44px;
  min-width: 44px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Prevent horizontal scroll on mobile */
body {
  overflow-x: hidden;
  width: 100%;
}

/* Remove focus outlines to prevent visual indicators on click */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
}

/* Remove all visual indicators from links */
a {
  outline: none !important;
  text-decoration: none !important;
}

a:active,
a:focus,
a:visited {
  outline: none !important;
  text-decoration: none !important;
}

/* Remove any default browser styling */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection for better UX */
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
div {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Animation for mobile menu */
@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

nav.active ul {
  animation: fadeIn 0.3s ease;
}

/* Better mobile typography */
@media (max-width: 480px) {
  body {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .hero-content h1 {
    font-size: 1.4rem;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .blog-title {
    font-size: 1.2rem;
  }

  .filter-btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }

  .pagination a,
  .pagination span {
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
  }

  /* Ensure no horizontal overflow */
  .hero,
  .hero-content,
  .main-content,
  .container {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Mobile responsive speech bubble tail */
  .hero-content::after {
    right: -20px;
    border-left: 20px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }

  .hero-heading {
    font-size: 24px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero {
    background-image: url("./AB Sir Homepage.avif");
  }
}

/* Print styles */
@media print {
  header,
  .site-footer,
  .mobile-menu-toggle,
  .cta-button,
  .submit-btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .hero {
    height: auto;
    min-height: auto;
    margin-top: 0;
  }

  .hero-content {
    position: static;
    margin: 1rem 0;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* General Container Class */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Places I've Been a Speaker At Section */
.speaking-places {
  padding: 120px 2rem 80px;
  background: #f8f9fa;
  margin-top: 40px;
}

.places-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.places-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.places-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  min-height: 120px;
}

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

.logo-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item:hover img {
  transform: scale(1.05);
}

/* Reusable class for all logos - consistent sizing and styling */
.logo-item img {
  transform: scale(1.6);
  max-height: 70px;
  max-width: 90%;
  object-fit: contain;
  transform-origin: center;
  margin: 0 auto;
  display: block;
}

/* Specific logos that need to be zoomed out */
.logo-item img[src="I Spoke at/FICCI.png"] {
  transform: scale(1);
}

.logo-item img[src="I Spoke at/GLIPA_Logo.webp"] {
  transform: scale(1.1);
}

.logo-item img[src="I Spoke at/images.png"] {
  transform: scale(1);
}

.logo-item img[src="I Spoke at/ICAR-logo.jpg"] {
  transform: scale(1);
}

.logo-item img[src="I Spoke at/logoM-removebg-preview-1.png"] {
  transform: scale(1);
}

.logo-item
  img[src="I Spoke at/indian-society-of-heating-refrigerating-and-air-conditioning-engineers-ishrae-logo-vector.png"] {
  transform: scale(1);
}

.logo-item img[src="I Spoke at/Istitutions innovation council HRD.png"] {
  transform: scale(1.2);
}

.logo-item img[src="I Spoke at/The Founder Lab.jpg"] {
  transform: scale(1);
}

.logo-item img[src="I Spoke at/Institution_of_Engineers.svg"] {
  transform: scale(1);
}

.logo-item img[src="I Spoke at/Bionest_logo.jpg"] {
  transform: scale(1.2);
}

.logo-item img[src="I Spoke at/bharati-vidyapeeth-university.png"] {
  transform: scale(1);
}

/* Specific styling for 6th image (DELL) to fix centering and prevent cutting */
.logo-item img[src="I Spoke at/images (1).png"] {
  transform: scale(1.6);
  max-height: 70px;
  max-width: 75%;
  object-fit: contain;
  transform-origin: center;
  margin: 0 auto;
  display: block;
  margin-left: 35px;
}

/* Reusable container styling for all logos */
.logo-item {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.logo-item:hover img {
  transform: scale(1.65);
}

/* Hover effect for zoomed out logos */
.logo-item:hover img[src="I Spoke at/FICCI.png"] {
  transform: scale(1.05);
}

.logo-item:hover img[src="I Spoke at/GLIPA_Logo.webp"] {
  transform: scale(1.15);
}

.logo-item:hover img[src="I Spoke at/images.png"] {
  transform: scale(1.05);
}

.logo-item:hover img[src="I Spoke at/ICAR-logo.jpg"] {
  transform: scale(1.05);
}

.logo-item:hover img[src="I Spoke at/logoM-removebg-preview-1.png"] {
  transform: scale(1.05);
}

.logo-item:hover
  img[src="I Spoke at/indian-society-of-heating-refrigerating-and-air-conditioning-engineers-ishrae-logo-vector.png"] {
  transform: scale(1.05);
}

.logo-item:hover img[src="I Spoke at/Istitutions innovation council HRD.png"] {
  transform: scale(1.25);
}

.logo-item:hover img[src="I Spoke at/images (1).png"] {
  transform: scale(1.65);
}

.logo-item:hover img[src="I Spoke at/The Founder Lab.jpg"] {
  transform: scale(1.05);
}

.logo-item:hover img[src="I Spoke at/Institution_of_Engineers.svg"] {
  transform: scale(1.05);
}

.logo-item:hover img[src="I Spoke at/Bionest_logo.jpg"] {
  transform: scale(1.25);
}

.logo-item:hover img[src="I Spoke at/bharati-vidyapeeth-university.png"] {
  transform: scale(1.05);
}

/* Mobile Responsive for Speaking Places */
@media (max-width: 768px) {
  .speaking-places {
    padding: 80px 1rem 60px;
    margin-top: 20px;
  }

  .places-content h2 {
    font-size: 2rem;
  }

  .places-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .logo-item {
    padding: 1rem;
    min-height: 100px;
  }

  .logo-item img {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .speaking-places {
    padding: 60px 1rem 40px;
  }

  .places-content h2 {
    font-size: 1.8rem;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .logo-item {
    padding: 0.8rem;
    min-height: 80px;
  }

  .logo-item img {
    max-height: 50px;
  }
}

/* The Invisible IP Section */
.invisible-ip-section {
  padding: 80px 2rem;
  background: #f8f9fa;
}

.invisible-ip-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.invisible-ip-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.invisible-ip-content > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.recent-blogs h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #333;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 0;
  padding-bottom: 66.67%; /* 3:2 aspect ratio */
  background: linear-gradient(45deg, #f5c645, #e6b800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8f9fa;
}

.blog-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.blog-category {
  color: #000000;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  text-align: left;
}

.blog-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  line-height: 1.3;
  text-align: left;
}

.blog-excerpt {
  color: #666;
  margin-bottom: 0.6rem;
  line-height: 1.4;
  font-size: 0.85rem;
  text-align: left;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  text-align: left;
  min-height: 44px;
}

.blog-date {
  font-size: 0.9rem;
  color: #999;
  display: flex;
  align-items: center;
}

.blog-footer .read-more {
  color: #000000 !important;
  text-decoration: none;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
}

.read-more:hover {
  color: #333333 !important;
}

.view-all-blogs {
  margin-top: 2rem;
}

.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: #666;
}

/* Mobile Responsive for The Invisible IP Section */
@media (max-width: 768px) {
  .invisible-ip-section {
    padding: 60px 1rem;
  }

  .invisible-ip-content h2 {
    font-size: 2rem;
  }

  .invisible-ip-content > p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .recent-blogs h3 {
    font-size: 1.5rem;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .blog-content {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Testimonials Section - Horizontal Scrolling */
:root {
  --testimonial-card-width: 340px;
  --testimonial-card-padding: 1rem;
  --testimonial-card-radius: 12px;
  --testimonial-quote-size: 1.5rem;
  --testimonial-text-size: 0.85rem;
  --testimonial-name-size: 1rem;
  --testimonial-title-size: 0.9rem;
  --testimonial-gap: 1.5rem;
  --testimonial-section-padding: 1.75rem;
}

.testimonials-section {
  background: #f8f9fa;
  padding: var(--testimonial-section-padding) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  font-family: "poppins-v2", sans-serif;
}

.testimonials-row-container {
  position: relative;
  margin: 1rem 0;
  overflow: hidden;
}

.testimonials-row-container::before,
.testimonials-row-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

.testimonials-row-container::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(248, 249, 250, 1) 0%,
    rgba(248, 249, 250, 0) 100%
  );
}

.testimonials-row-container::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(248, 249, 250, 1) 0%,
    rgba(248, 249, 250, 0) 100%
  );
}

.testimonials-row {
  display: flex;
  gap: var(--testimonial-gap);
  padding: 0.5rem 0;
  animation: scroll-left 60s linear infinite;
  width: max-content;
}

.testimonials-row-2 {
  animation: scroll-right 60s linear infinite;
}

.testimonial-card {
  background: white;
  border-radius: var(--testimonial-card-radius);
  padding: var(--testimonial-card-padding);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: var(--testimonial-card-width);
  max-width: var(--testimonial-card-width);
  min-height: 200px;
  max-height: 220px;
  position: relative;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: visible;
  margin-bottom: 0.5rem;
}

.quote-icon {
  font-size: var(--testimonial-quote-size);
  color: #1a1a33;
  margin-bottom: 0.05rem;
  display: block;
  visibility: visible;
  font-weight: bold;
}

.quote-icon::before {
  content: "\201C";
  font-size: 3rem;
  color: #0a66c2;
  font-family: Georgia, serif;
  line-height: 0.8;
}

.testimonial-content p {
  font-size: var(--testimonial-text-size);
  line-height: 1.3;
  color: #333;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal !important;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: none;
  flex: 1;
  display: block;
  visibility: visible;
  max-height: 6.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: none !important;
}

.testimonial-author {
  margin-top: auto;
  border-top: 1px solid #f0f0f0;
  padding-top: 1rem;
  display: block;
  visibility: visible;
}

.author-name {
  font-size: var(--testimonial-name-size);
  font-weight: 600;
  color: #333;
  margin: 0 0 0.25rem 0;
  font-family: "Poppins", sans-serif;
  display: block;
  line-height: 1.2;
  max-height: 1.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.author-title {
  font-size: var(--testimonial-title-size);
  color: #666;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  display: block;
  line-height: 1.3;
  max-height: 1.3em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Avatar images removed */

/* Horizontal Scrolling Animations */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Pause animation on hover */
.testimonials-row:hover {
  animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 2rem 0;
  }

  .testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    min-height: 160px;
    max-height: 180px;
    padding: 1.25rem;
    border-radius: 8px;
  }

  .quote-icon {
    font-size: 1.8rem;
  }

  .testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    max-height: 3.2em;
    -webkit-line-clamp: 2;
  }

  .author-name {
    font-size: 0.85rem;
  }

  .author-title {
    font-size: 0.75rem;
  }

  .testimonials-row-container::before,
  .testimonials-row-container::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    min-width: 240px;
    max-width: 240px;
    min-height: 140px;
    max-height: 160px;
    padding: 1rem;
    border-radius: 6px;
  }

  .quote-icon {
    font-size: 1.5rem;
  }

  .testimonial-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    max-height: 2.8em;
    -webkit-line-clamp: 2;
  }

  .author-name {
    font-size: 0.75rem;
  }

  .author-title {
    font-size: 0.65rem;
  }

  .testimonials-row {
    gap: 1.5rem;
  }
}
