body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: black;
  color: white;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: black;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 50px;
}

.logo h1 {
	font-size: 18px;
	margin: 0;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-size: 16px;
}

.book-btn {
  background: linear-gradient(to right, #a56dff, #47e7e2);
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
}

/*Nav bar line*/
.navbar-gradient {
  height: 3px;
  background: linear-gradient(to right, #a56dff, #47e7e2);
}

/* Hero Section */
.hero {
  position: relative; /* add this */
  display: flex;
  padding: 60px 40px;
  gap: 60px;
  align-items: center;
  z-index: 1; /* keeps it above the pseudo-element */
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: radial-gradient(ellipse at bottom, rgba(80, 0, 255, 0.4), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-left img {
  max-width: 600px;
  height: auto;
}

.hero-right h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.info-box {
  background: linear-gradient(to bottom, #000, #0e0040);
  border: 1px solid #5f5fe0;
  border-radius: 15px;
  padding: 20px;
  width: 600px;
}

.booking-btn-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.booking-btn {
  background: linear-gradient(to right, #a56dff, #47e7e2);
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
}

.info-features {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.info-features img {
  height: 50px;
}

/*--------------------------------ABOUT SECTION-------------------------------*/
.about {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 60px;
  gap: 60px;
}

.about-left {
  max-width: 50%;
}

.about-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #47e7e2;
  border-radius: 12px;
  padding: 6px 16px;
  width: fit-content;
  margin-bottom: 20px;
}

.about-header img {
  height: 25px;
}

.about-header span {
  font-weight: bold;
  font-size: 18px;
}

.about-left h2 {
  font-size: 36px;
  margin: 0;
  font-weight: bold;
}

.about-left h2 span {
  color: #888;
  font-weight: normal;
}

.underline {
  width: 140px;
  height: 3px;
  background: linear-gradient(to right, #a56dff, #47e7e2);
  margin: 15px 0 30px;
}

.about-left h3 {
  margin: 20px 0 10px;
}

.about-left p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-right img {
  border-radius: 12px;
  max-width: 600px;
  height: 500px;
  padding: 10px; /* creates the gap between image and border */
  border: 2px solid rgba(255, 255, 255, 0.2); /* faint white border */
}


/*--------------------------------FAQ SECTION-------------------------------*/
.section-divider {
  width: 80%;
  height: 1px;
  margin: 60px auto;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.4) 0%, transparent 80%);
}

.faq-section {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.faq-left img {
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px; /* spacing between image and border */
  border: 1px solid rgba(255, 255, 255, 0.2); /* faint white */
}


.faq-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #47e7e2;
  border-radius: 12px;
  padding: 6px 16px;
  width: fit-content;
  margin-bottom: 20px;
}

.faq-header img {
  height: 25px;
}

.faq-header span {
  font-weight: bold;
  font-size: 18px;
}

.faq-right {
  position: relative;
  width: 50%;
  height: 500px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02); /* just to see boundaries */
}


.faq-right h2 {
  font-size: 32px;
  margin: 0;
}

.faq-right p {
  margin-bottom: 30px;
  line-height: 1.5;
  color: #ccc;
}

.faq-box {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #6666ff;
  background: linear-gradient(to bottom, #000000, #0d0033);
  box-shadow: 0 0 10px #4f61ff40;
  margin-bottom: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2); /* faint white border */
}

.faq-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}

.faq-box p {
  color: #ccc;
  font-size: 15px;
  margin: 0;
}

.faq-scrollable {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}
/*------------------------------TESTIMONIALS-------------------------------*/
.testimonials {
  padding: 0px 60px 80px;
  overflow-x: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  will-change: transform;
  width: max-content;
}

.testimonial-card {
  min-width: 350px;
  max-width: 350px;
  background: linear-gradient(to bottom, #000000, #0d0033);
  border: 1px solid #6666ff;
  border-radius: 16px;
  padding: 20px;
  color: white;
  box-shadow: 0 0 10px #4f61ff40;
  flex-shrink: 0;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 18px;
}

.testimonial-card span {
  color: gold;
  font-size: 16px;
  margin-left: 5px;
}

.testimonial-card small {
  color: #bbb;
  display: block;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

/*-----------------------------------------------------BOOK NOW --------------------------*/

.book-now-section {
  padding: 80px 40px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(74,0,255,0.1), transparent 80%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.book-now-container {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #000000, #0e0033);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(100, 0, 255, 0.2);
}

.book-now-container h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.book-now-container p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
}

/*------------------------------------------------------------FOOTER---------------------------------*/

footer.modern-footer {
  position: relative;
  background: linear-gradient(to bottom, #000014 0%, #0b0057 50%, #25004c 100%);
  padding: 100px 30px 40px;
  color: #cccccc;
  overflow: hidden;
  z-index: 1;
}

.footer-spotlight {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at top, rgba(0, 140, 255, 0.3), rgba(179, 0, 255, 0.1), transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  gap: 40px;
}

.footer-column h2, .footer-column h3 {
  color: white;
  margin-bottom: 15px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #bbbbbb;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-form input {
  padding: 10px 14px;
  border: none;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-size: 14px;
  outline: none;
  width: 180px;
}

.footer-form button {
  background: linear-gradient(90deg, #4a00e0, #00d4ff);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  font-size: 13px;
  color: #888;
  position: relative;
  z-index: 1;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.social-icons a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.social-icons a:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

/*---------------------------------------SAMSUNG PRICE LIST-------------------------------*/
.pricing-section {
  background: linear-gradient(to bottom, #000014, #0a0042, #2d006b);
  padding: 80px 20px;
  color: white;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffffff;
}

.pricing-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 174, 255, 0.15);
}

.pricing-table thead {
  background: linear-gradient(to right, #4a00e0, #00d4ff);
  color: white;
}

.pricing-table th,
.pricing-table td {
  padding: 20px;
  text-align: center;
  font-size: 16px;
}

.pricing-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.06);
}

.pricing-table td:first-child {
  font-weight: bold;
  color: #00d4ff;
}

/*----------------------------------------------------------FREE GIFT OFFER--------------------------------*/
.free-gift-offer {
  background: linear-gradient(to bottom, #000014, #110035);
  padding: 100px 20px;
  color: white;
  overflow: hidden;
  position: relative;
}

.gift-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.gift-text {
  flex: 1;
  min-width: 280px;
}

.gift-text h2 {
  font-size: 32px;
  color: white;
  margin-bottom: 20px;
}

.gift-text p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 10px;
}

.gift-images {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.gift-img {
  max-width: 160px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.2));
}

.gift-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(114, 0, 255, 0.4));
}



/*-----------------------------------------------------OTHER SERVICES---------------------------------------*/
.samsung-extra-services {
  background: linear-gradient(to bottom, #0a0020, #00001a);
  padding: 80px 20px;
  color: white;
}

.service-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.service-image {
  flex: 1;
  min-width: 300px;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 174, 255, 0.15);
}

.service-content {
  flex: 1;
  min-width: 300px;
  background: linear-gradient(135deg, rgba(72,0,150,0.4), rgba(0,212,255,0.4));
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 174, 255, 0.1);
}

.service-content h2 {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 28px;
}

.service-content p {
  margin-bottom: 10px;
  font-size: 16px;
  color: #dddddd;
}

.service-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.service-content ul li {
  margin-bottom: 5px;
}

/*-------------------------------------BOOKING------------------------*/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: linear-gradient(to bottom, #0a0025, #25003c);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: white;
  box-shadow: 0 0 30px rgba(0,174,255,0.2);
  max-width: 400px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.modal-btn {
  background: linear-gradient(to right, #a56dff, #47e7e2);
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
}




/*=================== MOBILE RESPONSIVENESS ===================*/
@media (max-width: 768px) {
  body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-size: 16px;
  }

  /* Navbar */
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    margin-bottom: 5px;
  }
  
  .logo h1 {
	  margin-bottom: 20px;
  }

.navbar nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
}


  .nav a {
    margin: 20px 0;
    text-align: center;
  }

  .book-btn {
    width: 100%;
    max-width: 220px;
    margin-top: 10px;
  }

  /* Hero Section */
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    gap: 30px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .info-box {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .info-features {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .info-features div {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* About Section */
  .about {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    align-items: center;
  }
  
  .about-header {
  margin: 0 auto 20px; /* Center the about header */
  justify-content: center;
  }

  .underline {
	margin: 15px auto 30px; /* Center the gradient underline */
   }

  .about-left,
  .about-right {
    max-width: 100%;
    width: 100%;
  }

  .about-right img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  /* FAQ Section */
  .faq-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .faq-header {
    margin: 0 auto 20px; /* Center the FAQ header */
    justify-content: center;
  }
	
  .faq-left,
  .faq-right {
    width: 100%;
  }

  .faq-left img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .faq-right {
    height: auto !important;
    position: static;
  }
  
  .faq-right h2,
  .faq-right p {
    text-align: center;
  }

  .faq-scrollable {
    position: static;
    height: auto;
    overflow: visible;
    padding: 0;
  }

  .faq-box:last-child {
    margin-bottom: 0;
  }

  /* Testimonials */
  .testimonials {
	padding: 0px 20px;
	text-align: center;
   }

  .testimonial-slider {
     flex-direction: column;
    align-items: center; /* Center the testimonial cards */
    overflow: visible;
    width: 100%;
   }
.testimonial-card {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  box-sizing: border-box;
  padding: 20px;
}
  /* Book Now Section */
  .book-now-section {
    padding: 20px 20px;
    text-align: center;
  }

.book-now-container {
  width: 100%;
  max-width: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  overflow-x: hidden;
}

  /* Pricing Table */
  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .pricing-table td:first-child {
    background: rgba(0, 0, 0, 0.1);
    font-weight: bold;
    color: #00d4ff;
  }

  /* Free Gift Offer */
  .gift-container {
    flex-direction: column;
    text-align: center;
  }

  .gift-images {
    justify-content: center;
  }

  /* Samsung Extra Services */
  .service-container {
    flex-direction: column;
  }

  .service-image img {
    width: 100%;
  }

  /* Footer */
  .footer-inner,
  footer .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 20px;
  }

  .footer-form {
    flex-direction: column;
    gap: 15px;
  }

  .footer-form input {
    width: 100%;
  }
  
  footer.modern-footer {
    padding: 40px 20px;
  }

  /* Modal */
  .modal-content {
    width: 90%;
  }
}

/* =================== MOBILE RESPONSIVENESS: Repair Pages =================== */
@media (max-width: 768px) {

  /* Generic container padding */
  .container,
  .pricing-section,
  .free-gift-offer,
  .service-section {
    padding: 40px 20px;
    box-sizing: border-box;
  }

  /* Pricing Table */
  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }

  .pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .pricing-table td:first-child {
    background-color: rgba(0, 0, 0, 0.1);
    font-weight: bold;
    color: #00d4ff;
  }
  
  .pricing-table td.section-header {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: none;
}

  /* Free Gift Section */
  .gift-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .gift-images {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .gift-img {
    width: 100px;
    height: auto;
  }

  /* Extra Samsung Services Section */
  .service-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .service-content h2 {
    margin-bottom: 20px;
  }

  .service-content ul {
    padding-left: 20px;
    text-align: left;
  }

  /* Book Now Modal */
  .modal-content {
    width: 90%;
    padding: 30px 20px;
  }

  .modal-content h2 {
    font-size: 22px;
    text-align: center;
  }

  .modal-content p {
    text-align: center;
  }

  .modal-content .modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .modal-actions button,
  .modal-actions a {
    width: 100%;
    padding: 12px;
  }

  /* Footer */
  footer .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 20px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-form {
    flex-direction: column;
    gap: 15px;
  }

  .footer-form input {
    width: 100%;
  }
  
.pricing-table td {
  display: block;
  width: 100%;
  padding-left: 50%;
  position: relative;
  box-sizing: border-box;
  text-align: center; /* Center-align price text */
}

.pricing-table td::before {
  content: attr(data-label);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  color: #00d4ff;
  white-space: nowrap;
  padding-right: 10px; /* Adds space between label and value */
  min-width: 120px;
  display: inline-block;
}

.pricing-table tr {
  margin-bottom: 20px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px; /* Make corners more rounded */
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
}

  .pricing-table thead {
    display: none;
  }
  
    .footer-inner,
  footer .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 20px;
  }

  .footer-column {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
}
