* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif !important;
}

body {
  font-family: "Poppins", sans-serif !important;

  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

body,
body *:not(i):not(.fas):not(.fa):not([class*="fa-"]) {
  font-family: 'Poppins', sans-serif !important;
}

.color {
  color: #131625 !important;
}

/* Header */
.topbar {
  background: rgba(15, 34, 69, 1);
  color: white;
  padding: 10px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  font-size: 14px;
}

.topbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  gap: 50rem;

  backdrop-filter: blur(10px);
  /* applies the blur effect */
  -webkit-backdrop-filter: blur(10px);
  /* for Safari support */
  border-radius: 8px;
  /* optional: soft corners */
}

.topbar-left span {
  display: flex;
  align-items: center;
}

/* Header */
.header-custom {
  background: white;
  width: 100%;
  top: 0;
  z-index: 1000;
  color: black;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.navbar-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #1a2332;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.logo {
  color: #1a2332;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.logo::after {
  content: "™";
  font-size: 0.8rem;
  vertical-align: super;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: #1a2332;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
  padding: 0.5rem 0;
  text-transform: uppercase;
}

.nav-menu a:hover {
  color: white;
  background: rgba(15, 34, 69, 1);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.button-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.book-now-btn {
  background: rgba(15, 34, 69, 1);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  text-transform: uppercase;
}

.phone-button {
  background: rgba(15, 34, 69, 1);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.phone-button i {
  margin-right: 8px;
  font-size: 14px;
}

.book-now-btn:hover,
.phone-button:hover {
  background: rgba(10, 25, 55, 1);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  padding: 100px 0 0;
  position: relative;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0 4rem;
}

.hero-left h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-left p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.custom-btn {
  width: 100%;
  padding: 16px 20px;
  background: #1a365d;
  color: white;
  border: 1px solid white;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1rem;
}

.testimonial-btn {
  padding: 16px 20px;
  background: white;
  color: black;
  border: 1px solid white;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta-button .arrow {
  font-size: 1.5rem;
  transform: translateY(1px);
  /* aligns arrow vertically */
}

.cta-button:hover {
  background: rgba(15, 34, 69, 1);

  transform: translateY(-2px);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Booking Form */
.contact-form-container {
  /* border-top: 1px solid #1a1a1a; */
  padding: 60px 20px;
  background-color: #fcfdf8;
}

.contact-form-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  gap: 50px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-template-rows: repeat(3, auto);
  gap: 20px;
}

/* All inputs (first 6) span first two columns */
.contact-form-grid input:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.contact-form-grid input:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.contact-form-grid input:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.contact-form-grid input:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.contact-form-grid input:nth-child(5) {
  grid-column: 1;
  grid-row: 3;
}

.contact-form-grid input:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}

/* Textarea and button in last column */
.contact-form-grid textarea {
  grid-column: 3;
  grid-row: 1 / span 2;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #999;
  resize: vertical;
  font-size: 14px;
  background: transparent;
}

.contact-form-header {
  flex: 1;
  max-width: 350px;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.4;
}

.form-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.contact-form-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
}

.contact-form-grid input {
  border: none;
  border-bottom: 1px solid #999;
  padding: 10px 5px;
  font-size: 14px;
  background: transparent;
}

.contact-form-grid input::placeholder {
  color: #333;
  font-size: 14px;
}

.contact-form-grid input:focus {
  outline: none;
  border-bottom: 1px solid #1e5aa8;
}

.cta-button {
  grid-column: 3;
  grid-row: 3;
  padding: 16px 24px;
  background-color: #0f2245;
  color: white;
  border: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
}

.cta-button:hover {
  background-color: #1d335c;
}

@media (max-width: 900px) {
  .contact-form-wrapper {
    flex-direction: column;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .cta-button {
    grid-column: auto;
    width: 100%;
  }
}

/* Services Section */
.services-section {
  padding: 100px 0;
  position: relative;
  background: #1a2332;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assets/img/service.jpg") center/cover;

  z-index: 1;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.services-container h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 4rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-content {
  background: rgba(0, 0, 0, 0.3);
  /* Changed to semi-transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid white;

  /* optional: rounded corners */
}

.services-content-custom {
  background: rgba(0, 0, 0, 0.3);
  /* Changed to semi-transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid white;

  /* optional: rounded corners */
}

.services-center {
  padding: 2rem;
}

.service-section {
  margin-bottom: 2.5rem;
}

.service-section h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.service-section p {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.service-card p {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .services-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-container h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .services-container {
    padding: 0 1rem;
  }

  .services-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-section h3 {
    font-size: 1.3rem;
  }
}

.custom-hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  /* Light, semi-transparent white */
  width: 100%;
  /* Ensure it fills the container */
  margin-top: 1rem;
}

.custom-hr-1 {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  height: 1px;
  margin: 0;
}

/* Why Choose Us */
.why-choose-section {
  background-color: #f8f9fa;
  padding: 4rem 0;

  background: url("assets/img/custom-bg.png") center/cover no-repeat;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 0 2rem;
  gap: 3rem;
}

.why-choose-left {
  flex: 1;
}

.why-choose-left h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1a2332;
  line-height: 1.2;
  margin: 0;
}

.why-choose-right {
  flex: 2;
  display: flex;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  width: 100%;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: #32476e;

  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(26, 35, 50, 0.08);
  padding: 2rem 1.5rem;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.feature-item:hover {
  box-shadow: 0 8px 32px rgba(26, 35, 50, 0.16);
  transform: translateY(-4px) scale(1.03);
}

.feature-icon {
  font-size: 1.5rem;
  color: #2563eb;
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2332;
  margin: 0;
}

@media (max-width: 768px) {
  .why-choose-container {
    flex-direction: column;
    gap: 2rem;
  }

  .why-choose-left h2 {
    font-size: 2.25rem;
  }

  .feature-item h3 {
    font-size: 1.1rem;
  }

  .feature-icon {
    font-size: 1.25rem;
    width: 35px;
    height: 35px;
  }
}

/* Vehicle Showcase */
.vehicle-showcase {
  padding: 100px 0;
  background: url("assets/img/charging.jpg") center/cover no-repeat;
  height: auto;
  color: white;
  position: relative;
}

.services-content-custom {
  /* Base Glass Effect */
  background: rgba(15, 34, 69, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: auto;
  min-height: 40vh;
  box-shadow: 0 8px 32px rgba(15, 34, 69, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  border: 1px solid white;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  width: 90%;
  max-width: 1200px;
  margin: 25% auto 0;
  padding: 2rem;
}

.custom-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid white;
  min-width: 180px;
  flex: 1 1 calc(25% - 0.75rem);
  text-align: center;
  padding: 1rem 0.5rem;
  transition: all 0.3s ease;
}

.custom-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.services-content-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 60%);
  border-radius: inherit;
  pointer-events: none;
}

.diagnosis-box {
  flex: 1 1 28%;
  border: 1px solid #fff;
  padding: 20px;
  color: white;
  min-width: 250px;
}

.diagnosis-box .box-label {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.diagnosis-box input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  padding: 10px;
  color: white;
  font-style: italic;
  font-size: 14px;
}

.diagnosis-box input::placeholder {
  color: #ccc;
}

.diagnosis-box input:focus {
  outline: none;
  border-bottom-color: #1e90ff;
}

/* Content Styling */
.services-content-custom h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.services-content-custom h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.services-content-custom p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Responsive Design for Large Tablets */
@media (max-width: 1200px) {
  .services-content-custom {
    width: 95%;
    margin-top: 20%;
    padding: 2rem 1.5rem;
  }

  .diagnosis-box {
    min-width: 220px;
    padding: 15px;
  }

  .custom-card {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 150px;
  }
}

/* Responsive Design for Tablets */
@media (max-width: 1024px) {
  .vehicle-showcase {
    height: auto;
    padding: 80px 0;
  }

  .services-content-custom {
    margin-top: 15%;
    width: 95%;
    padding: 2rem 1.5rem;
  }

  .services-content-custom h1 {
    font-size: 2rem;
  }

  .services-content-custom h3 {
    font-size: 1.6rem;
  }

  .d-flex.align-items-center {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.5rem !important;
  }

  .diagnosis-box {
    min-width: 100%;
    order: 2;
  }

  .custom-card {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px;
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .vehicle-showcase {
    height: auto;
    padding: 60px 0 80px 0;
  }

  .services-content-custom {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 98%;
    margin-top: 10%;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    min-height: auto;
  }

  .services-content-custom h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .services-content-custom h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .d-flex.flex-wrap {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .custom-card {
    flex: 1 1 100%;
    min-width: 100%;
    padding: 1rem;
    margin-bottom: 0.5rem;
  }

  .custom-card h6 {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .diagnosis-box {
    min-width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
  }

  .diagnosis-box .box-label {
    font-size: 12px;
    white-space: normal;
    line-height: 1.3;
  }

  .diagnosis-box input {
    font-size: 13px;
    padding: 8px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .vehicle-showcase {
    height: auto;
    padding: 40px 0 60px 0;
  }

  .services-content-custom {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 99%;
    margin-top: 5%;
    padding: 1rem 0.8rem;
    border-radius: 8px;
  }

  .services-content-custom h1 {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .services-content-custom h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .custom-card {
    padding: 0.8rem 0.5rem;
    margin-bottom: 0.3rem;
  }

  .custom-card h6 {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .diagnosis-box {
    padding: 12px;
  }

  .diagnosis-box .box-label {
    font-size: 11px;
  }

  .diagnosis-box input {
    font-size: 12px;
    padding: 6px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .vehicle-showcase {
    height: auto;
    padding: 30px 0 50px 0;
  }

  .services-content-custom {
    width: 100%;
    margin-top: 2%;
    padding: 0.8rem 0.5rem;
  }

  .services-content-custom h1 {
    font-size: 1rem;
    line-height: 1.1;
  }

  .services-content-custom h3 {
    font-size: 0.95rem;
  }

  .custom-card {
    padding: 0.6rem 0.3rem;
  }

  .custom-card h6 {
    font-size: 0.75rem;
  }

  .diagnosis-box {
    padding: 10px;
  }

  .diagnosis-box .box-label {
    font-size: 10px;
  }

  .diagnosis-box input {
    font-size: 11px;
    padding: 5px;
  }
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
  .services-content-custom {
    background: rgba(15, 34, 69, 0.85);
    box-shadow: 0 8px 32px rgba(15, 34, 69, 0.5);
  }
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.custom {
  background: rgba(15, 34, 69, 0.8);
}

.diagnosis-box {
  flex: 1 1 28%;
  border: 1px solid #fff;
  padding: 20px;
  color: white;
}

.diagnosis-box .box-label {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.diagnosis-box input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  padding: 10px;
  color: white;
  font-style: italic;
  font-size: 14px;
}

.diagnosis-box input::placeholder {
  color: #ccc;
}

.diagnosis-box input:focus {
  outline: none;
  border-bottom-color: #1e90ff;
}

.showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  bottom: 20px;
  z-index: 2;
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: rgba(26, 35, 50, 0.85);
}

.showcase-left h2 {  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.showcase-left p {
  font-size: 1.2rem;
  line-height: 1.7;
}

.brand-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h4 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #60a5fa;
}

.stat-item p {
  font-size: 1rem;
  color: #cbd5e1;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: #1e293b;
  color: white;
  position: relative;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assets/img/man.jpg") center/cover;
  height: 105%;
  z-index: 1;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  /* Makes left side twice as wide as right */
  gap: 2rem;
  margin-top: 20%;
}

.contact-left h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-left p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #cbd5e1;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.contact-item i {
  margin-right: 1rem;
  color: #60a5fa;
  width: 20px;
  font-size: 1.2rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid white;
  padding: 2.5rem;
}

.contact-form-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid #999;
  padding: 10px 5px;
  font-size: 14px;
  background: transparent;
  color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.contact-form button {
  background: rgba(15, 34, 69, 1);

  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: rgba(15, 34, 69, 1);

  transform: translateY(-1px);
}

/* Service Area */
.service-area {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
}

.area-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assets/img/car.jpg") center/cover;
  height: 105%;
}

.area-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.area-content {
  background: rgba(0, 0, 0, 1);
  /* light transparent background */
  backdrop-filter: blur(5px);
  /* subtle blur effect */
  -webkit-backdrop-filter: blur(5px);
  /* Safari support */
  /* optional: rounded corners */
}

.area-content h2 {
  font-size: 2.2rem;
  color: #1a2332;
  margin-bottom: 4rem;
  font-weight: 600;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.coverage-map {
  display: flex;
  justify-content: center;
}

.coverage-map img {
  width: 100%;
  max-width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Testimonials */
.testimonials {
  padding: 100px 0;

  background: url("assets/img/custom-bg.png") center/cover;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a2332;
  margin-bottom: 4rem;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background: rgba(50, 71, 110, 1);
  padding: 1rem;
  /* Reduced padding */
  border: 1px solid #e5e7eb;
  /* 1px border */

  margin: 1rem auto;
  /* Center the box */
  transition: all 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stars {
  color: #fbbf24;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial p {
  color: #64748b;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.7;
}

.reviewer strong {
  color: white;
  font-weight: 600;
}

.reviewer span {
  color: white;
  font-size: 14px;
  display: block;
  margin-top: 0.25rem;
}

/* Special Offer */
.special-offer {
  padding: 100px 0;
  background: url("assets/img/Frame.png") center/cover;

  background-color: gray;
}

.offer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.offer-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.offer-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #dbeafe;
  line-height: 1.7;
}

.offer-btn {
  background: white;
  color: #2563eb;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Learning Section */
.learning-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #0f2245 50%, white 50%);
  color: white;
}

.learning-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.learning-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  font-weight: 700;
  color: white;
}

.tips-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 32px rgba(26, 35, 50, 0.12),
    0 1.5px 6px rgba(26, 35, 50, 0.08);
  overflow: hidden;
  padding: 1.5rem 0;
  margin: 0 auto;
}

.tip-item {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
  /* Only transition background */
}

.tip-item:last-child {
  border-bottom: none;
}

.tip-item:hover {
  background: rgba(255, 255, 255, 1);
}

.tip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: transparent;
}

.tip-header h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c3e50;
  margin: 0;
}

.plus-icon {
  width: 30px;
  height: 30px;
  border: 2px solid #2c3e50;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.tip-item:hover .plus-icon {
  background: #2c3e50;
  color: white;
}

/* Remove conflicting CSS rules and let jQuery handle visibility */
.tip-content {
  display: none;
  /* jQuery will handle this */
  padding: 20px 25px;
  color: #5a6c7d;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.98);
}

/* Active state styling */
.tip-item.active .plus-icon {
  transform: rotate(180deg);
  background: #2c3e50;
  color: white;
}

/* Blue highlight box for resolution indicator */
.resolution-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #4a90e2;
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.container-wrapper {
  position: relative;
}

/* Footer */
.footer {
  background: #0f2245;

  color: white;
  padding: 60px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  grid-column: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.logo-box {
  border: 2px solid #4a90e2;
  padding: 8px 16px;
  border-radius: 4px;
  margin-right: 10px;
}

.logo-text {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-subtext {
  color: #4a90e2;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 2px;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 14px;
  margin-top: 10px;
}

.footer-links {
  display: contents;
}

.link-group {
  display: flex;
  flex-direction: column;
}

.link-group h4 {
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.link-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.link-group li {
  margin-bottom: 0.5rem;
}

.link-group a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.link-group a:hover {
  color: white;
}

.link-group li:not(:has(a)) {
  color: #94a3b8;
  font-size: 14px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info div {
  color: #94a3b8;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #94a3b8;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 14px;
}

.footer-bottom-right {
  color: #64748b;
}

/* Responsive design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1400px) {

  .topbar-container,
  .navbar-custom,
  .hero-container,
  .services-container,
  .why-choose-container,
  .showcase-container,
  .contact-container,
  .area-container,
  .testimonials-container,
  .offer-container,
  .learning-container,
  .footer-container {
    max-width: 1200px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 1200px) {

  /* Header Adjustments */
  .topbar-left {
    gap: 20rem;
  }

  .navbar-custom {
    padding: 1rem 1.5rem;
  }

  .nav-menu {
    gap: 2rem;
  }

  /* Hero Section */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 2.8rem;
  }

  /* Contact Form */
  .contact-form-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Why Choose Section */
  .why-choose-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .features-list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Vehicle Showcase */
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .services-content-custom {
    margin-top: 15%;
  }

  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Brand Stats */
  .brand-stats {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
}

/* Tablets */
@media (max-width: 1024px) {

  /* Typography Adjustments */
  .hero-left h1 {
    font-size: 2.5rem;
  }

  .why-choose-left h2 {
    font-size: 2.5rem;
  }

  .showcase-left h2 {
    font-size: 2.5rem;
  }

  .offer-content h2 {
    font-size: 2.5rem;
  }

  /* Contact Form */
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-grid textarea {
    grid-column: 1 / span 2;
    grid-row: 4;
  }

  .cta-button {
    grid-column: 1 / span 2;
    grid-row: 5;
  }

  /* Features */
  .features-list {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    max-width: 300px;
    width: 100%;
  }

  /* Services Content */
  .services-content-custom {
    margin-top: 20%;
    width: 95%;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Large Mobile Devices */
@media (max-width: 768px) {

  /* Header */
  .topbar {
    padding: 8px 0;
    font-size: 12px;
  }

  .topbar-left {
    gap: 5rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .navbar-custom {
    padding: 1rem;
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease forwards;
  }

  .nav-menu.active li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-menu.active li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .nav-menu.active li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .nav-menu.active li:nth-child(4) {
    animation-delay: 0.4s;
  }

  .nav-menu.active li:nth-child(5) {
    animation-delay: 0.5s;
  }

  @keyframes slideInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s;
  }

  .button-group {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 1rem;
    width: 90%;
    max-width: 300px;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-menu.active~.button-group {
    opacity: 1;
  }

  .book-now-btn,
  .phone-button {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem;
  }

  /* Hero */
  .hero {
    padding: 80px 0 0;
  }

  .hero-left h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-left p {
    font-size: 1rem;
  }

  /* Contact Form */
  .contact-form-container {
    padding: 40px 15px;
  }

  .contact-form-wrapper {
    gap: 2rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-form-grid input:nth-child(1),
  .contact-form-grid input:nth-child(2),
  .contact-form-grid input:nth-child(3),
  .contact-form-grid input:nth-child(4),
  .contact-form-grid input:nth-child(5),
  .contact-form-grid input:nth-child(6) {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-form-grid textarea {
    grid-column: 1;
    grid-row: auto;
    min-height: 100px;
  }

  .cta-button {
    grid-column: 1;
    grid-row: auto;
  }

  .form-title {
    font-size: 24px;
  }

  .form-subtitle {
    font-size: 18px;
  }

  /* Why Choose */
  .why-choose-section {
    padding: 3rem 0;
  }

  .why-choose-left h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  /* Services */
  .services-section {
    padding: 60px 0;
  }

  .services-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .services-center {
    padding: 1.5rem;
  }

  /* Vehicle Showcase */
  .vehicle-showcase {
    height: auto;
  }

  .services-content-custom {
    margin-top: 25%;
    width: 95%;
    height: auto;
    min-height: 30vh;
  }

  .showcase-left h2 {
    font-size: 2rem;
  }

  /* Contact Section */
  .contact-section {
    padding: 60px 0;
  }

  .contact-grid {
    margin-top: 10%;
  }

  .contact-left h2 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  /* Service Area */
  .service-area {
    padding: 60px 0;
  }

  .area-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  /* Testimonials */
  .testimonials {
    padding: 60px 0;
  }

  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  /* Special Offer */
  .special-offer {
    padding: 60px 0;
  }

  .offer-content h2 {
    font-size: 2.2rem;
  }

  .offer-content p {
    font-size: 1rem;
  }

  /* Learning Section */
  .learning-section {
    padding: 60px 0;
  }

  .learning-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Brand Stats */
  .brand-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item h4 {
    font-size: 2rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {

  /* Base Adjustments */
  body {
    font-size: 14px;
  }

  /* Header */
  .topbar {
    padding: 5px 0;
    font-size: 10px;
  }

  .topbar-container {
    padding: 0 0.5rem;
  }

  .topbar-left {
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }

  .topbar-left span {
    font-size: 10px;
  }

  .navbar-custom {
    padding: 0.5rem 1rem;
  }

  .logo img {
    height: 30px !important;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .book-now-btn,
  .phone-button {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  /* Hero */
  .hero {
    padding: 60px 0 0;
  }

  .hero-content {
    gap: 2rem;
    padding: 1rem 0 2rem;
  }

  .hero-left h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero-left p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-image img {
    height: 250px;
  }

  /* Contact Form */
  .contact-form-container {
    padding: 30px 10px;
  }

  .form-title {
    font-size: 20px;
  }

  .form-subtitle {
    font-size: 16px;
  }

  .contact-form-grid input,
  .contact-form-grid textarea {
    font-size: 12px;
    padding: 8px 5px;
  }

  .cta-button {
    padding: 12px 16px;
    font-size: 12px;
  }

  /* Why Choose */
  .why-choose-section {
    padding: 2rem 0;
  }

  .why-choose-left h2 {
    font-size: 1.8rem;
  }

  .feature-item {
    padding: 1.5rem 1rem;
    min-width: 150px;
  }

  .feature-item h3 {
    font-size: 1rem;
  }

  .feature-icon {
    font-size: 1rem;
    width: 30px;
    height: 30px;
  }

  /* Services */
  .services-section {
    padding: 40px 0;
  }

  .services-container h2 {
    font-size: 1.6rem;
  }

  .services-center {
    padding: 1rem;
  }

  .service-section h3 {
    font-size: 1.2rem;
  }

  .service-section p,
  .service-card p {
    font-size: 12px;
  }

  /* Vehicle Showcase */
  .vehicle-showcase {
    height: auto;
    padding: 40px 0;
  }

  .services-content-custom {
    margin-top: 30%;
    width: 98%;
    padding: 1rem;
  }

  .showcase-left h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .showcase-left p {
    font-size: 1rem;
  }

  .diagnosis-box {
    padding: 15px;
    }

  .diagnosis-box .box-label {
    font-size: 12px;
  }

  .diagnosis-box input {
    font-size: 12px;
    padding: 8px;
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 0;
  }

  .contact-bg {
    background-attachment: scroll;
    height: 100%;
    min-height: 105%;
  }

  .contact-grid {
    margin-top: 5%;
  }

  .contact-left h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .contact-left p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .contact-item {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 12px;
    padding: 8px 5px;
  }

  /* Service Area */
  .service-area {
    padding: 40px 0;
  }

  .area-bg {
    height: auto;
    min-height: 80vh;
  }

  .area-content h2 {
    font-size: 1.5rem;
  }

  .coverage-map img {
    height: 250px;
  }

  /* Testimonials */
  .testimonials {
    padding: 40px 0;
  }

  .testimonials h2 {
    font-size: 1.6rem;
  }

  .testimonial {
    padding: 1.5rem 1rem;
  }

  .testimonial p {
    font-size: 0.9rem;
  }

  .stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  /* Special Offer */
  .special-offer {
    padding: 40px 0;
  }

  .offer-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .offer-content p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .offer-btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  /* Learning Section */
  .learning-section {
    padding: 40px 0;
  }

  .learning-section h2 {
    font-size: 1.6rem;
  }

  .tip-header h4 {
    font-size: 0.9rem;
  }

  .tip-content {
    font-size: 0.8rem;
    padding: 15px 20px;
  }

  .plus-icon {
    width: 25px;
    height: 25px;
    font-size: 16px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 0;
  }

  .footer-content {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .footer-logo {
    margin-bottom: 0.5rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-subtext {
    font-size: 0.8rem;
  }

  .footer-brand p,
  .link-group a,
  .link-group li:not(:has(a)),
  .contact-info div {
    font-size: 12px;
  }

  .link-group h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-bottom {
    padding: 1.5rem 0;
    font-size: 12px;
  }

  /* General Container Adjustments */
  .hero-container,
  .services-container,
  .why-choose-container,
  .showcase-container,
  .contact-container,
  .area-container,
  .testimonials-container,
  .offer-container,
  .learning-container,
  .footer-container {
    padding: 0 1rem;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .topbar {
    font-size: 9px;
    padding: 3px 0;
  }

  .topbar-left span {
    font-size: 9px;
    margin-left: 0 !important;
  }

  .navbar-custom {
    padding: 0.5rem;
  }

  .logo img {
    height: 25px !important;
  }

  .hero-left h1 {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .hero-left h3 {
    font-size: 0.9rem;
  }

  .why-choose-left h2,
  .showcase-left h2,
  .contact-left h2,
  .testimonials h2,
  .learning-section h2 {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .offer-content h2 {
    font-size: 1.5rem;
  }

  .services-container h2 {
    font-size: 1.3rem;
  }

  .area-content h2 {
    font-size: 1.2rem;
  }

  .form-title {
    font-size: 1.1rem;
  }

  .form-subtitle {
    font-size: 1rem;
  }

  .feature-item {
    min-width: 120px;
    padding: 0.8rem 0.3rem;
  }

  .feature-item h3 {
    font-size: 0.9rem;
  }

  .services-content-custom {
    width: 100%;
    margin-top: 40%;
  }

  .contact-form-container {
    padding: 15px 5px;
  }

  .nav-menu a {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }

  .button-group {
    bottom: 1rem;
    width: 95%;
  }

  .book-now-btn,
  .phone-button {
    padding: 0.7rem 0.8rem;
    font-size: 0.8rem;
  }

  .hero-container,
  .services-container,
  .why-choose-container,
  .showcase-container,
  .contact-container,
  .area-container,
  .testimonials-container,
  .offer-container,
  .learning-container,
  .footer-container {
    padding: 0 0.3rem;
  }
}

/* Enhanced blur effects for modern browsers */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading states and transitions */
* {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

img {
  transition: opacity 0.6s ease, transform 0.6s ease;
}