/* =================================================================
   CONTENTS
   1. about.css
   2. announcement-bar.css
   3. brands.css
   4. categorycards.css
   5. CEO.css
   6. contact.css
   7. FAQ.css
   8. footer.css
   9. gallery.css
   10. header.css
   11. products.css
   12. service-cards.css
   13. service-covers.css
   14. services.css
   15. slider.css
   16. whatweoffer.css
   17. whatsappstrip.css
   18. youtube.css
   ================================================================= */

/* =================================================================
   1. about.css
   ================================================================= */

/* ===== About Section Styles ===== */
.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image-container {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image-container:hover .about-img {
  transform: scale(1.03);
}

.about-text-content {
  flex: 1;
  padding: 30px;
}

/* Image Title Styles */
.section-title {
  display: block;
  max-width: 300px;
  height: auto;
  margin-bottom: 25px;
}

.section-title::after {
  content: none;
}

.section-subtitle {
  color: #ec6708;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Button Styles */
.about-btn {
 display: inline-block;
  padding: 12px 35px;
  border: 2px solid rgba(56, 167, 228, 0.3);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(135deg, #38a7e4 0%, #5dc0f8 100%);
  box-shadow: 0 4px 15px rgba(56, 167, 228, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: button-pulse 3s ease-in-out infinite;
}



/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
  .about-content-wrapper {
    flex-direction: column;
  }

  .about-image-container {
    width: 100%;
  }

  .about-img {
    height: 400px;
  }

  .section-title {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }

  .about-img {
    height: 300px;
  }

  .section-title {
    max-width: 220px;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .about-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    max-width: 180px;
  }

  .about-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .about-img {
    height: 250px;
  }
}

/* =================================================================
   2. announcement-bar.css
   ================================================================= */

/* Announcement Bar Base Styles */
.announcement-bar {
  background: #222121 ;
  color: white;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* Scrolling Text Container */
.scrolling-text {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

/* Scrolling Content Animation */
.scroll-content {
  display: inline-block;

  animation: announcement-scroll 90s linear infinite;
  padding-left: 100%;
  white-space: nowrap;
  font-size: 0.95em;
  line-height: 1.5;
}

/* Keyframes for Infinite Scroll */
@keyframes announcement-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Contact Elements Styling */
.call-now, .whatsapp-us {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 20px;
}

.announcement-phone-link,
.announcement-whatsapp-link {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

/* Hover Effects */
.announcement-phone-link:hover,
.announcement-whatsapp-link:hover {
  opacity: 0.9;
  text-decoration: none;
}

.announcement-whatsapp-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-left: 8px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.announcement-whatsapp-link:hover .announcement-whatsapp-icon {
  transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .scroll-content {
    font-size: 0.9em;
    
    animation-duration: 85s;
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    padding: 10px 0;
  }
  
  .scroll-content {
    font-size: 0.85em;

    animation-duration: 80s;
  }
  
  .call-now, .whatsapp-us {
    margin: 0 12px;
    gap: 6px;
  }
  
  .announcement-whatsapp-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 600px) {
  .scroll-content {
    font-size: 0.8em;
    /* SPEED CHANGE: Increased duration from 45s to 75s */
    animation-duration: 75s;
  }
  
  .call-now span:not(.announcement-phone-link),
  .whatsapp-us span:not(.announcement-whatsapp-link) {
    display: none;
  }
  
  .call-now::after {
    content: "Call Now!";
    margin-left: 4px;
  }
  
  .whatsapp-us::after {
    content: "Chat Now!";
    margin-left: 4px;
  }
}

@media (max-width: 480px) {
  .scroll-content {
    font-size: 0.75em;
    animation-duration: 70s;
  }
  
  .call-now, .whatsapp-us {
    margin: 0 8px;
  }
  
  .announcement-whatsapp-icon {
    width: 18px;
    height: 18px;
    margin-left: 4px;
  }
}

@media (max-width: 360px) {
  .scroll-content {
    font-size: 0.7em;
  }
  
  .call-now::after,
  .whatsapp-us::after {
    content: "";
  }
  
  .call-now::before,
  .whatsapp-us::before {
    margin-right: 2px;
  }
}
/* =================================================================
   3. brands.css
   ================================================================= */

.brand-slider-section {
  padding: 50px 0;
  background: linear-gradient(90deg, #38a7e4 0%, #5dc0f8 100%);
  position: relative;
  overflow: hidden;
}

.bl-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  overflow: hidden;
}

.bl-slider {
    width: 100%;
    overflow: hidden;
}

.bl-slider-track {
  display: flex;
  width: calc(200px * 20); /* (width of slide-item + gap) * number of items */
  animation: bl-slide 30s linear infinite;
}

@keyframes bl-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-200px * 10)); } /* (width of slide-item + gap) * number of original items */
}

.bl-slide-item {
  flex: 0 0 180px;
  margin: 0 10px;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.bl-slide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.bl-slide-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.bl-slide-item:hover img {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .bl-slide-item {
    flex: 0 0 160px;
  }
}

@media (max-width: 768px) {
  .brand-slider-section {
    padding: 3rem 0;
  }

  .bl-slide-item {
    flex: 0 0 140px;
    padding: 1rem;
  }

  .bl-slider-track {
    animation-duration: 25s;
  }
}

@media (max-width: 576px) {
  .bl-slide-item {
    flex: 0 0 120px;
    padding: 0.75rem;
  }

  .bl-slider-track {
    animation-duration: 20s;
  }
}

/* =================================================================
   4. categorycards.css
   ================================================================= */

.category-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.category-heading {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.category-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.category-card {
  height: 500px;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.category-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.category-card__content {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: white;
  z-index: 2;
  transition: all 0.3s ease;
}

.category-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.category-card__description {
  opacity: 0.9;
  margin: 0;
  font-size: 0.875rem;
}

.category-card__button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #4360ed 0%, #6B80F3 100%);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: 3;
  font-size: 0.875rem;
  display: block; 
  text-decoration: none; 
}

.category-card:hover .category-card__button {
  transform: translateY(0);
}

.category-card:hover .category-card__content {
  bottom: 80px;
}

@media (max-width: 768px) {
  .category-card {
      height: 600px;
  }
  
  .category-card__button {
      transform: translateY(0);
      opacity: 1;
  }
  
  .category-card__content {
      bottom: 60px !important;
      padding: 1rem;
  }
  
  .category-heading {
      font-size: 1.75rem;
  }
  
  .category-card__title {
      font-size: 1.1rem;
  }
}

/* =================================================================
   5. CEO.css
   ================================================================= */

.ceo-testimonial {
  padding: 4rem 1rem;
  background: #f8f9fa;
}

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

.ceo-image-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.ceo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceo-content {
  padding: 0 1rem;
}

.ceo-name {
  font-size: 1.8rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.ceo-designation {
  color: #4a5568;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.ceo-message {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
  quotes: "“" "”";
}

.ceo-message::before {
  content: open-quote;
  font-size: 2.5rem;
  color: #48bb78;
  line-height: 0;
  vertical-align: -0.4em;
}

.ceo-message::after {
  content: close-quote;
  font-size: 2.5rem;
  color: #48bb78;
  line-height: 0;
  vertical-align: -0.4em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ceo-testimonial {
      padding: 2.5rem 1rem;
  }
  
  .ceo-image-container {
      width: 160px;
      height: 160px;
      margin-bottom: 1.5rem;
  }
  
  .ceo-name {
      font-size: 1.5rem;
  }
  
  .ceo-designation {
      font-size: 1rem;
  }
  
  .ceo-message {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .ceo-image-container {
      width: 140px;
      height: 140px;
  }
  
  .ceo-name {
      font-size: 1.3rem;
  }
  
  .ceo-message {
      font-size: 0.95rem;
  }
  
  .ceo-message::before,
  .ceo-message::after {
      font-size: 2rem;
  }
}

/* =================================================================
   6. contact.css
   ================================================================= */

.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-title h2 {
  font-size: 2.5rem;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.contact-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #4360ed 0%,  #9fc8ff 100%);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
}

.contact-info {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
}

.contact-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
}

.contact-header h3 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-details {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 25px;
}

.contact-icon {
  color: linear-gradient(135deg, #ffbf00 0%, #FF9900 100%);
  font-size: 1.4rem;
  text-align: center;
  margin-top: 5px;
}

.contact-content h4 {
  color: #333;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-content p,
.contact-content a {
  color: #666;
  margin: 0;
  transition: color 0.3s ease;
  text-decoration: none;
}

.contact-content a:hover {
  color: linear-gradient(135deg, #ffbf00 0%, #FF9900 100%);
}

.whatsapp-cta {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 25px;
  margin-top: 30px;
  text-align: center;
}

.whatsapp-btn {
  background: #25D366;
  color: white !important;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(18,140,126,0.3);
}

@media (max-width: 992px) {
  .map-container {
      margin-bottom: 30px;
      height: 400px;
  }
  
  .contact-info {
      padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-section {
      padding: 50px 0;
  }
  
  .contact-title h2 {
      font-size: 2rem;
  }
  
  .contact-header h3 {
      font-size: 1.5rem;
  }
  
  .whatsapp-cta {
      padding: 20px;
  }
}

/* =================================================================
   7. FAQ.css
   ================================================================= */

#faq .accordion-button {
  background: transparent;
  border-radius: 12px;
  font-size: 1.15rem;
  transition: background-color 0.3s ease;
}

#faq .accordion-button:hover,
#faq .accordion-button:focus {
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

#faq .accordion-item {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#faq .accordion-body p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.02em;
}

/* =================================================================
   8. footer.css
   ================================================================= */

/* ======================
   Modern Footer Styles
   ====================== */

.main-footer {
  background: #ffffff;
  color: #333;
  padding: 80px 0 30px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, #38a7e4 0%, #5dc0f8 100%) 1;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(circle at 50% 50%, rgba(56,167,228,0.08) 0%, rgba(93,192,248,0.02) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Footer Top Section */
.footer-top {
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}

/* Logo & Description */
.footer-logo {
  max-width: 220px;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.3s ease;
  filter: none;
}

.footer-description {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: center;
}

.footer-col {
  position: relative;
  padding: 0 20px;
  margin-top: 40px;
}

.footer-col:nth-child(2) {
  padding-left: 40px;
}

.footer-title {
  color: #38a7e4;
  font-size: 1.4rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #38a7e4 0%, #5dc0f8 100%);
  border-radius: 2px;
}

.footer-col .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.footer-col .col-6 {
  padding: 0 0.5rem;
}

/* Footer Middle Section */
.footer-middle {
  background: linear-gradient(135deg, rgba(56,167,228,0.1) 0%, rgba(93,192,248,0.03) 100%);
  border-radius: 16px;
  padding: 40px 0;
  margin: 50px 0;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(56,167,228,0.2);
  position: relative;
  z-index: 1;
}

.contact-social-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-section-title {
  color: #38a7e4;
  font-size: 1.5rem;
  margin-bottom: 30px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-boxes {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.contact-item {
  background: #f0f8ff;
  border: 1px solid rgba(56,167,228,0.2);
  border-radius: 12px;
  padding: 18px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(56,167,228,0.2);
  border-color: #38a7e4;
}

.contact-item i {
  color: #38a7e4;
  font-size: 1.2rem;
  min-width: 25px;
}

.contact-item a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item:hover a {
  color: #000;
}

/* Review Section */
.review-section {
  text-align: center;
  margin: 30px 0 40px;
  position: relative;
  z-index: 1;
}

.review-title {
  color: #38a7e4;
  font-size: 1.4rem;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.review-request {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.review-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 35px;
  background: linear-gradient(135deg, #38a7e4 0%, #5dc0f8 100%);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 15px rgba(56,167,228, 0.25);
  position: relative;
  overflow: hidden;
}

.review-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56,167,228, 0.35);
  background: linear-gradient(135deg, #3094ce 0%, #4fb5e6 100%);
}

.review-button i {
  font-size: 1.2rem;
}

.review-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.review-button:hover::after {
  left: 200%;
}

/* Social Links */
.social-section {
  margin-top: 25px;
}

.social-links-outer {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links-outer a {
  width: 50px;
  height: 50px;
  background: #e9f6ff;
  border: 1px solid rgba(56,167,228,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38a7e4;
  transition: all 0.3s ease;
}

.social-links-outer a:hover {
  background: linear-gradient(135deg, #38a7e4 0%, #5dc0f8 100%);
  color: #fff;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 5px 15px rgba(56,167,228,0.3);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #38a7e4;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #38a7e4;
  padding-left: 12px;
}

.footer-links a:hover::before {
  width: 100%;
}

/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
  padding: 30px 0;
  margin-top: 50px;
  color: #888;
  border-top: 1px solid #e0e0e0;
  position: relative;
  z-index: 1;
}

.developer-credit {
  margin-top: 15px;
  font-size: 0.85rem;
}

.developer-credit a {
  color: #38a7e4;
  text-decoration: none;
  font-weight: 500;
}

.developer-credit a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.developer-credit a:hover::after {
  transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-col {
    margin-bottom: 40px;
  }

  .footer-col:nth-child(2) {
    padding-left: 20px;
  }

  .footer-col .row {
    --bs-gutter-y: 0.5rem;
  }
}

@media (max-width: 768px) {
  .footer-col,
  .footer-col .row,
  .footer-col .col-6,
  .footer-title,
  .contact-item,
  .social-links-outer,
  .footer-links,
  .review-section,
  .contact-boxes {
    text-align: center;
    justify-content: center;
  }

  .footer-col .col-6 {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
  }

  .footer-links a:hover {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .footer-title,
  .contact-section-title {
    font-size: 1.3rem;
  }

  .contact-item {
    padding: 15px 20px;
  }

  .footer-logo {
    max-width: 160px;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-col:nth-child(2) {
    padding-left: 15px;
  }
}

/* =================================================================
   9. gallery.css
   ================================================================= */

.gallery-section {
  padding: 80px 0;
  background: #fff;
}

.gallery-title {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-title h2 {
  font-size: 2.5rem;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.gallery-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #FF6B00 0%, #FFA500 100%);
}

.gallery-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Lightbox Modal */
.modal-content {
  background: transparent;
  border: none;
}

.modal-body {
  padding: 0;
  text-align: center;
}

.modal-img {
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gallery-section {
      padding: 50px 0;
  }
  
  .gallery-title h2 {
      font-size: 2rem;
  }
  
  .gallery-item img {
      height: 350px;
  }
}

/* =================================================================
   10. header.css
   ================================================================= */

/* ======================
   Top Bar Styles
   ====================== */

.top-bar {
  background: linear-gradient(135deg, #38a7e4 0%, #5dc0f8 100%);
  padding: 12px 15px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1001;
  color: #eaf6ff;
}

.top-bar .container {
  padding: 0 15px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-bar-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.top-bar-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

.icon-circle {
  background: linear-gradient(360deg, #e6f7ff 0%, #c3efff 100%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-circle i {
  color: #117bbf;
  font-size: 16px;
}

.top-bar-link:hover .icon-circle {
  transform: scale(1.1) rotate(-8deg);
}

.contact-text {
  display: inline-block;
  vertical-align: middle;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.social-links a {
  color: #cfdbff;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  position: relative;
}

.social-links a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.social-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.social-links a:hover::after {
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .navbar-brand img {
    height: 35px !important; 
  }
  .top-bar-contact {
    gap: 15px;
    justify-content: space-between;
  }
  .main-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .top-bar-link:not(.email) .contact-text {
    display: inline-block !important;
    font-size: 0.8rem;
    margin-left: 8px;
  }
  
  .top-bar-link.email {
    display: none;
  }
  
  .icon-circle {
    width: 28px;
    height: 28px;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-links a {
    font-size: 16px;
  }

  .enquiry.desktop-only {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .social-links {
    gap: 30px;
    padding-right: 15px;
  }
}

/* Brand- Hover Colors */
.social-links a[aria-label="Facebook"]:hover { color: #1877f2; }
.social-links a[aria-label="Instagram"]:hover { color: #e4405f; }
.social-links a[aria-label="YouTube"]:hover { color: #ff0000; }
.social-links a[aria-label="WhatsApp"]:hover { color: #25d366; }

/* ======================
   Main Header Styles
   ====================== */

.main-header {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 15px;
  position: sticky !important;
  top: 0;
  z-index: 1000;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.navbar-brand img {
  max-height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.nav-item {
  position: relative;
  margin: 0 15px;
}

.nav-link {
  color: #333 !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #38a7e4 !important;
  transform: translateY(-2px);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: block;
  visibility: hidden;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-item {
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #38a7e4 0%, #5dc0f8 100%);
  color: #fff !important;
  transform: translateX(5px);
}

.offcanvas {
  border-radius: 45px 0 0 45px;
}

.navbar-toggler {
  border: none;
  padding: 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ======================
   Enquiry Now Button
   ====================== */

.enquiry {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid rgba(56, 167, 228, 0.3);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(135deg, #38a7e4 0%, #5dc0f8 100%);
  box-shadow: 0 4px 15px rgba(56, 167, 228, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: button-pulse 3s ease-in-out infinite;
}

@keyframes button-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.enquiry:hover {
  background: linear-gradient(135deg, #2d91cc 0%, #4ab6ec 100%);
  box-shadow: 0 6px 20px rgba(56, 167, 228, 0.35);
  transform: translateY(-2px) scale(1.02);
}

.enquiry::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.enquiry:hover::before {
  left: 200%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .enquiry {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* ======================
   Body Background
   ====================== */

body {
  background: #ffffff !important;
}

/* =================================================================
   11. products.css
   ================================================================= */

/* Products Section Styles - Updated */
.products-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-section-title {
  text-align: center;
  font-size: 2.75rem;
  color: #1a365d;
  font-weight: 800;
  margin-bottom: 60px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #38a7e4;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1600px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #38a7e4;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  padding-top: 66%;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f9f9f9;
  padding: 10px;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.07);
}

.product-brand {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #38a7e4;
  padding: 6px 12px;
  border-radius: 50px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.product-content {
  padding: 20px 22px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.85rem;
  color: #38a7e4;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

.product-title {
  font-size: 1.1rem;
  color: #1a365d;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: #2a91d2;
}

.product-description {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.enquiry-btn {
  background: linear-gradient(135deg, #38a7e4, #5dc0f8);
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(56, 167, 228, 0.3);
}

.enquiry-btn:hover {
  background: linear-gradient(135deg, #2a91d2, #38a7e4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 167, 228, 0.4);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .product-section-title {
    font-size: 2rem;
  }

  .product-grid {
    gap: 25px;
  }

  .product-content {
    padding: 18px;
  }

  .product-description {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .product-section-title {
    font-size: 1.6rem;
  }

  .product-card {
    border-radius: 12px;
  }

  .enquiry-btn {
    font-size: 0.85rem;
    padding: 10px 16px;
  }
}

/* =================================================================
   12. service-cards.css
   ================================================================= */

.services-container {
  max-width: 1300px;
  margin: 0 auto;
  padding:  15px;
  
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}


.service-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.sc-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.sc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .sc-image img {
  transform: scale(1.1);
}

.sc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
}

.sc-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.service-card:hover .sc-title {
  transform: translateY(0);
  opacity: 1;
}

.sc-link {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  padding: 0.5rem 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .sc-link {
  opacity: 1;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .services-grid {
      gap: 1.5rem;
  }
  
  .sc-content {
      padding: 1rem;
      background: rgba(0,0,0,0.7);
  }
  
  .sc-title {
      transform: translateY(0);
      opacity: 1;
      font-size: 1.2rem;
  }
  
  .sc-link {
      opacity: 1;
  }
  
  .service-card:hover .sc-image img {
      transform: none;
  }
  
  .service-card:hover {
      transform: none;
  }
}

/* =================================================================
   13. service-covers.css
   ================================================================= */

/* Base Styles */
.appliance-showcase {
  width: 100%;
  padding: 2rem;
  background: #d2e6ff;
}

/* Panel Container */
.appliance-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  margin: 4rem auto;
  max-width: 1400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  background: #fff;
}

/* Image Section */
.appliance-visual-container {
  position: relative;
}

.appliance-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.227) 0%, rgba(0, 0, 0, 0.079) 100%);
}

/* Content Section */
.appliance-content-container {
  padding: 4rem;
  display: flex;
  align-items: center;
}

.appliance-content-wrapper {
  max-width: 600px;
  width: 100%;
}

.appliance-heading {
  font-size: 2.5rem;
  color: #005d89;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

/* Features Grid */
.appliance-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.appliance-feature-card {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-title {
  font-size: 1rem;
  color: #1a365d;
  font-weight: 600;
}

/* Description */
.appliance-description {
  color: #4a5568;
  line-height: 1.7;
  margin: 2rem 0;
  font-size: 1.1rem;
}

/* CTA Buttons */
.appliance-cta-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-primary {
  background: linear-gradient(135deg, #38a7e4 0%, #5dc0f8 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-secondary {
  color: #38a7e4;
  padding: 1rem 2.5rem;
  border: 2px solid #38a7e4;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover Effects */
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(56, 167, 228, 0.3);
}

.cta-secondary:hover {
  background: #38a7e4;
  color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .appliance-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .appliance-content-container {
    padding: 3rem;
  }

  .appliance-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .appliance-visual-container {
    height: 400px;
  }

  .appliance-showcase {
    padding: 1rem;
  }

  .appliance-content-container {
    padding: 2rem;
  }

  .appliance-heading {
    text-align: center;
    font-size: 2rem;
  }

  .appliance-features-grid {
    grid-template-columns: 1fr;
  }

  .appliance-cta-group {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .appliance-visual-container {
    height: 300px;
  }

  .appliance-heading {
    text-align: center;
    font-size: 1.75rem;
  }

  .appliance-description {
    font-size: 1rem;
  }
}

/* =================================================================
   14. services.css
   ================================================================= */

/* ======================
   Home Tech Services Section
   ====================== */

   .ht-services {
    padding: 6rem 0;
    background: linear-gradient(152deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
  }
  
  .ht-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Section Header */
  .ht-services__header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .ht-services__title {
    font-size: 2.75rem;
    color: #1e265e;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: htFadeUp 0.8s ease;
  }
  
  .ht-services__subtitle {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Service Intro Grid */
  .ht-service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
  }
  
  .ht-service-visual__media {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(67, 96, 237, 0.15);
  }
  
  .ht-service-visual__image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .ht-service-visual__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(67, 96, 237, 0.3) 0%, transparent 100%);
  }
  
  .ht-service-overview {
    padding: 2rem;
  }
  
  .ht-service-overview__heading {
    font-size: 2.25rem;
    color: #1e265e;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  .ht-service-overview__text {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .ht-service-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .ht-service-benefits__item {
    padding: 0.8rem 0;
    color: #475569;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.05rem;
  }
  
  .ht-service-benefits__item::before {
    content: "✓";
    color: #4360ed;
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.2rem;
  }
  
  /* Service Features Grid */
  .ht-service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .ht-service-features__card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
  }
  
  .ht-service-features__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(67, 96, 237, 0.1);
  }
  
  .ht-service-features__icon {
    width: 70px;
    height: 70px;
    background: #4360ed;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
  }
  
  .ht-service-features__card:hover .ht-service-features__icon {
    transform: rotate(15deg) scale(1.1);
  }
  
  .ht-service-features__title {
    font-size: 1.3rem;
    color: #1e265e;
    margin-bottom: 1rem;
  }
  
  .ht-service-features__desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Booking CTA */
  .ht-service-cta {
    background: #4360ed;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .ht-service-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    transform: rotate(30deg);
    animation: htShine 8s infinite;
  }
  
  .ht-service-cta__content {
    position: relative;
    z-index: 1;
  }
  
  .ht-service-cta__heading {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
  }
  
  .ht-service-cta__text {
    color: #e2e8f0;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .ht-service-cta__action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 3rem;
    background: #5b73f0;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
  }
  
  .ht-service-cta__action:hover {
    background: #2e4cd2;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 76, 210, 0.4);
  }
  
  /* Animations */
  @keyframes htFadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes htShine {
    0% { left: -20%; }
    100% { left: 120%; }
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .ht-service-intro {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .ht-service-visual__image {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .ht-services {
      padding: 4rem 0;
    }
  
    .ht-services__title {
      font-size: 2.25rem;
    }
  
    .ht-service-features {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .ht-service-cta {
      padding: 3rem 1.5rem;
    }
  
    .ht-service-cta__heading {
      font-size: 1.75rem;
    }
  }
  
  @media (max-width: 480px) {
    .ht-services__title {
      font-size: 1.8rem;
    }
  
    .ht-service-overview__heading {
      font-size: 1.6rem;
    }
  
    .ht-service-cta__action {
      width: 100%;
      justify-content: center;
      padding: 1rem;
    }
  }

/* =================================================================
   15. slider.css
   ================================================================= */

/* Cards Section Styles */
.cards-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  padding: 0 15px;
  max-width: 1400px;
  margin: 15px auto;
}

.card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

/* Product Card with Slider */
.card-product {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.card-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
  z-index: 1;
}

.product-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slider 15s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }

/* Services Card */
.card-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  z-index: 2;
}

.card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3;
  color: #fff;
}

/* Typography */
.card h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #38a7e4 0%, #5dc0f8 100%);
}

.card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 80%;
  color: #fff;
}

/* Link Buttons */
.card-btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
}

/* Product Card Button */
.card-product .card-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #2563eb;
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.15);
  border: 2px solid rgba(37, 99, 235, 0.1);
}

.card-product .card-btn:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

/* Services Card Button - UPDATED COLORS */
.card-services .card-btn {
  background: linear-gradient(135deg, #38a7e4 0%, #5dc0f8 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(56, 167, 228, 0.25);
}

.card-services .card-btn:hover {
  background: linear-gradient(135deg, #2f9ed0 0%, #54b4f2 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(56, 167, 228, 0.35);
}

/* Button Effects */
.card-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.card-btn:hover::after {
  left: 200%;
}

a.card-btn:any-link {
  color: inherit;
  text-decoration: none;
}

a.card-btn:hover {
  color: inherit;
  text-decoration: none;
}

/* Animations */
@keyframes slider {
  0%, 33% { opacity: 1; }
  33.33%, 100% { opacity: 0; }
}

/* Responsive Design */
@media (min-width: 1025px) {
  .card-product {
    border-radius: 24px 0 0 24px;
  }
  .card-services {
    border-radius: 0 24px 24px 0;
  }
}

@media (max-width: 1024px) {
  .cards-container {
    grid-template-columns: 1fr;
    max-width: 800px;
  }

  .card-product {
    padding-bottom: 100%;
  }

  .card-services {
    padding-top: 56.25%;
  }
}

@media (max-width: 768px) {
  .cards-container {
    padding: 1rem;
    gap: 1.5rem;
  }

  .card-content {
    justify-content: flex-start;
    padding: 1.5rem !important;
  }

  .card-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem !important;
  }

  .card h2 {
    font-size: 1.75rem !important;
    margin-bottom: 0.75rem;
  }

  .card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem !important;
    max-width: 100%;
  }

  .card-product {
    padding-bottom: 120%;
  }

  .card-services {
    padding-top: 100%;
  }

  .card h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .card h2 {
    font-size: 1.5rem !important;
  }

  .card p {
    font-size: 0.9rem !important;
  }

  .card-btn {
    font-size: 0.9rem;
  }
}

/* =================================================================
   16. whatweoffer.css
   ================================================================= */

.aqua-about-wrapper {
  background-color: #f8fbfc;
  padding: 60px 20px;
  color: #1a1a1a;
  font-family: 'Segoe UI', sans-serif;
}

.aqua-about-container {
  max-width: 1200px;
  margin: auto;
}

.aqua-about-heading {
  text-align: center;
  font-size: 2rem;
  color: #005a8d;
  margin-bottom: 0.5rem;
}

.aqua-about-subtext {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  color: #444;
}

.aqua-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.aqua-about-card {
  background-color: #fff;
  border-left: 4px solid #38a7e4;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.aqua-about-card-title {
  font-size: 1.25rem;
  color: #003f6b;
  margin-bottom: 15px;
}

.aqua-about-card p,
.aqua-about-card ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.aqua-about-card ul {
  padding-left: 20px;
  list-style: disc;
}

.aqua-offer-section {
  background-color: #eaf6fb;
  padding: 30px;
  border-radius: 8px;
}

.aqua-offer-heading {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #005a8d;
}

.aqua-offer-list {
  list-style: disc;
  padding-left: 20px;
  line-height: 1.8;
  color: #222;
}

/* =================================================================
   17. whatsappstrip.css
   ================================================================= */

/* WhatsApp  */
.whatsapp-strip {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: #25D366;
  border-radius: 50px;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  max-width: 350px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-strip.hide {
  opacity: 0;
  transform: translateY(100px);
}

.whatsapp-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  justify-content: center;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}

.whatsapp-text {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  transition: color 0.2s ease;
}

/* Hover Effects */
.whatsapp-strip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.whatsapp-link:hover .whatsapp-icon {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-strip {
      bottom: 10px;
      right: 10px;
      left: 10px;
      padding: 10px 20px;
      max-width: 500px;
  }
  
  .whatsapp-text {
      font-size: 1rem;
  }
  
  .whatsapp-icon {
      width: 25px;
      height: 25px;
  }
}

@media (max-width: 480px) {
  .whatsapp-strip {
      max-width: 300px;
  }
  
  .whatsapp-text {
      font-size: 0.9rem;
  }
  
  .whatsapp-link {
      gap: 10px;
  }
}

/* =================================================================
   18. youtube.css
   ================================================================= */

.video-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 0;
  position: relative;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  color: #4360ed;
  font-size: 2.75rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  width: 85%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.video-iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
}

.video-description {
  max-width: 680px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.video-description p {
  color: #37474f;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 992px) {
  .video-wrapper {
      width: 90%;
  }
}

@media (max-width: 768px) {
  .video-section {
      padding: 3rem 0;
  }
  
  .section-header {
      font-size: 2rem;
      margin-bottom: 1.5rem;
  }
  
  .video-wrapper {
      width: 95%;
      border-radius: 12px;
  }
  
  .video-description p {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-header {
      font-size: 1.75rem;
  }
  
  .video-description p {
      line-height: 1.6;
  }
}
