@import url("https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap");

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merienda", cursive;
  font-weight: bold;
}

p {
  text-align: justify;
  font-weight: 500;
}

body,
html {
  overflow-x: hidden;
}

:root {
  --primary-color: #f6ef1b;
  --secondary-color: #1faae1;
  --black: #000000;
  --white: #fff;
  --light-black: #161717;
}

/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float i {
  margin-top: 15px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

/* Default la hide panniduvom */
.emergency-call {
  display: none;
}

/* Mobile view la mattum show pannum */
@media (max-width: 768px) {
  .emergency-call {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 9999;
  }

  .emergency-call a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: linear-gradient(
      90deg,
      var(--primary-color),
      var(--secondary-color)
    );
    color: var(--light-black);
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 0;
    font-family: "Merienda", cursive;
    transition: all 0.3s ease;
  }

  .emergency-call a i {
    margin-right: 8px;
    font-size: 18px;
  }

  .emergency-call a:hover {
    background: linear-gradient(
      90deg,
      var(--secondary-color),
      var(--secondary-color)
    );
    color: var(--white);
  }
}

/* Mobile Only */
@media (max-width: 768px) {
  .whatsapp-float {
    display: none;
  }

  .emergency-call {
    display: block;
  }
}

/* Navigation Section */

.navbar {
  position: sticky !important;
  top: 0;
  z-index: 1020;
  background: var(--light-black);
  padding: 0;
  font-family: "Merienda", cursive;
}

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

.navbar-nav {
  gap: 20px;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  padding: 5px 18px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: var(--secondary-color);
  color: var(--primary-color) !important;
}

/* Button Style */
.btn-dark {
  background: var(--light-black);
  color: var(--primary-color);
  border: none;
  font-weight: 600;
  padding: 10px 17px !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: var(--secondary-color);
  color: var(--black);
}

/* =========================================
   Mobile Menu / Offcanvas Styling
   ========================================= */

/* 1. The Background & Container */
.custom-offcanvas {
  background: linear-gradient(180deg, var(--light-black) 0%, #000000 100%);
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.8);
  width: 280px !important; /* Slightly wider for better spacing */
}

/* 2. Header Area */
.custom-offcanvas .offcanvas-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas-logo {
  height: 60px; /* Adjusted size */
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

/* Custom Close Button (Circle with X) */
.custom-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.custom-close-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: rotate(90deg); /* Fun rotation effect */
}

/* 3. Navigation Links */
.custom-mobile-nav {
  margin-top: 10px;
}

.custom-mobile-nav .nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.custom-mobile-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: "Merienda", cursive; /* Maintaining your font */
  font-size: 1.1rem;
  padding: 15px 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-left: 3px solid transparent;
  display: flex;
  align-items: center;
}

/* Icon styling */
.custom-mobile-nav .nav-link i {
  color: var(--secondary-color);
  width: 25px;
  transition: 0.3s;
}

/* Hover State: Slide Right + Color Change */
.custom-mobile-nav .nav-link:hover {
  padding-left: 25px; /* Slide effect */
  background: linear-gradient(
    90deg,
    rgba(31, 170, 225, 0.1) 0%,
    transparent 100%
  );
  color: var(--primary-color) !important;
  border-left-color: var(--primary-color);
}

.custom-mobile-nav .nav-link:hover i {
  color: var(--primary-color);
}

/* Active State: Highlighted */
.custom-mobile-nav .nav-link.active {
  color: var(--white) !important;
  background: linear-gradient(
    90deg,
    rgba(31, 170, 225, 0.2) 0%,
    transparent 100%
  );
  border-left-color: var(--secondary-color);
  font-weight: bold;
}

.custom-mobile-nav .nav-link.active i {
  color: var(--primary-color);
}

/* 4. Bottom Footer Area */
.offcanvas-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  padding-bottom: 65px;
}

.btn-gradient {
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border: none;
  color: #000;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(31, 170, 225, 0.4);
  color: #000;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin: 0 5px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* 5. Toggler Animation (Hamburger to X) 
   Add this to animate the 3 lines in the navbar when clicked */
/* =========================================
   Navbar Toggler (Mobile Icon) - FIXED
   ========================================= */

/* 1. Container & Reset */
.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none; /* Remove blue outline on click */
}

/* 2. Define the "Box" for the icon */
.navbar-toggler-icon {
  background-image: none !important; /* Remove Bootstrap's default SVG */
  width: 30px;
  height: 24px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

/* 3. The 3 Bars (Closed State - WHITE) */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon div {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff !important; /* <--- WHITE COLOR HERE */
  /* Use this line instead for Gradient: */
  /* background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important; */

  position: absolute;
  left: 0;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Position the Top Bar */
.navbar-toggler-icon::before {
  top: 0;
}

/* Position the Middle Bar */
.navbar-toggler-icon div {
  top: 50%;
  transform: translateY(-50%);
}

/* Position the Bottom Bar */
.navbar-toggler-icon::after {
  bottom: 0;
}

/* 4. The Animation (Open State - 'X') */
/* This is the code you provided, integrated here */

/* Hide Middle Line */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon div {
  background-color: transparent !important;
  transform: translateX(-20px); /* Slide it away cleanly */
  opacity: 0;
}

/* Rotate Top Line to make first half of X */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--primary-color) !important; /* Active Color (Yellow) */
}

/* Rotate Bottom Line to make second half of X */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  bottom: 50%; /* Fix position for center rotation */
  transform: translateY(50%) rotate(-45deg);
  background-color: var(--primary-color) !important; /* Active Color (Yellow) */
}

/* Modern Minimalist Toggler */
.navbar-toggler {
  padding: 10px !important; /* Better touch target size */
  font-size: 1rem !important; /* Slightly larger */
  line-height: 1 !important;
  color: var(--white) !important; /* White text color */
  background-color: transparent !important; /* No background */
  border: none !important; /* REMOVED the ugly border */
  border-radius: 50% !important; /* Circle shape on hover */
  transition: all 0.3s ease !important; /* Smooth animation */
  outline: none !important;
  box-shadow: none !important; /* Remove Bootstrap blue shadow */
}

/* Hover Effect: Subtle White Background */
.navbar-toggler:hover {
  background-color: #ffffff1a !important;
  transform: scale(1.1) !important; /* Grows slightly */
}

/* Focus Effect: Accessibility ring using your theme color */
.navbar-toggler:focus {
  box-shadow: 0 0 0 2px var(--secondary-color) !important;
}

/* Carousel Banner Section Start */

.hero-section {
  background: url("./../all-images/carousel-img/3.jpg") no-repeat center
    center/cover;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-section .container {
  position: relative;
  z-index: 2;
  top: 50%;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
}

/* Form */
.hero-form {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-form .form-control,
.hero-form .form-select {
  border-radius: 6px;
  height: 45px;
  font-size: 14px;
}

.hero-form .btn {
  height: 45px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
}

/* Cards */
.hero-cards {
  margin-top: 40px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
}

.hero-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon i {
  font-size: 28px;
  color: #fff;
}

.hero-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

/* Moving Text */
.moving-text {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #fff;
  color: var(--secondary-color);
  font-size: 70px;
  font-weight: 600;
  padding: 5px 0;
  text-transform: uppercase;
  font-family: "Merienda", cursive;
}

.moving-text span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 12s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Feature Section */
.feature-section {
  background: #fff;
  padding: 50px 0;
}

.feature-card {
  background: #aaa;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px #444444;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px #1faae1;
}

.feature-icon i {
  font-size: 35px;
  color: var(--white);
}

.feature-content h5 {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--light-black);
}

.feature-content h5 span {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.feature-content p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--light-black) !important;
  text-align: start;
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablets */
@media (max-width: 992px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-form .col-12 {
    margin-bottom: 10px;
  }

  .moving-text {
    font-size: 50px;
  }

  .brand-logo-wrapper {
    width: 100px !important;
    height: 100px !important;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-card {
    padding: 20px 10px;
  }

  .hero-icon i {
    font-size: 18px;
  }

  .hero-card h5 {
    font-size: 12px;
  }

  .moving-text {
    font-size: 30px;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .feature-content h5 {
    justify-content: center;
    gap: 10px;
  }

  .brand-img {
    max-width: 80px !important;
  }
  .about-content p {
    font-size: 14px !important;
  }
  .brand-logo-wrapper {
    width: 90px !important;
    height: 90px !important;
  }
  .brand-card {
    padding: 0rem 0rem !important;
  }
}

/* Small Mobiles */
@media (max-width: 425px) {
  .hero-card h5 {
    font-size: 13px;
  }

  .hero-icon {
    height: 40px;
    width: 40px;
  }
  .brand-logo-wrapper {
    width: 70px !important;
    height: 70px !important;
  }
  .brand-card {
    padding: 0rem 0rem !important;
  }
  .brand-card p {
    font-size: 12px;
  }
}

@media (max-width: 350px) {
  .hero-title {
    font-size: 16px;
  }
  .brand-logo-wrapper {
    width: 60px !important;
    height: 60px !important;
  }
}

/* ABout Section Start */

.about-content h5 {
  color: var(--secondary-color);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--black);
}

.about-content h2 span {
  color: var(--secondary-color);
}

.btn {
  display: inline-block;
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  padding: 5px 50px !important;
  border-radius: 6px !important;
  font-weight: bold;
  text-decoration: none;
  transition: 0.5s !important;
  border: none !important;
  font-size: 16px !important;
}

.btn:hover {
  background: var(--primary-color);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

/* RIGHT SIDE */
.exp-box {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.exp-box:hover {
  transform: translateY(-6px);
}

.exp-box h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.img-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.img-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

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

.repair-service {
  position: relative;
  background: url("./../all-images/images/bg.jpg") no-repeat center center/cover;
  padding: 70px 0;
  border-radius: 12px;
  overflow: hidden;
}

.repair-service .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.7);
  z-index: 1;
}

.repair-service .container {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.section-title-tv-repair {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.section-title-types-services {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.section-subtitle {
  color: #ddd;
  margin-bottom: 10px;
  text-align: center;
}

.repair-service .btn-primary {
  background: #0e77bc;
  border: none;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  transition: 0.3s;
}

.repair-service .btn-primary:hover {
  background: #1faae1;
}

.service-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.service-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.service-box:hover {
  transform: translateY(-8px);
}

.overlay-card {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  text-align: center;
  padding: 20px;
}

.overlay-card i {
  font-size: 30px;
  color: #fff;
  background: #0e77bc;
  border-radius: 50%;
  padding: 12px;
  margin-bottom: 10px;
}

.overlay-card h5 {
  color: #fff;
  font-weight: 600;
  margin: 10px 0;
}

.overlay-card .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 20px;
}

/* Light CTA Section */
.cta-modern-light {
  background: #f9f9f9;
  color: #222;
  padding: 20px 20px;
  border-radius: 20px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.cta-modern-light h2 {
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: #222;
}

.cta-modern-light p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: #555;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: flex-start;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}

.btn-cta.primary {
  background: #0e77bc;
  color: #fff;
}

.btn-cta.primary:hover {
  background: #095a8f;
  color: #fff;
}

.btn-cta.secondary {
  background: #25d366;
  color: #fff;
}

.btn-cta.secondary:hover {
  background: #1da851;
  color: #fff;
}

.cta-img img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .cta-modern-light {
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .cta-modern-light h2 {
    font-size: 1.8rem;
  }
}

/* Our Brands Section Start */

.brands-section {
  position: relative;
  background: url("./../all-images/images/bg.jpg") no-repeat center center/cover;
}

.brands-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.brands-section h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  position: relative;
  z-index: 2;
}

.brand-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-img {
  border-radius: 50%;
  max-width: 100px;
  margin: 0 auto;
  /* filter: grayscale(100%); */
  transition: all 0.3s ease;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.brand-img:hover {
  /* filter: grayscale(0); */
  transform: scale(1.1);
  border-color: var(--primary-color);
}

/* Responsive Fix for 6 columns */
@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
  }
}

/* Contact Form & Details Section Start */

/* Section Base */
.contact-section {
  background: var(--light-black);
  color: var(--white);
}

/* Gradient Borders */
.border-gradient-right {
  border-right: 4px solid;
  border-image: linear-gradient(
      to bottom,
      var(--primary-color),
      var(--secondary-color)
    )
    1;
}

@media (max-width: 767px) {
  .border-gradient-right {
    border-right: 0px;
  }
}

.border-gradient-bottom {
  border-bottom: 4px solid;
  border-image: linear-gradient(
      to right,
      var(--primary-color),
      var(--secondary-color)
    )
    1;
}

/* Appointment Form */
.appointment-form h2 {
  letter-spacing: 1.5px;
  color: var(--primary-color);
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  background: transparent;
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  color: var(--white);
  outline: none;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: #aaa;
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
  transform: scale(1.02);
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--black);
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 8px;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.submit-btn:hover {
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Details */
.contact-box {
  padding: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.contact-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.detail-title {
  font-weight: bold;
  color: var(--secondary-color);
  margin-top: 12px;
  margin-bottom: 8px;
}

/* Icon Circle */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* About Page Breadcrumb Section Start */

/* Breadcrumb Section */
.breadcrumb-section {
  background: url("./../all-images/images/bg-2.webp") no-repeat center
    center/cover;
  min-height: 40vh;
  position: relative;
  color: #fff;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

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

.breadcrumb-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--secondary-color) !important;
}

/* About Section */
.about-section {
  background: #f9f9f9;
}

.about-img img {
  border-radius: 12px;
}

.about-content h2 {
  font-size: 32px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #444;
}

.about-content ul li {
  font-size: 15px;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .breadcrumb-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .breadcrumb-title {
    font-size: 26px;
  }

  .about-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .breadcrumb-title {
    font-size: 20px;
  }

  .about-content h2 {
    font-size: 20px;
  }
}

/* About Us SectioN Start */

.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-black);
}

.about-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: inline-block;
  border-left: 4px solid var(--primary-color);
  padding-left: 10px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.about-btn {
  background: var(--secondary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: var(--primary-color);
  color: var(--black);
}

.about-img img {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

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

/* Mission Vission and Value Section Start */

.vission-section {
  position: relative;
  background: url("./../all-images/images/bg-3.jpg") no-repeat center
    center/cover;
  padding: 50px 0;
  color: var(--white);
  z-index: 1;
}

.vission-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.vission-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-align: center;
}

.vission-card {
  background: rgba(255, 255, 255, 0.733);
  border: none;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: var(--white);
  transition: transform 0.4s ease, background 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.vission-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.vission-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.vission-card:hover i {
  color: var(--primary-color);
}

.vission-card:hover h4 {
  color: var(--white) !important;
}

.vission-card:hover p {
  color: var(--white) !important;
}

.vission-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--light-black);
}

.vission-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--light-black);
}

/* Exprience Section start */

.team-section {
  padding: 30px 0;
  background: #f8f9fa;
}

.team-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--light-black);
}

.team-subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.team-text {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

.team-features {
  margin-top: 25px;
}

.team-features li {
  list-style: none;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
}

.team-features li i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.team-img img {
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

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

/* About Page Banner Section Start */

.about-banner-section {
  position: relative;
  background-image: url("./../all-images/images/bg-4.avif");
  /* Replace with your actual image URL */
  background-size: cover;
  background-position: center;
  height: 300px;
  /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  /* To ensure the overlay doesn't exceed bounds */
  border-radius: 15px;
  /* Rounded corners for the entire section */
  margin: 20px auto;
  /* Center the section with some margin */
  /* max-width: 1200px; */
  /* Max width for the section */
}

.about-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.459);
  /* Dark overlay */
  border-radius: 15px;
  /* Match parent border-radius */
}

.banner-content {
  position: relative;
  z-index: 1;
  /* Ensure content is above the overlay */
  padding: 20px;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  /* Highlight with primary color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-banner-section {
    height: 300px;
    margin: 10px auto;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .about-banner-section {
    height: 250px;
    border-radius: 10px;
  }

  .about-banner-section::before {
    border-radius: 10px;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .banner-content p {
    font-size: 0.9rem;
  }
}

.connect-innovate {
  padding: 10px 20px;
  background-color: var(--white);
  color: var(--text-gray);
  border-top: 4px solid var(--light-black);
  /* border-bottom: 5px solid var(--secondary-color); */
}

.connect-innovate .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px;
  background-color: var(--light-gray);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.connect-innovate h1 {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-align: center;
}

.connect-innovate p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-gray);
}

.connect-innovate a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.connect-innovate a:hover {
  text-decoration: underline;
  color: var(--black);
}

.connect-innovate .closing {
  font-style: italic;
  font-weight: bold;
  color: var(--light-black);
  text-align: center;
  margin-top: 30px;
}

/* Gallery Page Section Start */

/* Gallery image wrapper (optional styling) */
.gallery-img-wrapper {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-img-wrapper:hover {
  transform: scale(1.03);
}

/* Modal navigation buttons */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1056;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  padding: 10px 15px;
  font-size: 2rem;
  cursor: pointer;
}

.modal-nav.left {
  left: 10px;
}

.modal-nav.right {
  right: 10px;
}

.modal-nav:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Services Page Secion Start */

h2.section-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2rem;
}

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

/* === Section 1: TV Parts - Fade & Pop Effect === */
.services-parts-section .card {
  background-color: var(--black);
  border: 2px solid var(--secondary-color);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
  opacity: 0.9;
}

.services-parts-section .card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.services-parts-section .card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* margin-bottom: 15px; */
}

.img-divider {
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.services-parts-section .card h5 {
  color: var(--secondary-color);
}

/* === Section 2: Brands - Slide Up on Hover === */
.services-brands-section {
  position: relative;
  z-index: 1;
}

/* Background image */
.brand-bg-image {
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; */
  background: url("./../all-images/images/bg-6.webp") no-repeat center
    center/cover;
  z-index: 0;
}

/* Overlay */
.brand-bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* dark semi-transparent overlay */
  z-index: 1;
}

/* Make sure content is above both */
.services-brands-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* Brand card box shadow only */
.brand-card {
  background: transparent;
  padding: 1rem 0.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
  text-align: center;
}

.brand-card:hover {
  transform: scale(1.05);
}

/* Circular brand logo */
.brand-logo-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  background-color: var(--white);
}

.brand-logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Section 3: Service Types - Rotate Effect === */
.services-types-section .card {
  background-color: var(--secondary-color);
  color: var(--black);
  border: none;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.services-types-section .card:hover {
  transform: rotateY(10deg) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.services-types-section .card i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .services-brand-card {
    width: 120px;
    margin-right: 0.5rem;
  }

  /* .services-parts-section .card,
  .services-types-section .card {
    padding: 1rem !important;
  } */
}

/* LED / LCD Screen Services Section Start */

/* ====== Common ====== */
.led-lcd-repair-service-details-section-title {
  text-align: center;
  font-weight: 700;
  /* margin: 10px 0 30px; */
  color: var(--secondary-color);
}

.highlight {
  color: var(--primary-color);
}

/* ====== Intro Section ====== */
.led-lcd-repair-service-details-intro {
  padding: 20px 20px;
}

.led-lcd-repair-service-details-intro img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ====== Common Issues ====== */
.led-lcd-repair-service-details-issues {
  background: url("#") no-repeat center center;
  background-size: cover;
  color: var(--white);
  position: relative;
  padding: 80px 20px;
}

.led-lcd-repair-service-details-issues::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 23, 23, 0.85);
  z-index: 0;
}

.led-lcd-repair-service-details-issues .container {
  position: relative;
  z-index: 1;
}

.led-lcd-repair-service-details-issue-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--primary-color);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
  color: var(--white);
}

.led-lcd-repair-service-details-issue-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.led-lcd-repair-service-details-issue-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* ====== Installation Section ====== */
.led-lcd-repair-service-details-installation {
  /* background-color: var(--light-black); */
  color: var(--white);
  padding: 20px 20px;
}

.led-lcd-repair-service-details-install-box {
  background-color: #222;
  border-left: 5px solid var(--secondary-color);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.led-lcd-repair-service-details-install-box i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Contact Page Contact Details & Form Section Start */

.contact-page-section {
  padding: 30px 20px;
}

.contact-page-heading {
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.contact-page-box {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.contact-page-info h5 {
  margin-bottom: 10px;
}

.contact-page-info p {
  margin-bottom: 20px;
  color: var(--light-black);
}

/* Specific Sections */
.contact-call h5 {
  color: var(--secondary-color);
}

.contact-call p {
  font-weight: 500;
}

.contact-email h5 {
  color: #dc3545;
  /* Bootstrap danger */
}

.contact-email p {
  font-style: italic;
}

.contact-address h5 {
  color: var(--primary-color);
}

.contact-address p {
  line-height: 1.6;
}

.form-label {
  color: var(--light-black);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--black);
  font-weight: bold;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

@media (max-width: 768px) {
  .contact-page-info,
  .contact-page-form {
    margin-bottom: 30px;
  }
}

.contact-page-section {
  padding: 30px 20px;
}

.contact-page-heading {
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

/* Contact Info Cards */
.contact-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.548);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card h5 {
  margin-bottom: 8px;
  color: var(--secondary-color);
  font-weight: 600;
}

.contact-card p {
  margin: 0;
  color: var(--light-black);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Contact Form */
.contact-form-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.644);
}

/* Button */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--black);
  font-weight: bold;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card,
  .contact-form-box {
    margin-bottom: 20px;
  }
}

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

.footer-section {
  background: var(--light-black);
  color: var(--white);
}

.footer-col {
  padding-right: 20px;
}

/* Custom border for columns */
.footer-col.border-end {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
}

/*
 * Footer Links Styling
 */
.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

/* Icon styles */
.footer-links li a i {
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

/* Icon hover effect */
.footer-links li a:hover i {
  color: var(--primary-color);
  transform: translateX(4px);
}

/*
 * Social Icons (If you add them later)
 */
.social-icons a {
  color: var(--white);
  margin-right: 12px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--secondary-color);
}

/*
 * Footer Bottom Bar
 */
.footer-bottom-border {
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  margin-top: 20px;
}

.footer-bottom {
  background-color: #111; /* Or var(--black) if defined */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ddd;
  font-size: 14px;
  font-family: "Merienda", cursive;
  text-align: center;
}

.footer-bottom a.footer-brand {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Merienda", cursive;
  text-align: center;
}

.footer-bottom a.footer-brand:hover {
  color: var(--secondary-color);
}

/*
 * Responsive Tweaks
 */
@media (max-width: 767.98px) {
  /* Added to align with Bootstrap's 'md' breakpoint */
  /* This is likely for a fixed mobile bottom nav */
  .footer-section {
    margin-bottom: 45px;
  }

  /* Remove border on mobile for a cleaner stack */
  .footer-col.border-end {
    border-right: none;
  }
}

/* ===============================
   SONY TV SERVICE DETAILS PAGE
   Modern & Animated Design
   =============================== */

/* Intro Section */
.sony-tv-brands-service-details-page-intro {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  /* padding-bottom: 40px; */
  animation: fadeIn 1s ease-in-out;
}

.sony-tv-brands-service-details-page-intro h1 {
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 0.5px;
}

.sony-tv-brands-service-details-page-intro p {
  color: var(--light-black);
  max-width: 1400px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  animation: slideUp 1s ease-in-out;
}

/* Two Column Layout */
.sony-tv-brands-service-details-page-two-col h3 {
  font-weight: 700;
  color: var(--primary-color);
}

.sony-tv-brands-service-details-page-two-col p {
  color: var(--light-black);
}

.sony-tv-brands-service-details-page-two-col img {
  border: 4px solid var(--secondary-color);
  transition: all 0.4s ease-in-out;
  border-radius: 15px;
}

.sony-tv-brands-service-details-page-two-col img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Overlay Section */
.sony-tv-brands-service-details-page-overlay-section {
  position: relative;
  width: 100%;
  height: 450px;
  background-image: url("./../all-images/images/bg-image.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sony-tv-brands-service-details-page-overlay-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.507),
    rgba(20, 20, 20, 0.95)
  );
  z-index: 1;
  transition: all 0.5s ease;
}

/* .sony-tv-brands-service-details-page-overlay-section:hover::before {
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(10, 10, 10, 0.95));
} */

.sony-tv-brands-service-details-page-overlay-section .overlay-content {
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.sony-tv-brands-service-details-page-overlay-section h2 {
  font-size: 2.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sony-tv-brands-service-details-page-overlay-section p {
  font-size: 1.1rem;
  color: #f8f9fa;
  margin-bottom: 15px;
}

/* Buttons */
.btn-warning {
  background-color: var(--primary-color);
  border: none;
  color: var(--black);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.btn-warning:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-dark {
  background-color: var(--light-black);
  border: none;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.btn-dark:hover {
  background-color: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Detailed Services */
/* === Section Background === */
.sony-tv-brands-service-details-page-detailed-services {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* === Service Card Base === */
.service-card {
  background: #fff;
  border-radius: 15px;
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* === Light Glow Hover Effect === */
.service-card::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(25deg);
  opacity: 0;
  transition: 0.5s ease;
}

.service-card:hover::before {
  top: 100%;
  opacity: 1;
}

/* === Hover Effect === */
.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 150, 255, 0.25);
  border-color: transparent;
}

/* === Icon Border with Gradient === */
.icon-border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  border-image-slice: 1;
  transition: 0.4s ease;
}

.icon-border i {
  color: var(--light-black);
  transition: all 0.4s ease;
}

/* Hover icon animation */
.service-card:hover .icon-border i {
  transform: scale(1.2) rotate(10deg);
  color: #00c6ff;
}

/* === Middle Card (Special Background) === */
/* .middle-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #007bff, #00c6ff);
  border-image-slice: 1;
} */

/* === Left & Right Cards Bottom Gradient Border === */
.service-card:not(.middle-card) {
  border-bottom: 4px solid var(--secondary-color);
  /* border-image: linear-gradient(to right, #00c6ff, #007bff); */
  border-image-slice: 1;
}

/* === Hover Animation Glow === */
.service-card:hover .icon-border {
  /* border-image: linear-gradient(45deg, #00c6ff, #007bff); */
  border-image-slice: 1;
  box-shadow: 0 0 15px rgba(0, 150, 255, 0.5);
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .service-card {
    margin-bottom: 20px;
  }

  .icon-border {
    width: 65px;
    height: 65px;
  }

  .icon-border i {
    font-size: 1.5rem;
  }
}

/* CTA Section */
.sony-tv-brands-service-details-page-cta {
  background: linear-gradient(
    90deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-in;
}

.sony-tv-brands-service-details-page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 10%,
    transparent 10%
  );
  background-size: 20px 20px;
  opacity: 0.2;
  animation: pulseBg 6s linear infinite;
}

.sony-tv-brands-service-details-page-cta .btn-dark {
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseBg {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100px 100px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sony-tv-brands-service-details-page-overlay-section {
    height: 320px;
  }

  .sony-tv-brands-service-details-page-overlay-section h2 {
    font-size: 1.6rem;
  }

  .sony-tv-brands-service-details-page-overlay-section p {
    font-size: 0.9rem;
  }
}

/* Common Issues Section */
.general-tv-service-details-page-issues {
  background: url("./../all-images/images/bg-image.png") no-repeat center
    center/cover !important;
  position: relative;
  color: #fff;
  z-index: 1;
}

.general-tv-service-details-page-issues::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

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

.glowing-heading {
  color: var(--primary-color);
  /* text-shadow: 0 0 8px rgba(0, 195, 255, 0.9),
               0 0 16px rgba(0, 114, 255, 0.7),
               0 0 32px rgba(0, 114, 255, 0.5); */
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
}

.issue-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.issue-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.issue-title {
  position: relative;
  color: #fff;
  font-weight: 600;
}

.underline {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  margin: 8px auto 15px;
  border-radius: 5px;
  transition: width 0.4s ease;
}

.issue-box:hover .underline {
  width: 80px;
}

/* Detailed Service Section */
.general-tv-service-details-page-detailed {
  background: url("./../all-images/images/bg-5.jpg") no-repeat center
    center/cover;
}

.general-tv-service-details-page-detailed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 30, 30, 0.418);
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid transparent;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid var(--secondary-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary-color), #00c6ff);
  color: #fff;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.service-card:hover .icon-wrapper {
  transform: rotate(10deg) scale(1.1);
}

/* CTA Section */
/* .general-tv-service-details-page-cta {
  background: linear-gradient(135deg, var(--secondary-color), #004aad);
} */

.general-tv-service-details-page-cta .btn-warning {
  background: linear-gradient(135deg, #ffeb3b, #ffc107);
  border: none;
  box-shadow: 0 4px 10px rgba(255, 235, 59, 0.5);
  transition: all 0.3s ease;
}

.general-tv-service-details-page-cta .btn-warning:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 235, 59, 0.7);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .issue-box {
    margin-bottom: 20px;
  }

  .general-tv-service-details-page-cta {
    text-align: center;
  }
}

/* ======================================== */
/* SEO Keyword Cloud (Ultra-Minimalist Style) */
/* ======================================== */

.seo-keywords-section {
  background-color: #f8f9fa; /* A clean, light grey background */
  border-top: 1px solid #e9ecef;
  padding: 1.5rem 0; /* Reduced padding to save space */
}

/* De-emphasize the title */
.seo-keywords-title {
  /* font-size: 1rem; */
  color: var(--secondary-color); /* Lighter color to make it less prominent */
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Style for the container of the links */
.keyword-cloud {
  line-height: 1.8; /* Tighter line height to be more compact */
  color: var(--secondary-color); /* Makes the "|" separators almost invisible */
}

/* THE MINIMALIST LINK STYLE */
.keyword-cloud a {
  font-family: var(--body-font-family);
  font-size: 0.8rem; /* 12.8px - significantly smaller than body text */
  color: #333435; /* VERY light grey for low contrast */
  text-decoration: none !important; /* No underline */
  padding: 2px 4px; /* Minimal padding */
  margin: 0 2px; /* Minimal margin */
  border: none; /* No border */
  border-radius: 0; /* No pill shape */
  background-color: transparent; /* No background */
  transition: color 0.2s ease; /* Fast, subtle hover transition */
  display: inline; /* Flow like regular text to save space */
}

.keyword-cloud a:hover {
  color: var(--secondary-color); /* A subtle pop of brand color on hover */
  background-color: transparent; /* Ensure no background on hover */
  transform: none; /* No lift effect */
  box-shadow: none; /* No shadow */
}

/* Responsive adjustment for small screens */
@media (max-width: 576px) {
  .keyword-cloud {
    text-align: left; /* Switch to left-align on mobile for cleaner text flow */
    padding: 0 1rem; /* Add some horizontal space on small screens */
  }
}

.repair-hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.repair-hero-image .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
}

.repair-card {
    background: #fff;
    border: 0;
    border-radius: 15px;
    padding: 12px;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.repair-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
}

.repair-img img {
    max-width: 100%;
    max-height: 100%;
}
