/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #222;
}

Dark mode styles body.dark-mode {
  background-color: #000000;
  color: #eee;
}

body.dark-mode .container {
  background-color: #1e1e1e;
  border-bottom-color: #333;
}


body.dark-mode a,
body.dark-mode .main-nav a,
body.dark-mode .mobile-nav-list a {
  color: #ddd;
}

body.dark-mode a:hover,
body.dark-mode .main-nav a:hover,
body.dark-mode .mobile-nav-list a:hover {
  color: #ff9800;
  background-color: transparent;
}

body.dark-mode .search-wrapper,
body.dark-mode .mobile-search {
  background-color: #222;
  border-color: #444;
}

body.dark-mode .search-wrapper input,
body.dark-mode .mobile-search input .mobile-nav-list {
  background-color: #222;
  color: #eee;
  border: none;
}

body.dark-mode .language-select,
body.dark-mode .mobile-language-select {
  background-color: #222;
  color: #eee;
  border-color: #444;
}


body.dark-mode .mobile-menu,
body.dark-mode {
  background-color: #222;
  color: #eee;
}

body.dark-mode .hamburger-btn {
  color: #eee;
}

body.dark-mode .hamburger-btn:hover {
  color: #ff9800;
  background-color: transparent;
}

body.dark-mode .cart-btn,
body.dark-mode .mode-toggle,
body.dark-mode .mobile-cart-btn,
body.dark-mode .mobile-theme-toggle {
  color: #ff9800;
}

body.dark-mode .search-wrapper button,
body.dark-mode .mobile-search button {
  background-color: #ff9800;
  color: #121212;
}

body.dark-mode .search-wrapper button:hover,
body.dark-mode .mobile-search button:hover {
  background-color: #e68a00;
}


body.dark-mode .product-card {
  background-color: #fffcfc10;
  color: white;
}

body.dark-mode .featured-products {
  background-color: #222;
  color: #eee;
}

body.dark-mode h3 {
  color: #eee;
}

body.dard-mode .featured-text {
  color: white;
  background-color: #222;
}

body.dark-mode .separator {
  background-color: orange;
  color: #666;
}

body.dark-mode .testimonial-text {
  color: #eee;

}

body.dark-mode .testimonial-name {
  color: #eee;
}


body.dark-mode .testimonials {
  background-color: #222;
}


body.dark-mode .c2 {
  color: #eee;
}






body.dark-mode .faq-section {
  background-color: #222;
  color: #aaa;
}


body.dark-mode .faq-answer {
  background-color: #3d3c3c;
  color: #eee;
}

body.dark-mode .footer {
  background-color: #1e1e1e;
  border-bottom-color: #333;
  color: #eee;
}


body.dark-mode .foote {
  background-color: #1e1e1e;
  border-bottom-color: #333;
  color: #eee;
}

/* Add any other dark mode color tweaks as needed */


/* Container */
.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.4);
}

/* Logo */
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
}


/* Main Nav Desktop */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  background-color: #ff6600;
  color: white;
  outline: none;
}

/* Header Controls Desktop */
.header-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Language Select Desktop */
.language-select {
  padding: 5px 8px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

/* Search Bar Desktop */
.desktop-search {
  position: relative;
  background-color: #dbdbdb;
  border-radius: 30px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  margin-left: auto;
  transition: all 0.3s ease;
}

.desktop-search input {
  border: none;
  background: transparent;
  color: #fff;
  padding: 8px 10px;
  width: 220px;
  outline: none;
  border-radius: 30px;
  font-size: 1rem;
}

.desktop-search button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.desktop-search button:hover {
  background-color: #e65500;
}

/* Cart Button Desktop */
.cart-btn {
  font-size: 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.cart-btn:hover {
  color: #ff6600;
}

/* Mode Toggle Desktop */
.mode-toggle {
  font-size: 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.mode-toggle:hover {
  color: #ff6600;
}

/* Hamburger (Mobile) */
.hamburger-btn {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  display: none;
  /* hidden on desktop */
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: left 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
}

/* Show mobile menu */
.mobile-menu.active {
  left: 0;
}

/* Close button mobile menu */
.close-btn {
  align-self: flex-end;
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ff6600;
}

/* Mobile Nav List */
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
}

.mobile-nav-list a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  display: block;
}

.mobile-nav-list a:hover,
.mobile-nav-list a:focus {
  background-color: #ff6600;
  color: white;
  outline: none;
}

/* Language select mobile */
.mobile-language-select {
  padding: 8px 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
}

/* Mobile Search Container */
.mobile-search-container {
  position: relative;
  background-color: #b4b2b2;
  border-radius: 30px;
  padding: 5px 15px;
  display: flex;
  width: 100%;
  align-items: center;
  margin-left: auto;
  transition: all 0.3s ease;
}

.mobile-search-container input {
  border: none;
  background: transparent;
  color: #fff;
  padding: 8px 10px;
  width: 159px;
  outline: none;
  border-radius: 30px;
  font-size: 1rem;
}

.mobile-search-container button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mobile-search-container button:hover {
  background-color: #e65500;
}

/* Mobile Cart Button */
.mobile-cart-btn {
  font-size: 1.2rem;
  padding: 10px;
  border: none;
  background: none;
  cursor: pointer;
  color: #333;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-align: left;
}

.mobile-cart-btn:hover {
  background-color: #ff6600;
  color: white;
}

/* Mobile Mode Toggle */
.mobile-theme-toggle {
  font-size: 1.2rem;
  padding: 10px;
  border: none;
  background: none;
  cursor: pointer;
  color: #333;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-align: left;
}

.mobile-theme-toggle:hover {
  background-color: #ff6600;
  color: #ffffff;
}

/* Responsive Queries */

/* Mobile View */
@media (max-width: 900px) {

  /* Hide desktop nav and controls */
  .main-nav,
  .header-controls .language-select,
  .desktop-search,
  .cart-btn,
  .mode-toggle {
    display: none;
  }

  /* Show hamburger */
  .hamburger-btn {
    display: block;
  }
}





/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  /* only shows if video fails */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px #000;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px #000;
}

.hero-buttons .cta-btn {
  padding: 0.8rem 2rem;
  margin: 0.5rem;
  background: #ff9800;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.hero-buttons .cta-btn:hover {
  background: #e68a00;
}

.scroll-down {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }
}

/* Hero section end */









/* About Section */
.about {
  padding: 80px 20px;
  /* background: #f9f9f9; */
  /* position: relative; */
  position: sticky;
}

.about .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.about-content {
  flex: 1 1 50%;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #111;
}

.about-content h2 span {
  color: #ff6600;
  /* Brand highlight */
}

.about-content .tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.business-scope h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.business-scope ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.business-scope ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.business-scope ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6600;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ff6600;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #e05500;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .about .container {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    order: 2;
  }

  .about-image {
    order: 1;
  }
}

/* About section end */





/* Workshop Section */
/* Workshop Section */
.workshop-scene {
  background: none;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Slider Container */
.workshop-slider {
  max-width: 1300px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

/* Track Animation */
.slider-track {
  display: flex;
  width: calc(300px * 20);
  /* 10 images * duplicate */
  animation: scroll 30s linear infinite;
}

/* Each Slide */
.slide {
  min-width: 300px;
  margin: 0 15px;
  transition: transform 0.4s ease;
}

.slide img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.slide:hover {
  transform: scale(1.08);
}

/* Animation Keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    min-width: 220px;
  }
}

@media (max-width: 480px) {
  .slide {
    min-width: 180px;
  }
}



/* Workshop Section end */








/* ---------- Workshop Section ---------- */
.workshop-section {
  padding: 10px 5%;
  /* background: #fef7f7; */
  /* Dark industrial look */
  color: #fff;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

/* Section title and subtitle */
.section-title {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #ff6600;
  /* Orange accent */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #424242;
}

/* Workshop gallery grid */
.workshop-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.workshop-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay text */
.workshop-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #ff6600;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 15px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

/* Hover effect */
.workshop-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.workshop-card:hover img {
  transform: scale(1.1);
}

.workshop-card:hover .overlay {
  transform: translateY(0);
}

/* Workshop stats */
.workshop-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.workshop-stats div {
  text-align: center;
}

.workshop-stats h3 {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 5px;
}

.workshop-stats p {
  font-size: 1rem;
  color: #494949;
}

/* Call to action button */
.workshop-section .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff6600;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s ease;
}

.workshop-section .btn:hover {
  background-color: #ff8533;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .workshop-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .workshop-card img {
    height: 180px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .workshop-gallery {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .workshop-stats {
    flex-direction: column;
    gap: 30px;
  }
}

/* workshop-section scene end  */








/* ===== Workshop Videos Section ===== */
.workshop-videos {
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #0f0f0f, #1a1a1a); */
  text-align: center;
  /* color: #fff; */
}

.workshop-videos .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff6600;
  /* Brand orange */
}

.workshop-videos .section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

/* Video Gallery Grid */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.video-card {
  position: relative;
  max-width: 600px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.video-card:hover video {
  transform: scale(1.05);
}

/* Overlay */
.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

/* ===== Modal Popup ===== */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal.active {
  visibility: visible;
  opacity: 1;
}

.video-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
}

.video-modal-content video {
  width: 100%;
  height: auto;
  display: block;
}

/* Close Button */
.video-modal .close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s ease;
}

.video-modal .close-btn:hover {
  color: #ff6600;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .workshop-videos .section-title {
    font-size: 1.8rem;
  }

  .video-overlay {
    font-size: 0.9rem;
  }
}

/* Reuse your workshop-section CSS from homepage and just add Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

#caption {
  margin: 15px auto;
  text-align: center;
  color: #ff6600;
  font-size: 1.2rem;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox .close:hover {
  color: #ff6600;
}

/* 🔹 Workshop Videos Section end */








/* ---------- Honor & Qualification Section ---------- */
/* ===============================
   HONOR SECTION
=================================*/
.honor-section {
  padding: 80px 5%;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

/* Section title and subtitle */
.honor-section .section-title {
  font-size: 3rem;
  color: #ff6600;
  /* Orange accent */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.honor-section .section-subtitle {
  font-size: 1.2rem;
  color: #3e3e3e;
  margin-bottom: 50px;
}

/* ===============================
   HONOR GALLERY
=================================*/
.honor-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Honor card */
.honor-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(6px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.honor-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Honor text */
.honor-card span {
  font-weight: 600;
  font-size: 1rem;
  color: #ff8c42;
  text-align: center;
}

/* Hover effects */
.honor-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.honor-card:hover img {
  transform: scale(1.2) rotate(-2deg);
  filter: brightness(1.2);
}

/* ===============================
   CONTACT BUTTON
=================================*/
.honor-section .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff6600;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s ease;
}

.honor-section .btn:hover {
  background-color: #ff8533;
  transform: scale(1.05);
}

/* ===============================
   LIGHTBOX POPUP
=================================*/
.lightbox {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 1000;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.4);
  animation: zoomIn 0.4s ease;
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox .close:hover {
  color: #ff6600;
}

/* Zoom animation */
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
=================================*/
@media (max-width: 1024px) {
  .honor-section {
    padding: 60px 5%;
  }

  .honor-section .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .honor-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .honor-card img {
    width: 80px;
    height: 80px;
  }

  .honor-section .section-title {
    font-size: 2.2rem;
  }

  .honor-section .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .honor-gallery {
    grid-template-columns: 1fr;
  }

  .honor-section .section-title {
    font-size: 1.8rem;
  }

  .honor-section .section-subtitle {
    font-size: 0.95rem;
  }

  .lightbox .close {
    font-size: 30px;
    right: 20px;
    top: 20px;
  }
}



/* ---------- Honor & Qualification Section end ---------- */









.why-choose-us {
  text-align: center;
  padding: 1rem;
  font-family: Arial, sans-serif;
}

.h2 {

  text-transform: capitalize;
}

.why-choose-us .h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.separator {
  border: none;
  /* border-top: 2px solid #e0e0e0; */
  margin: 5px 0 20px;
}

.usp-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.usp-item {
  flex: 1 1 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.usp-icon {
  margin-bottom: 20px;
  /* width: 10px;
  height: 10px; */
  color: #ff6600;
  transition: transform 0.3s ease;
  font-size: 48px;
}

.usp-item:hover .usp-icon {
  transform: scale(1.2);
}

.usp-text {
  font-size: 1.2rem;
  font-weight: 600;
  user-select: none;
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
  .usp-wrapper {
    justify-content: center;
    display: flex;
  }

  .usp-item {

    margin-bottom: 1.5rem;
  }

  .h2 {
    margin-left: 10px;
  }
}







/*....... Section testimonials  .....*/


.testimonials {
  /* background: linear-gradient(135deg, #0d0d0d, #1a1a1a); */
  /* color: #fff; */
  padding: 80px 20px;
  text-align: center;
  font-family: "Segoe UI", Tahoma, sans-serif;
  position: relative;
  overflow: hidden;
}

.testimonials h2 {
  font-size: 2.6rem;
  color: #ff6600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  animation: fadeSlideDown 1s ease forwards;
}

.separator {
  width: 70px;
  height: 4px;
  background: #ff6600;
  border: none;
  margin: 0 auto 50px;
  border-radius: 2px;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
}

.testimonial-item {
  background: #1f1f1f;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255, 102, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 45px rgba(255, 102, 0, 0.4);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 18px;
  border: 3px solid #ff6600;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #bbb;
}

.stars {
  color: gold;
  font-size: 1.1rem;
  margin-top: 5px;
}

.testimonial-text {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.7;
  text-align: left;
  position: relative;
  padding-left: 25px;
}

.testimonial-text::before {
  content: "“";
  font-size: 3.5rem;
  color: #ff6600;
  position: absolute;
  left: 0;
  top: -20px;
  opacity: 0.9;
}

/* Fade & Slide Animations */
.fade-in {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Tweaks */
@media (max-width: 1024px) {
  .testimonials h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 70px 30px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 450px) {
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-img {
    margin-bottom: 12px;
  }

  .testimonial-text {
    padding-left: 0;
  }
}



/*....... Section testimonials  .....*/
/*....... Section testimonials  .....*/








.faq-section {
  max-width: 89%;
  display: block;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-section .faq-text {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #ffffff;
  position: relative;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: #f9f9f9;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  color: #333;
}

.faq-question:hover {
  background: #f0f0f0;
}

.arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1rem;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  color: #555;
  font-size: 1rem;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 1rem;
}

@media (max-width: 600px) {
  .faq-section {
    padding: 1rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}











.footer {
  background: rgb(255, 255, 255);
  color: #000000;
  padding: 3rem 1rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.4);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 120px;
  min-width: 200px;
}

.footer-logo img {
  max-width: 60px;
  margin-bottom: 10px;
  border-radius: 60px;
  height: 60px;
  width: 60px;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #ff6600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-section ul li i {
  margin-right: 8px;
  color: #ff6600;
}

.footer-section a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  /* background-color: #000000; */
  color: #ff6600;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #e05500;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #000000;
}






















.floating-right,
.floating-bottom-right {
  position: fixed;
  right: 5px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.floating-right {
  top: 40%;
}

.floating-bottom-right {
  bottom: 50px;
}

.floating-right.visible,
.floating-bottom-right.visible {
  opacity: 1;
  pointer-events: auto;
}



.floating-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.wechat {
  background: #09b83e;
}

.floating-btn.gmail {
  background: #d44638;
}

.floating-btn.livechat {
  background: #007bff;
}

.floating-btn.backtotop {
  background: #333;
}

.tooltip {
  position: absolute;
  right: 60px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
}

.floating-btn:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
}

.floating-bottom-right {
  position: fixed;
  bottom: 50px;
  right: 5px;
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
  z-index: 10000;
}

.floating-btn.bottom {
  width: 40px;
  height: 40px;
  font-size: 25px;
  transition: opacity 0.45s ease;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  max-width: 350px;
  margin: auto;
  border-radius: 10px;
  text-align: center;
}

.modal-content img {
  max-width: 100%;
  border-radius: 6px;
}

.modal-close {
  margin-top: 1rem;
  padding: 10px 20px;
  background: red;
  border-radius: 20px;
  color: white;
  border: none;
  cursor: pointer;
}









/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal Content */
.modal-content {
  background: #1a1a1a;
  color: #fff;
  margin: 5% auto;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 40px rgba(255, 102, 0, 0.4);
  animation: slideUp 0.4s ease-out;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(60px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Modal Heading */
.modal-content h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #ff6600;
  margin-bottom: 1.5rem;
}

/* Form Labels */
.modal-content label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  color: #ccc;
}

/* Input Fields */
.modal-content input {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: #2b2b2b;
  color: #fff;
  border: 1px solid #444;
  border-radius: 10px;
  margin-top: 0.3rem;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.modal-content input:focus {
  border-color: #ff6600;
  outline: none;
}

/* Buttons */
.button {
  padding: 0.8rem .9rem;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-right: 0.7rem;
  margin-top: 0.2rem;
  transition: background 0.3s, transform 0.2s;
}

/* Submit Button */
.button[type="submit"] {
  background: #ff6600;
  color: white;
}

.button[type="submit"]:hover {
  background: #e65c00;
  transform: scale(1.02);
}

/* Cancel Button */
.button[type="button"] {
  background: #444;
  color: #fff;
}

.button[type="button"]:hover {
  background: #666;
  transform: scale(1.02);
}

/* Responsive Tweaks */
@media (max-width: 480px) {
  .modal-content {
    padding: 0.5rem;
  }
}






/* Optional: Adjust button size for mobile */
@media (max-width: 767px) {
  .floating-btn {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}