/* This is for new layouts styles.*/

/* Hero Section */
.projector-hero {
  background: linear-gradient(135deg, #442B6D 0%, #6B46A8 100%);
  color: white;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}
.hero-feature ion-icon {
  font-size: 2rem;
  color: #FFD700;
}

/* Projector Selector */
.projector-hero strong{color:white}	
.projector-selector {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
.selector-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}
.selector-tab {
  padding: 1rem 2rem;
  cursor: pointer;
  border: none;
  background: none;
  font-weight: 600;
  color: #666;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.selector-tab.active {
  color: #442B6D;
  border-bottom-color: #442B6D;
}
.selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.selector-option {
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.selector-option:hover, .selector-option.selected {
  border-color: #442B6D;
  background: #f9f6ff;
  transform: translateY(-5px);
}
.selector-option ion-icon {
  font-size: 3rem;
  color: #442B6D;
  margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  height: 100%;
}
.service-card:hover {
  border-color: #442B6D;
  box-shadow: 0 8px 20px rgba(68,43,109,0.15);
  transform: translateY(-5px);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(68,43,109,0.2);
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.gallery-caption {
  padding: 1rem;
  background: white;
  font-weight: 600;
  color: #442B6D;
}

/* Quick Quote Form */
.quick-quote-form {
  background: linear-gradient(135deg, #442B6D 0%, #6B46A8 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}
.quick-quote-form input, .quick-quote-form select, .quick-quote-form textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Other Services Sidebar */
.services-sidebar {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 2rem;
  position: sticky;
  top: 20px;
}
.service-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.service-link:hover {
  border-color: #442B6D;
  transform: translateX(5px);
}
.service-link ion-icon {
  font-size: 2rem;
  color: #442B6D;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
}

/*For Index Page*/
.swiper-slide-accessories img {display: block; width: auto; height: 185px; object-fit: fill;}
.swiper-slide {line-height: 0;}


/* NEW: Hero section styling */

.hero-main {

  position: relative;

  min-height: 450px;

  background: linear-gradient(135deg, #442B6D 0%, #6B46A8 100%);

  overflow: hidden;

}

.hero-content {

  position: relative;

  z-index: 2;

  padding: 4rem 2rem;

  color: white;

}

.hero-title {

  font-size: 3.5rem;

  font-weight: 800;

  line-height: 1.2;

  margin-bottom: 1.5rem;

  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);

}

.hero-subtitle {

  font-size: 1.5rem;

  margin-bottom: 2rem;

  opacity: 0.95;

}

.hero-cta {

  display: flex;

  gap: 1rem;

  flex-wrap: wrap;

  margin-top: 2rem;

}

.hero-cta .button {

  padding: 1.5rem 2.5rem;

  font-size: 1.1rem;

  font-weight: 600;

  border-radius: 8px;

  transition: all 0.3s;

}

.hero-image {

  position: absolute;

  right: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 50%;

  height: 100%;

  background-size: cover;

  background-position: center;

  opacity: 0.15;

}



/* NEW: Quick booking widget */

.quick-booking {

  background: white;

  border-radius: 12px;

  box-shadow: 0 8px 24px rgba(0,0,0,0.15);

  padding: 2rem;

  margin-top: -4rem;

  position: relative;

  z-index: 10;

}

.booking-tabs {

  display: flex;

  gap: 1rem;

  margin-bottom: 1.5rem;

  border-bottom: 2px solid #f0f0f0;

}

.booking-tab {

  padding: 1rem 2rem;

  cursor: pointer;

  border: none;

  background: none;

  font-weight: 600;

  color: #666;

  transition: all 0.3s;

  border-bottom: 3px solid transparent;

}

.booking-tab.active {

  color: #442B6D;

  border-bottom-color: #442B6D;

}



/* NEW: Service showcase cards */

.service-showcase {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 2rem;

  margin: 3rem 0;

}

.showcase-card {

  background: white;

  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  transition: all 0.3s;

  cursor: pointer;

}

.showcase-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 12px 24px rgba(68,43,109,0.2);

}

.showcase-image {

  width: 100%;

  height: 240px;

  object-fit: cover;

}

.showcase-content {

  padding: 1.5rem;

}

.showcase-title {

  font-size: 1.4rem;

  font-weight: 700;

  color: #442B6D;

  margin-bottom: 0.75rem;

}

.showcase-desc {

  color: #666;

  margin-bottom: 1rem;

  line-height: 1.6;

}

.showcase-features {

  display: flex;

  gap: 0.5rem;

  flex-wrap: wrap;

  margin-bottom: 1rem;

}

.feature-tag {

  background: #f0e6ff;

  color: #442B6D;

  padding: 0.4rem 0.8rem;

  border-radius: 20px;

  font-size: 0.85rem;

  font-weight: 600;

}

.showcase-cta {

  display: flex;

  align-items: center;

  color: #442B6D;

  font-weight: 600;

  text-decoration: none;

}



/* NEW: Trust indicators */

.trust-bar {

  background: linear-gradient(to right, #f9f9f9, #ffffff, #f9f9f9);

  padding: 2rem 0;

  margin: 2rem 0;

}

.trust-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 2rem;

  text-align: center;

}

.trust-item {

  padding: 1.5rem;

}

.trust-icon {

  font-size: 3rem;

  color: #442B6D;

  margin-bottom: 1rem;

}

.trust-number {

  font-size: 2.5rem;

  font-weight: 800;

  color: #442B6D;

  display: block;

}

.trust-label {

  color: #666;

  margin-top: 0.5rem;

  font-weight: 600;

}



/* NEW: Popular categories */

.category-card {

  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);

  border: 2px solid #e8e8e8;

  border-radius: 12px;

  padding: 2rem;

  text-align: center;

  transition: all 0.3s;

  cursor: pointer;

  text-decoration: none;

  display: block;

}

.category-card:hover {

  border-color: #442B6D;

  transform: translateY(-5px);

  box-shadow: 0 8px 20px rgba(68,43,109,0.15);

}

.category-icon {

  font-size: 4rem;

  color: #442B6D;

  margin-bottom: 1rem;

}

.category-name {

  font-size: 1.3rem;

  font-weight: 700;

  color: #333;

  margin-bottom: 0.5rem;

}

.category-count {

  color: #666;

  font-size: 0.95rem;

}



/* NEW: Testimonial section */

.testimonial-card {

  background: white;

  padding: 2rem;

  border-radius: 12px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  margin: 1rem;

}

.testimonial-text {

  font-style: italic;

  color: #444;

  line-height: 1.8;

  margin-bottom: 1.5rem;

}

.testimonial-author {

  display: flex;

  align-items: center;

  gap: 1rem;

}

.author-avatar {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: #442B6D;

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  font-size: 1.2rem;

}

.author-info {

  flex: 1;

}

.author-name {

  font-weight: 700;

  color: #333;

}

.author-role {

  color: #666;

  font-size: 0.9rem;

}

.rating {

  color: #FFD700;

  font-size: 1.2rem;

}



/* NEW: Process steps */

.process-steps {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;

  margin: 3rem 0;

}

.step-card {

  text-align: center;

  position: relative;

  padding: 2rem;

}

.step-number {

  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: linear-gradient(135deg, #442B6D 0%, #6B46A8 100%);

  color: white;

  font-size: 2rem;

  font-weight: 800;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 1.5rem;

  box-shadow: 0 4px 12px rgba(68,43,109,0.3);

}

.step-title {

  font-size: 1.2rem;

  font-weight: 700;

  color: #333;

  margin-bottom: 0.75rem;

}

.step-desc {

  color: #666;

  line-height: 1.6;

}



/* NEW: Location coverage */

.location-badge {

  display: inline-block;

  background: white;

  border: 2px solid #442B6D;

  color: #442B6D;

  padding: 0.75rem 1.5rem;

  border-radius: 25px;

  font-weight: 600;

  margin: 0.5rem;

  transition: all 0.3s;

}

.location-badge:hover {

  background: #442B6D;

  color: white;

  transform: scale(1.05);

}



@media (max-width: 768px) {

  .hero-title {font-size: 2rem;}

  .hero-subtitle {font-size: 1.1rem;}

  .hero-cta {flex-direction: column;}

  .hero-cta .button {width: 100%;}

  .hero-image {display: none;}

  .service-showcase {grid-template-columns: 1fr;}

}

</style>

<style>

.swiper-slide-accessories img {display: block; width: auto; height: 185px; object-fit: fill;}

.swiper-slide {line-height: 0;}



/* NEW: Hero section styling */

.hero-main {

  position: relative;

  min-height: 450px;

  background: linear-gradient(135deg, #442B6D 0%, #6B46A8 100%);

  overflow: hidden;

}

.hero-content {

  position: relative;

  z-index: 2;

  padding: 4rem 2rem;

  color: white;

}

.hero-title {

  font-size: 3.5rem;

  font-weight: 800;

  line-height: 1.2;

  margin-bottom: 1.5rem;

  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);

}

.hero-subtitle {

  font-size: 1.5rem;

  margin-bottom: 2rem;

  opacity: 0.95;

}

.hero-cta {

  display: flex;

  gap: 1rem;

  flex-wrap: wrap;

  margin-top: 2rem;

}

.hero-cta .button {

  padding: 1.5rem 2.5rem;

  font-size: 1.1rem;

  font-weight: 600;

  border-radius: 8px;

  transition: all 0.3s;

}

.hero-image {

  position: absolute;

  right: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 50%;

  height: 100%;

  background-size: cover;

  background-position: center;

  opacity: 0.15;

}



/* NEW: Quick booking widget */

.quick-booking {

  background: white;

  border-radius: 12px;

  box-shadow: 0 8px 24px rgba(0,0,0,0.15);

  padding: 2rem;

  margin-top: -4rem;

  position: relative;

  z-index: 10;

}

.booking-tabs {

  display: flex;

  gap: 1rem;

  margin-bottom: 1.5rem;

  border-bottom: 2px solid #f0f0f0;

}

.booking-tab {

  padding: 1rem 2rem;

  cursor: pointer;

  border: none;

  background: none;

  font-weight: 600;

  color: #666;

  transition: all 0.3s;

  border-bottom: 3px solid transparent;

}

.booking-tab.active {

  color: #442B6D;

  border-bottom-color: #442B6D;

}



/* NEW: Service showcase cards */

.service-showcase {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 2rem;

  margin: 3rem 0;

}

.showcase-card {

  background: white;

  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  transition: all 0.3s;

  cursor: pointer;

}

.showcase-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 12px 24px rgba(68,43,109,0.2);

}

.showcase-image {

  width: 100%;

  height: 240px;

  object-fit: cover;

}

.showcase-content {

  padding: 1.5rem;

}

.showcase-title {

  font-size: 1.4rem;

  font-weight: 700;

  color: #442B6D;

  margin-bottom: 0.75rem;

}

.showcase-desc {

  color: #666;

  margin-bottom: 1rem;

  line-height: 1.6;

}

.showcase-features {

  display: flex;

  gap: 0.5rem;

  flex-wrap: wrap;

  margin-bottom: 1rem;

}

.feature-tag {

  background: #f0e6ff;

  color: #442B6D;

  padding: 0.4rem 0.8rem;

  border-radius: 20px;

  font-size: 0.85rem;

  font-weight: 600;

}

.showcase-cta {

  display: flex;

  align-items: center;

  color: #442B6D;

  font-weight: 600;

  text-decoration: none;

}



/* NEW: Trust indicators */

.trust-bar {

  background: linear-gradient(to right, #f9f9f9, #ffffff, #f9f9f9);

  padding: 2rem 0;

  margin: 2rem 0;

}

.trust-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 2rem;

  text-align: center;

}

.trust-item {

  padding: 1.5rem;

}

.trust-icon {

  font-size: 3rem;

  color: #442B6D;

  margin-bottom: 1rem;

}

.trust-number {

  font-size: 2.5rem;

  font-weight: 800;

  color: #442B6D;

  display: block;

}

.trust-label {

  color: #666;

  margin-top: 0.5rem;

  font-weight: 600;

}



/* NEW: Popular categories */

.category-card {

  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);

  border: 2px solid #e8e8e8;

  border-radius: 12px;

  padding: 2rem;

  text-align: center;

  transition: all 0.3s;

  cursor: pointer;

  text-decoration: none;

  display: block;

}

.category-card:hover {

  border-color: #442B6D;

  transform: translateY(-5px);

  box-shadow: 0 8px 20px rgba(68,43,109,0.15);

}

.category-icon {

  font-size: 4rem;

  color: #442B6D;

  margin-bottom: 1rem;

}

.category-name {

  font-size: 1.3rem;

  font-weight: 700;

  color: #333;

  margin-bottom: 0.5rem;

}

.category-count {

  color: #666;

  font-size: 0.95rem;

}



/* NEW: Testimonial section */

.testimonial-card {

  background: white;

  padding: 2rem;

  border-radius: 12px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  margin: 1rem;

}

.testimonial-text {

  font-style: italic;

  color: #444;

  line-height: 1.8;

  margin-bottom: 1.5rem;

}

.testimonial-author {

  display: flex;

  align-items: center;

  gap: 1rem;

}

.author-avatar {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: #442B6D;

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  font-size: 1.2rem;

}

.author-info {

  flex: 1;

}

.author-name {

  font-weight: 700;

  color: #333;

}

.author-role {

  color: #666;

  font-size: 0.9rem;

}

.rating {

  color: #FFD700;

  font-size: 1.2rem;

}



/* NEW: Process steps */

.process-steps {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;

  margin: 3rem 0;

}

.step-card {

  text-align: center;

  position: relative;

  padding: 2rem;

}

.step-number {

  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: linear-gradient(135deg, #442B6D 0%, #6B46A8 100%);

  color: white;

  font-size: 2rem;

  font-weight: 800;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 1.5rem;

  box-shadow: 0 4px 12px rgba(68,43,109,0.3);

}

.step-title {

  font-size: 1.2rem;

  font-weight: 700;

  color: #333;

  margin-bottom: 0.75rem;

}

.step-desc {

  color: #666;

  line-height: 1.6;

}



/* NEW: Location coverage */

.location-badge {

  display: inline-block;

  background: white;

  border: 2px solid #442B6D;

  color: #442B6D;

  padding: 0.75rem 1.5rem;

  border-radius: 25px;

  font-weight: 600;

  margin: 0.5rem;

  transition: all 0.3s;

}

.location-badge:hover {

  background: #442B6D;

  color: white;

  transform: scale(1.05);

}



@media (max-width: 768px) {

  .hero-title {font-size: 2rem;}

  .hero-subtitle {font-size: 1.1rem;}

  .hero-cta {flex-direction: column;}

  .hero-cta .button {width: 100%;}

  .hero-image {display: none;}

  .service-showcase {grid-template-columns: 1fr;}

}



/*-- Header bar styles --*/
	.topheaderbar ion-icon:hover{color:yellowgreen}
	@media screen and (max-width: 768px) {
	.topheaderbar .column{padding:0px !important}
	.topheaderbar ion-icon{font-size:34px !important}
	}
	[x-cloak] { display: none !important; }

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  background: white;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 30;
}

.mobile-bottom-nav .navbar-item {
  flex-direction: column;
  padding: 0.5rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #442B6D;
}

.mobile-bottom-nav .navbar-item ion-icon {
  font-size: 24px;
  margin-bottom: 2px;
}

.mobile-bottom-nav .navbar-item:hover {
  background: #f5f5f5;
  color: #6B46A8;
}

/* Hamburger button styling */
.navbar-burger {
  display: none;
  background: #442B6D;
  border-radius: 4px;
}

.navbar-burger span {
  background-color: white;
}

@media screen and (max-width: 1023px) {
  .navbar-burger {
    display: block;
    cursor: pointer;
    height: 3.25rem;
    width: 3.25rem;
    position: relative;
    margin: 8px 0 8px auto;
  }
  
  .navbar-burger span {
    display: block;
    height: 2px;
    left: calc(50% - 8px);
    position: absolute;
    transform-origin: center;
    transition: all 0.3s ease;
    width: 16px;
  }
  
  .navbar-burger span:nth-child(1) {
    top: calc(50% - 6px);
  }
  
  .navbar-burger span:nth-child(2) {
    top: calc(50% - 1px);
  }
  
  .navbar-burger span:nth-child(3) {
    top: calc(50% + 4px);
  }
  
  /* Hamburger to X animation */
  .navbar-burger.is-active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  
  .navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
  }
  
  .navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
  
  /* Mobile menu */
  .navbar-menu {
    display: none;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 20;
  }
  
  .navbar-menu.is-active {
    display: block;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Mobile dropdown */
  .navbar-item.has-dropdown .navbar-dropdown {
    display: none;
    background: #f5f5f5;
    padding-left: 1rem;
  }
  
  .navbar-item.has-dropdown .navbar-dropdown.is-active {
    display: block;
  }
  
  .navbar-item.has-dropdown .navbar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Mobile navbar items */
  .navbar-item {
    padding: 1rem 1.5rem;
  }
  
  .navbar-dropdown .navbar-item {
    padding: 0.75rem 1.5rem;
  }
  
  /* WhatsApp button on mobile */
  .navbar-end .navbar-item {
    padding: 1rem 1.5rem;
  }
  
  .navbar-end .button {
    width: 100%;
    justify-content: center;
  }
  
  /* Add padding to body for fixed bottom nav */
  body {
    padding-bottom: 70px;
  }
}

/* Desktop hover effect */
@media screen and (min-width: 1024px) {
  .navbar-item.has-dropdown:hover .navbar-dropdown {
    display: block;
  }
  
  .navbar-burger {
    display: none !important;
  }
  
  body {
    padding-bottom: 0;
  }
}
.navbar.is-fixed-top{border-bottom: 1px solid #dfdfdf}	


/*<!-- MODIFIED: Enhanced styling for IT Rentals tab -->*/
.quick-booking h3 {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0e6ff;
}

.quick-booking .button.is-outlined:hover {
  background: #442B6D;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(68, 43, 109, 0.2);
}

.booking-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .quick-booking h3 {
    font-size: 1rem;
  }
  
  .booking-tabs {
    gap: 0.25rem;
  }
  
  .booking-tab {
    flex: 1;
    min-width: 140px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .booking-tab ion-icon {
    display: block;
    margin: 0 auto 0.25rem;
  }
}

/*<!-- NEW: Additional CSS for Image Sliders -->*/
.showcase-image-slider {

  position: relative !important;

  overflow: hidden!important;

  border-radius: 12px 12px 0 0;

  height: 240px !important;

}

.showcase-image-slider .swiper-wrapper {

  height: 240px;

}

.showcase-image-slider .swiper-slide {

  height: 240px;

}

.showcase-image-slider .swiper-pagination {

  bottom: 10px;

}

.showcase-image-slider .swiper-pagination-bullet {

  background: white;

  opacity: 0.7;

}

.showcase-image-slider .swiper-pagination-bullet-active {

  background: #442B6D;

  opacity: 1;

}


.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-slide.active { opacity: 1; position: relative; }


/* Hero Section */
.projector-hero {
  background: linear-gradient(135deg, #442B6D 0%, #6B46A8 100%);
  color: white;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}
.hero-feature ion-icon {
  font-size: 2rem;
  color: #FFD700;
}

/* Projector Selector */
.projector-hero strong{color:white}	
.projector-selector {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
.selector-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}
.selector-tab {
  padding: 1rem 2rem;
  cursor: pointer;
  border: none;
  background: none;
  font-weight: 600;
  color: #666;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.selector-tab.active {
  color: #442B6D;
  border-bottom-color: #442B6D;
}
.selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.selector-option {
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.selector-option:hover, .selector-option.selected {
  border-color: #442B6D;
  background: #f9f6ff;
  transform: translateY(-5px);
}
.selector-option ion-icon {
  font-size: 3rem;
  color: #442B6D;
  margin-bottom: 1rem;
}

/* Comparison Table */
.comparison-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th {
  background: linear-gradient(135deg, #442B6D 0%, #6B46A8 100%);
  color: white;
  padding: 1.5rem;
  font-weight: 700;
  text-align: left;
}
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.comparison-table tr:hover {
  background: #f9f6ff;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(68,43,109,0.2);
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.gallery-caption {
  padding: 1rem;
  background: white;
  font-weight: 600;
  color: #442B6D;
}

/* Quick Quote Form */
.quick-quote-form {
  background: linear-gradient(135deg, #442B6D 0%, #6B46A8 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}
.quick-quote-form input, .quick-quote-form select, .quick-quote-form textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Other Services Sidebar */
.services-sidebar {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 2rem;
  position: sticky;
  top: 20px;
}
.service-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.service-link:hover {
  border-color: #442B6D;
  transform: translateX(5px);
}
.service-link ion-icon {
  font-size: 2rem;
  color: #442B6D;
}

.city-location-card {
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.city-location-card:hover {
  border-color: #442B6D;
  box-shadow: 0 12px 24px rgba(68,43,109,0.15);
  transform: translateY(-5px);
}

.city-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 2px solid #f0f0f0;
}

.city-areas {
  padding: 1.5rem;
  background: #f9f9f9;
  flex: 1;
}

.area-label {
  font-weight: 600;
  color: #442B6D;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: white;
  border: 2px solid #442B6D;
  border-radius: 20px;
  color: #442B6D;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
}

.area-link:hover {
  background: #442B6D;
  color: white;
  transform: scale(1.05);
}

.area-link-plain {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 20px;
  color: #666;
  font-size: 0.9rem;
  cursor: default;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
  .comparison-table {
    overflow-x: auto;
  }
  .city-location-card {
    margin-bottom: 1.5rem;
  }
  .area-links {
    gap: 0.4rem;
  }
  .area-link, .area-link-plain {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* ========================================
   Location Quick Links (Sidebar)
   ======================================== */
.location-links {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 12px;
}
.location-links h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #442B6D;
  margin-bottom: 1rem;
}
.location-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.location-link {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #333;
  transition: all 0.3s;
}
.location-link:hover {
  background: #f0e6ff;
  color: #442B6D;
}
.location-link.active {
  color: #442B6D;
  font-weight: 600;
  background: #f0e6ff;
}
.location-link ion-icon {
  margin-right: 0.25rem;
  vertical-align: middle;
}

/* ========================================
   Free Delivery Notice
   ======================================== */
.delivery-notice {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin: 0 auto;
  max-width: 900px;
  padding: 1rem 1.5rem;
  background: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #442B6D;
}
.delivery-notice strong {
  color: #442B6D;
}

/* ========================================
   FAQ Cards
   ======================================== */
.faq-card {
  cursor: pointer;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 2px solid #e8e8e8;
  transition: border-color 0.3s;
}
.faq-card:hover {
  border-color: #d0c4e0;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question {
  color: #442B6D;
  font-size: 1.1rem;
  font-weight: 700;
}
.faq-icon {
  font-size: 1.5rem;
  color: #442B6D;
}
.faq-answer {
  margin-top: 1rem;
  color: #666;
  line-height: 1.8;
}

/* ========================================
   Sidebar Contact Box
   ======================================== */
.sidebar-contact {
  background: linear-gradient(135deg, #442B6D 0%, #6B46A8 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  text-align: center;
}
.sidebar-contact h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}
.sidebar-contact p {
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  background: #f9f9f9;
  padding: 4rem 2rem;
  margin-top: 4rem;
}
.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #442B6D;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Section Headers
   ======================================== */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #442B6D;
  margin-bottom: 1.5rem;
}
.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* ========================================
   Content Text
   ======================================== */
.content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

/* ========================================
   Pricing Cards
   ======================================== */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.pricing-card {
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.pricing-card:hover {
  border-color: #442B6D;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(68,43,109,0.15);
}
.pricing-card.popular {
  border-color: #442B6D;
  position: relative;
  box-shadow: 0 8px 20px rgba(68,43,109,0.15);
}
.pricing-card.popular::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #442B6D 0%, #6B46A8 100%);
  color: white;
  padding: 0.25rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.pricing-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}
.pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #442B6D;
}
.pricing-period {
  color: #666;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  text-align: left;
}
.pricing-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li ion-icon {
  color: #48c774;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.pricing-note {
  font-size: 0.85rem;
  color: #666;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .pricing-table {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}