* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
} */
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  color: #333;
}

header {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  background: white;
  padding: 6px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo-icon {
  font-size: 18px;
  color: #ff0000;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.company-name {
  font-size: 18px;
  font-weight: bold;
  color: #cc0000;
  letter-spacing: 0.5px;
}

.company-tagline {
  font-size: 9px;
  color: #666;
  letter-spacing: 0.3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-link i {
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;

  overflow: hidden;
  display: none;

  margin-top: 0;
  padding-top: 8px;
}

.nav-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: #ff0000;
  padding-left: 20px;
}

.dropdown-item i {
  color: #ff0000;
  font-size: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.action-btn {
  background: white;
  color: #ff0000;
  padding: 7px 16px;
  border-radius: 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.login-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.login-btn:hover {
  background: white;
  color: #ff0000;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: white;
  border: none;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  color: #ff0000;
}

.home-banner {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 968px) {
  .mobile-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #cc0000;
    flex-direction: column;
    padding: 15px;
    gap: 8px;
    display: none;
  }

  nav.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    display: none;
  }

  .nav-item.active .dropdown-menu {
    display: block;
  }

  .header-actions {
    flex-direction: column;
    width: 100%;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
  }
  .home-banner {
    height: auto !important;
  }
}

/* Banner Section - Desktop View (Original) */
section {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  position: relative;
}

.banner-wrapper {
  width: 100vw;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#autoBannerTrack {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

@media (min-width: 968px) {
  #autoBannerTrack {
    height: 660px;
  }
}

.banner-slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}

.banner-slide img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.6), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  pointer-events: none;
}

.banner-content {
  width: 48vw;
  padding-left: 8%;
  padding-top: 2%;
  padding-bottom: 1%;
  padding-right: 2%;
  pointer-events: auto;
  background: #cc0000;
  border-top-right-radius: 30ch;
  border-bottom-right-radius: 30ch;
}

.banner-content h2 {
  font-size: clamp(2rem, 5.5vw, 3rem);
  margin: 0 0 12px;
  font-weight: 900;
  text-shadow: 0 2px 4px #444;
  color: whitesmoke;
  font-family: "Poppins", sans-serif;
}

.banner-content p {
  font-size: clamp(1.13rem, 3.2vw, 1.3rem);
  margin: 0 0 32px;
  color: whitesmoke;
  font-family: "Poppins", serif;
  text-shadow: 0 2px 4px #444;
}

.banner-image-wrapper {
  padding: 8%;
}

.banner-image-wrapper img {
  height: 50vh;
  border-radius: 3%;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  #autoBannerTrack {
    height: auto;
  }

  .banner-slide {
    height: 550px;
  }

  .banner-slide img {
    height: 550px;
  }

  .banner-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.2) 50%
    );
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    padding: 0;
  }

  .banner-content {
    width: 100%;
    padding: 25px 20px;
    border-radius: 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background: rgba(255, 0, 0, 0.95);
    backdrop-filter: blur(10px);
  }

  .banner-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .banner-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
  }

  /* Slide 2 specific adjustments */
  .banner-image-wrapper {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5%;
    width: 100%;
    max-width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .banner-image-wrapper img {
    height: auto;
    max-height: 45vh;
    width: 100%;
    max-width: 500px;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .banner-slide {
    height: 500px;
  }

  .banner-slide img {
    height: 500px;
  }

  .banner-content {
    padding: 20px 15px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }

  .banner-content h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .banner-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .banner-image-wrapper {
    top: 10%;
    max-width: 95%;
  }

  .banner-image-wrapper img {
    max-height: 35vh;
  }
}

@media (max-width: 375px) {
  .banner-slide {
    height: 480px;
  }

  .banner-slide img {
    height: 480px;
  }

  .banner-content h2 {
    font-size: 1.2rem;
  }

  .banner-content p {
    font-size: 0.8rem;
  }

  .banner-image-wrapper img {
    max-height: 30vh;
  }
}
/* Who We Are Section */
.who-we-are-section {
  padding: 60px 50px;
  background: #f8f9fa;
  position: relative;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.content-left {
  flex: 1;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.content-left h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: #2d3748;
  font-weight: 700;
}

.content-left p {
  font-size: 15px;
  line-height: 1.8;
  color: black;
  margin-bottom: 15px;
}

.content-left p strong {
  color: #ff0000;
  font-weight: 600;
}

.image-right {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.image-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.image-container {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  background: #004d99;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); */
  position: relative;
  /* height: fit-content; */
}

.image-container img {
  width: 100%;
  /* height: 100%; */
  /* object-fit: cover; */
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.read-more-btn {
  margin-top: 20px;
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
  border: none;
  cursor: pointer;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.read-more-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 968px) {
  .who-we-are-section {
    padding: 40px 20px;
  }

  .section-container {
    flex-direction: column;
  }

  .content-left h2 {
    font-size: 32px;
  }

  .content-left p {
    font-size: 14px;
  }

  .image-right {
    width: 100%;
  }

  .image-container {
    min-height: 300px;
  }

  .read-more-btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 15px;
  }
}
.cp-section {
  padding: 80px 50px;
  background: white;
}

.cp-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cp-header {
  text-align: center;
  margin-bottom: 60px;
}

.cp-header h2 {
  font-size: 42px;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.cp-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ff0000;
  border-radius: 2px;
}

.cp-header p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.cp-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cp-text h3 {
  font-size: 28px;
  color: #ff0000;
  margin-bottom: 20px;
  font-weight: 600;
}

.cp-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.cp-stats {
  /* display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px; */
  margin-top: 30px;
}

.cp-stat-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border-left: 4px solid #ff0000;
  transition: all 0.3s ease;
}

.cp-stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cp-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 5px;
}

.cp-stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.cp-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
  .cp-section {
    padding: 60px 20px;
  }

  .cp-header h2 {
    font-size: 32px;
  }

  .cp-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cp-stat-number {
    font-size: 28px;
  }
}
/* Highlights Section */
.highlights-section {
  padding: 80px 50px;
  background: white;
  position: relative;
}

.highlights-container {
  max-width: 1400px;
  margin: 0 auto;
}

.highlights-title {
  font-size: 48px;
  color: #2d3748;
  margin-bottom: 60px;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.highlights-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.highlights-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  flex-wrap: nowrap;
}

.stat-card {
  text-align: center;
  padding: 25px 15px;
  border-radius: 12px;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  background: #f8f9fa;
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: linear-gradient(
    135deg,
    rgb(254, 242, 242) 0%,
    rgb(252, 144, 144) 100%
  );
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
}

.stat-card:hover .stat-icon svg {
  color: white;
}

.stat-card:hover .stat-number {
  color: white;
}

.stat-card:hover .stat-label {
  color: white;
}

.stat-icon {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-icon svg {
  width: 50px;
  height: 50px;
  color: #ff0000;
  transition: all 0.3s ease;
}

.stat-number {
  font-size: 40px;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  line-height: 1;
}

.stat-number::after {
  content: "+";
  font-size: 32px;
  margin-left: 3px;
}

.stat-card:last-child .stat-number::after {
  content: "";
}

.stat-label {
  font-size: 14px;
  color: black;
  font-weight: 500;
  line-height: 1.3;
  transition: all 0.3s ease;
}

/* Animation delays for stagge#cc0000 effect */
.stat-card:nth-child(1) {
  transition-delay: 0.1s;
}

.stat-card:nth-child(2) {
  transition-delay: 0.2s;
}

.stat-card:nth-child(3) {
  transition-delay: 0.3s;
}

.stat-card:nth-child(4) {
  transition-delay: 0.4s;
}

.stat-card:nth-child(5) {
  transition-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 968px) {
  .highlights-section {
    padding: 60px 20px;
  }

  .highlights-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .highlights-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-card {
    min-width: 150px;
    flex: 1 1 calc(50% - 10px);
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-icon svg {
    width: 40px;
    height: 40px;
  }

  .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .highlights-grid {
    flex-direction: column;
  }

  .stat-card {
    flex: 1 1 100%;
  }
}
/* Existing styles (agar hain to keep karo) */
.products-section {
  padding: 60px 5%;
  background: #f8f9fa;
  /* Ya tumhara color */
  display: flex;
  /* For grid-like layout */
  justify-content: center;
}

.products-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.products-content h2 {
  color: #004d99;
  /* Blue as per screenshot */
  margin-bottom: 1.2rem;
}

.view-products-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #dc3545;
  /* #cc0000 as per screenshot */
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.view-products-btn:hover {
  background: #c82333;
}

/* Updated: Image Slider Styles (Swipe/Slide Effect Ke Liye) */
.products-image {
  position: relative;
  width: 100%;
  height: 400px;
  /* Fixed height – adjust as per your design */
  overflow: hidden;
  border-radius: 8px;
  /* Optional rounded corners */
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  /* Light shadow */
}

.image-slider {
  position: relative;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
}

.slides-wrapper {
  display: flex;
  height: 400px;
  width: 500px;
  /* background: white; */
  transition: transform 0.5s ease-in-out;
  /* Smooth 0.5-sec slide */
}

.slide {
  width: fit-content;
  /* Default for 4 images; JS will set dynamically */
  height: 100%;
  /* object-fit: cover; */
  /* Image ko fit karega without stretch */
  /* flex-shrink: 0; */
}

/* Mobile Responsive (as per screenshot) */
@media (max-width: 768px) {
  .products-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .products-image {
    height: 300px;
    order: -1;
    /* Image top pe mobile pe */
  }
}

.innovation-image {
  flex: 1;
  position: relative;
  opacity: 0;
  animation: fadeInZoom 1s ease-out 0.3s forwards;
}

.innovation-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.innovation-icon {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

/* Featu#cc0000 Innovation Sectors Section */
.sectors-section {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  padding: 60px 50px 80px;
  position: relative;
}

.sectors-container {
  max-width: 1400px;
  margin: 0 auto;
}

.sectors-title {
  font-size: 38px;
  color: white;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.sectors-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.sectors-slider {
  position: relative;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
  background: #ff0000;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow:hover i {
  color: white;
}

.slider-arrow.prev {
  left: -20px;
}

.slider-arrow.next {
  right: -20px;
}

.slider-arrow i {
  font-size: 18px;
  color: #ff0000;
  transition: color 0.3s ease;
}

.sectors-cards-wrapper {
  overflow: hidden;
  padding: 0 10px;
}

.sectors-cards {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

.sector-card {
  flex: 0 0 250px;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}

.sector-card.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sector-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.sector-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.sector-content {
  padding: 25px;
  width: 100%;
}

.sector-content h3 {
  font-size: 24px;
  color: white;
  margin-bottom: 8px;
  font-weight: 600;
}

.sector-content a {
  color: #ffd700;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sector-content a:hover {
  color: #ffed4e;
  text-decoration: underline;
}

/* Our Products Section */
.products-section {
  background: #f8f9fa;
  padding: 60px 50px;
  position: relative;
}

.products-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}

.products-content {
  flex: 1;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.products-content.animate {
  opacity: 1;
  transform: translateX(0);
}

.products-content h2 {
  font-size: 38px;
  color: #2d3748;
  margin-bottom: 20px;
}

.products-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 15px;
}

.view-products-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #ff0000;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.view-products-btn:hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.products-image {
  flex: 1;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease-out;
}

.products-image.animate {
  opacity: 1;
  transform: scale(1);
}

.products-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  /* background: #ffd700; */
  /* box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15); */
}

.products-tabs {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.products-tabs.animate {
  opacity: 1;
  transform: translateY(0);
}

.tab-btn {
  flex: 1;
  padding: 15px 25px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: #ff0000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.tab-btn.active {
  background: #ff0000;
  border-color: #ff0000;
}

.tab-number {
  width: 35px;
  height: 35px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #2d3748;
  transition: all 0.3s ease;
}

.tab-btn.active .tab-number {
  background: white;
  color: #4a90e2;
}

.tab-text {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  transition: all 0.3s ease;
}

.tab-btn.active .tab-text {
  color: white;
}

@keyframes fadeInZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }

  50% {
    transform: translateY(-50%) scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .innovation-section,
  .products-section {
    padding: 40px 20px;
  }

  .innovation-container,
  .products-container {
    flex-direction: column;
    gap: 30px;
  }

  .innovation-content h2 {
    font-size: 38px;
  }

  .sectors-section {
    padding: 40px 20px;
  }

  .sectors-title {
    font-size: 28px;
  }

  .slider-arrow {
    width: 35px;
    height: 35px;
  }

  .slider-arrow.prev {
    left: -10px;
  }

  .slider-arrow.next {
    right: -10px;
  }

  .products-tabs {
    flex-direction: column;
  }

  .sector-card {
    height: 220px;
  }
}
/* Tabs Section */
.tabs-section {
  background: #f8f9fa;
  padding: 60px 0;
  width: 100%;
  margin: 0;
}

.tabs-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0 50px;
}

/* Tab Navigation */
.tabs-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-nav-btn {
  flex: 1;
  padding: 15px 25px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tab-nav-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #4a90e2;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.tab-nav-btn:hover {
  border-color: #ff0000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.tab-nav-btn.active {
  background: #ff0000;
  border-color: #ff0000;
}

.tab-nav-btn.active::before {
  transform: translateX(0);
}

.tab-number {
  width: 35px;
  height: 35px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #2d3748;
  transition: all 0.3s ease;
}

.tab-nav-btn.active .tab-number {
  background: white;
  color: #ff0000;
}

.tab-nav-btn.active .tab-text {
  color: white;
}

.tab-text {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  transition: all 0.3s ease;
}

.tab-nav-btn.active .tab-text {
  color: white;
}

/* Tab Content */
.tabs-content {
  position: relative;
  min-height: 400px;
}

.tab-content {
  display: none;
  opacity: 0;
  animation: fadeInContent 0.5s ease-out forwards;
}

.tab-content.active {
  display: block;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content-title {
  font-size: 32px;
  color: #ff0000;
  margin-bottom: 35px;
  font-weight: 600;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  width: 100%;
}

.offer-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: cardSlideUp 0.6s ease-out forwards;
  width: 100%;
}

.offer-card:nth-child(1) {
  animation-delay: 0.1s;
}

.offer-card:nth-child(2) {
  animation-delay: 0.2s;
}

.offer-card:nth-child(3) {
  animation-delay: 0.3s;
}

.offer-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes cardSlideUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.card-image {
  height: 250px;
  width: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
}

.card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  transition: all 0.3s ease;
}

.offer-card:hover .card-image::before {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.card-body {
  padding: 25px;
}

.card-body h3 {
  font-size: 20px;
  color: #2d3748;
  margin-bottom: 12px;
  font-weight: 600;
}

.card-body p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 18px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff0000;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #cc0000;
  gap: 12px;
}

.card-link i {
  transition: transform 0.3s ease;
}

.card-link:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 968px) {
  .tabs-section {
    padding: 40px 0;
  }

  .tabs-container {
    padding: 0 20px;
  }

  .tabs-nav {
    flex-direction: column;
    gap: 12px;
  }

  .tab-content-title {
    font-size: 26px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 200px;
  }

  .card-body {
    padding: 20px;
  }
}
/* Contact Form Section */
.contact-form-section {
  padding: 60px 50px;
  background: #ffffff;
  position: relative;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  gap: 0;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left Side - Image */
.contact-image {
  flex: 1;
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.contact-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.9) 0%,
    rgba(204, 0, 0, 0.85) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.overlay-content {
  color: white;
  text-align: center;
}

.overlay-content h3 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
}

.overlay-content > p {
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.contact-info-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 15px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* Right Side - Form */
.contact-form {
  flex: 1;
  padding: 50px 45px;
  background: #f8f9fa;
}

.form-header {
  margin-bottom: 35px;
}

.form-header h2 {
  font-size: 32px;
  color: #2d3748;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-header p {
  font-size: 14px;
  color: #718096;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2d3748;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group label i {
  color: #ff0000;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: #2d3748;
  background: white;
  transition: all 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff0000;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn i {
  font-size: 16px;
}

/* Success Message */
.success-message {
  display: none;
  padding: 15px;
  background: #48bb78;
  color: white;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

.success-message.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .contact-form-section {
    padding: 40px 20px;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-image {
    min-height: 480px;
  }

  .overlay-content h3 {
    font-size: 28px;
  }

  .overlay-content > p {
    font-size: 14px;
  }

  .contact-info-box {
    padding: 25px;
  }

  .info-item {
    font-size: 14px;
  }

  .contact-form {
    padding: 35px 25px;
  }

  .form-header h2 {
    font-size: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 18px;
  }
}
.testimonials-section {
  padding: 80px 50px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(220,38,38,0.08)"/></svg>');
  opacity: 0.4;
  pointer-events: none;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-title {
  font-size: 42px;
  color: #1a202c;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-subtitle {
  font-size: 16px;
  color: #4a5568;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 500;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}

.card-inner {
  background: white;
  border-radius: 25px;
  padding: 45px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  border: 3px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.98);
}

.testimonial-card.active .card-inner {
  transform: scale(1);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 25px 70px rgba(220, 38, 38, 0.25);
}

.card-inner:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 30px 80px rgba(220, 38, 38, 0.3);
}

.quote-icon {
  position: absolute;
  top: 25px;
  left: 35px;
  font-size: 60px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.9;
  color: #2d3748;
  margin-bottom: 35px;
  min-height: 110px;
  font-weight: 400;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 3px solid #e2e8f0;
}

.author-section {
  display: flex;
  gap: 20px;
  align-items: center;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
  position: relative;
}

.author-avatar::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  opacity: 0.3;
  z-index: -1;
}

.author-info h4 {
  font-size: 20px;
  color: #1a202c;
  margin: 0 0 6px 0;
  font-weight: 700;
}

.author-info p {
  font-size: 14px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 4px 0;
  font-weight: 600;
}

.author-info span {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}

.rating {
  display: flex;
  gap: 5px;
}

.rating i {
  color: #ffd700;
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
  z-index: 10;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.nav-btn:hover i {
  color: white;
}

.nav-btn i {
  color: #dc2626;
  font-size: 20px;
  transition: all 0.3s ease;
}

.dots-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e0;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: #dc2626;
  transform: scale(1.3);
  border-color: #dc2626;
}

.dot.active {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  width: 35px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

@media (max-width: 968px) {
  .testimonials-section {
    padding: 50px 20px;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .testimonials-subtitle {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .card-inner {
    padding: 35px 28px;
  }

  .testimonial-text {
    font-size: 16px;
    min-height: 130px;
  }

  .author-avatar {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .author-info h4 {
    font-size: 17px;
  }

  .author-info p,
  .author-info span {
    font-size: 13px;
  }

  .rating i {
    font-size: 17px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
  }

  .nav-btn i {
    font-size: 16px;
  }

  .slider-nav {
    display: none;
  }
}
/* Page Hero Section */
.page-hero {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  padding: 80px 50px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.page-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInDown 0.8s ease-out;
}

.page-hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Breadcrumb */
.breadcrumb-section {
  background: #f8f9fa;
  padding: 20px 50px;
  border-bottom: 2px solid #e2e8f0;
}

.breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ff0000;
}

.breadcrumb-separator {
  color: #999;
}

.breadcrumb-current {
  color: #ff0000;
  font-weight: 600;
}

/* Common Section Styles */
.section {
  padding: 80px 50px;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ff0000;
  border-radius: 2px;
}

.section-header p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* Company Profile Section */
.profile-section {
  background: white;
}

.profile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.profile-text {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease-out 0.3s forwards;
}

.profile-text h3 {
  font-size: 28px;
  color: #ff0000;
  margin-bottom: 20px;
  font-weight: 600;
}

.profile-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border-left: 4px solid #ff0000;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.profile-image {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease-out 0.3s forwards;
}

.profile-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Mission & Vision Section */
.mission-vision-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.mv-icon i {
  font-size: 40px;
  color: white;
}

.mv-card h3 {
  font-size: 28px;
  color: #2d3748;
  margin-bottom: 20px;
  font-weight: 600;
}

.mv-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* Team Section */
.team-section {
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

.team-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-image i {
  font-size: 80px;
  color: white;
  opacity: 0.3;
}

.team-info {
  padding: 25px;
}

.team-info h4 {
  font-size: 22px;
  color: #2d3748;
  margin-bottom: 8px;
  font-weight: 600;
}

.team-position {
  font-size: 15px;
  color: #ff0000;
  margin-bottom: 15px;
  font-weight: 500;
}

.team-bio {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff0000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ff0000;
  color: white;
  transform: translateY(-3px);
}

/* Certifications Section */
.certifications-section {
  background: #f8f9fa;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.cert-card {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cert-card:hover {
  transform: translateY(-5px);
  border-color: #ff0000;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.15);
}

.cert-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cert-icon i {
  font-size: 45px;
  color: #ff0000;
}

.cert-card h4 {
  font-size: 20px;
  color: #2d3748;
  margin-bottom: 10px;
  font-weight: 600;
}

.cert-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.cert-badge {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background: #ff0000;
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Partners Section */
.partners-section {
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: center;
}

.partner-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid #f0f0f0;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.15);
  border-color: #ff0000;
}

.partner-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.partner-logo i {
  font-size: 50px;
  color: #ff0000;
  opacity: 0.7;
}

.partner-name {
  font-size: 16px;
  color: #2d3748;
  font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-section {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
}

.why-choose-section .section-header h2 {
  color: white;
}

.why-choose-section .section-header h2::after {
  background: white;
}

.why-choose-section .section-header p {
  color: rgba(255, 255, 255, 0.95);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 35px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.feature-box-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-box-icon i {
  font-size: 35px;
  color: #ff0000;
}

.feature-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-box p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
}

/* CTA Section */
.cta-section {
  background: #f8f9fa;
  padding: 80px 50px;
  text-align: center;
}

.cta-section.bg-primary h2,
.cta-section.bg-primary p {
  color: #fff !important;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  color: #2d3748;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 35px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.bg-primary {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
}
.bg-primary .cta-btn-primary {
  background: white;
  color: #ff0000;
}
.bg-primary .cta-btn-secondary:hover {
  background: white;
  color: #ff0000;
}
.bg-primary .cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.cta-btn {
  padding: 16px 45px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.cta-btn-secondary {
  background: white;
  color: #ff0000;
  border: 2px solid #ff0000;
}

.cta-btn-secondary:hover {
  background: #ff0000;
  color: white;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .page-hero {
    padding: 60px 20px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .breadcrumb-section {
    padding: 15px 20px;
  }

  .section {
    padding: 60px 20px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .profile-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* Products Categories Section */
.products-categories {
  padding: 80px 50px;
  background: white;
}

.categories-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.section-header h2 {
  font-size: 42px;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header h2 span {
  color: #ff0000;
}

.section-header p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.category-tab {
  padding: 12px 30px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #4a5568;
  transition: all 0.3s ease;
}

.category-tab:hover {
  border-color: #ff0000;
  color: #ff0000;
  transform: translateY(-2px);
}

.category-tab.active {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  border-color: #ff0000;
  color: white;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: cardFadeIn 0.6s ease-out forwards;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
  border-color: #ff0000;
}

.product-image-wrapper {
  height: 280px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-image-wrapper img {
  width: fit-content;
  height: 100%;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff0000;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-content {
  padding: 25px;
}

.product-category {
  color: #ff0000;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.product-title {
  font-size: 22px;
  color: #2d3748;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.product-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.product-features li {
  font-size: 13px;
  color: #555;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-features li i {
  color: #ff0000;
  font-size: 10px;
}

/* Product Details Dropdown - Only for Soft Starters */
.product-details-dropdown {
  margin-top: 20px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  display: none;
}

.product-details-dropdown.active {
  display: block;
  max-height: 1200px;
  padding: 20px 0;
}

.dropdown-content {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #ff0000;
}

.dropdown-content a {
  font-size: 16px;
  color: #2d3748;
  margin: 15px 0 10px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-content a:hover {
  font-size: 18px;
  color: #2d3748;
  margin: 15px 0 10px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-content a:first-child {
  margin-top: 0;
}

.dropdown-content a i {
  color: #ff0000;
  font-size: 18px;
}

.detailed-features {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.detailed-features li {
  padding: 8px 0;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.detailed-features li i {
  color: #ff0000;
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.rating-info {
  font-size: 14px;
  color: #555;
  padding: 8px 12px;
  background: white;
  border-radius: 6px;
  font-weight: 500;
  margin-bottom: 15px;
}

.dropdown-actions {
  margin-top: 15px;
  text-align: center;
}

.btn-full-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-full-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.product-actions {
  display: flex;
  gap: 10px;
}

.btn-view-details,
.btn-enquire {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-view-details {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
  border: none;
  cursor: pointer;
}

.dropdown-icon {
  transition: transform 0.3s ease;
  margin-left: 5px;
  font-size: 12px;
}

.btn-view-details.active .dropdown-icon {
  transform: rotate(180deg);
}

.btn-view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.btn-enquire {
  background: white;
  color: #ff0000;
  border: 2px solid #ff0000;
}

.btn-enquire:hover {
  background: #ff0000;
  color: white;
}

/* Animation Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add delays for staggered animation */
.product-card:nth-child(1) {
  animation-delay: 0.1s;
}
.product-card:nth-child(2) {
  animation-delay: 0.2s;
}
.product-card:nth-child(3) {
  animation-delay: 0.3s;
}
.product-card:nth-child(4) {
  animation-delay: 0.4s;
}
.product-card:nth-child(5) {
  animation-delay: 0.5s;
}
.product-card:nth-child(6) {
  animation-delay: 0.6s;
}
/* Hero Section */
.product-hero {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.product-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.product-hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.95;
}

/* Product Content Section */
.product-content {
  max-width: 1350px;
  margin: 30px auto;
  padding: 0 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.product-image-section {
  position: relative;
}

.product-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #ff0000;
  overflow: hidden;
}

.product-image img {
  /* width: 100%; */
  height: 100%;
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff0000;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

.product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-details h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.product-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
  text-align: left;
}

/* Features Section */
.features-section {
  background: #f8f9fa;
  padding: 60px 20px;
  margin: 60px 0;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #333;
  margin-bottom: 50px;
  font-weight: 700;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff0000;
  margin: 15px auto 0;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #ff0000;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 28px;
  color: white;
}

.feature-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Specifications Table */
.specs-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.specs-table {
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.specs-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 20px 30px;
  font-size: 15px;
}

.specs-table td:first-child {
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
  width: 40%;
}

.specs-table td:last-child {
  color: #555;
}

/* CTA Section */
.cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb */
.breadcrumb-product {
  background: #f8f9fa;
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-product .breadcrumb-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb-product a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-product a:hover {
  color: #ff0000;
}

.breadcrumb-product-separator {
  color: #999;
}

.breadcrumb-product .breadcrumb-current {
  color: #ff0000;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
  .product-hero h1 {
    font-size: 32px;
  }

  .product-hero p {
    font-size: 16px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-image {
    height: 350px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .specs-table td {
    padding: 15px 20px;
  }
}
header {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  background: white;
  padding: 6px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo-icon {
  font-size: 18px;
  color: #ff0000;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.company-name {
  font-size: 18px;
  font-weight: bold;
  color: #cc0000;
  letter-spacing: 0.5px;
}

.company-tagline {
  font-size: 9px;
  color: #666;
  letter-spacing: 0.3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-link i {
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;

  overflow: hidden;
  display: none;

  margin-top: 0;
  padding-top: 8px;
}

.nav-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: #ff0000;
  padding-left: 20px;
}

.dropdown-item i {
  color: #ff0000;
  font-size: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.action-btn {
  background: white;
  color: #ff0000;
  padding: 7px 16px;
  border-radius: 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.login-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.login-btn:hover {
  background: white;
  color: #ff0000;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: white;
  border: none;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  color: #ff0000;
}

@media (max-width: 968px) {
  .mobile-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #cc0000;
    flex-direction: column;
    padding: 15px;
    gap: 8px;
    display: none;
  }

  nav.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    display: none;
  }

  .nav-item.active .dropdown-menu {
    display: block;
  }

  .header-actions {
    flex-direction: column;
    width: 100%;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
  }
}
/* Digital Solutions Section */
.digital-solutions {
  background: white;
}

.digital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.digital-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 4px solid #ff0000;
}

.digital-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

.digital-icon {
  /* width: 80px; */
  height: 200px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.digital-icon i {
  font-size: 40px;
  color: #ff0000;
}

.digital-card h3 {
  font-size: 24px;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 600;
}

.digital-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.digital-card ul {
  list-style: none;
}

.digital-card ul li {
  padding: 8px 0;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.digital-card ul li i {
  color: #ff0000;
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Power Quality Section */
.power-quality-section {
  background: #f8f9fa;
}

.power-quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.pq-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.pq-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

.pq-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.pq-icon i {
  font-size: 45px;
  color: white;
}

.pq-card h3 {
  font-size: 24px;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 600;
}

.pq-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.pq-features {
  list-style: none;
}

.pq-features li {
  padding: 10px 0;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pq-features li i {
  color: #ff0000;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .page-hero {
    padding: 60px 20px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .breadcrumb-section {
    padding: 15px 20px;
  }

  .section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .digital-grid,
  .power-quality-grid {
    grid-template-columns: 1fr;
  }
}
.section-description {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 900px;
  margin: 30px auto 60px;
  line-height: 1.8;
}
/* Services Overview */
.services-overview {
  padding: 80px 50px;
  background: white;
  text-align: center;
}

.overview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.overview-container h2 {
  font-size: 42px;
  color: #2d3748;
  margin-bottom: 20px;
  font-weight: 700;
}

.overview-container p {
  font-size: 18px;
  color: #666;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Service Section */
.service-section {
  padding: 80px 50px;
}

.service-section:nth-child(even) {
  background: #f8f9fa;
}

.service-section:nth-child(odd) {
  background: white;
}

.service-container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-content.reverse {
  direction: rtl;
}

.service-content.reverse > * {
  direction: ltr;
}

.service-text {
  opacity: 0;
  animation: slideIn 0.8s ease-out 0.2s forwards;
}

.service-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-text h2 {
  font-size: 36px;
  color: #2d3748;
  margin-bottom: 25px;
  font-weight: 700;
}

.service-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
  margin-bottom: 30px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #fff5f5;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #ffe5e5;
  transform: translateX(5px);
}

.feature-item i {
  color: #ff0000;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
  margin-top: 20px;
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.service-image {
  position: relative;
  opacity: 0;
  animation: slideIn 0.8s ease-out 0.4s forwards;
}

.service-image-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  position: relative;
}

.service-image-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.service-image-icon i {
  font-size: 120px;
  color: #ff0000;
  opacity: 0.3;
}
/* Subscribe Section */
.subscribe-section {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  padding: 50px 20px;
  color: white;
}

.subscribe-container {
  max-width: 1200px;
  margin: 0 auto;
}

.subscribe-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 600;
}

.subscribe-form {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  min-width: 280px;
  padding: 18px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background: white;
  color: #333;
}

.email-input::placeholder {
  color: #999;
}

.user-type-select {
  min-width: 200px;
  padding: 18px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background: white;
  color: #666;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
}

.subscribe-btn {
  padding: 18px 40px;
  background: #ff0000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.subscribe-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.subscribe-btn i {
  font-size: 18px;
}

.privacy-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

.privacy-text a {
  color: #b3e0ff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-text a:hover {
  color: white;
}

/* Main Footer */
footer {
  background: rgb(255, 255, 255);
  /* background:blue; */
  color: white;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
  color: #ff0000;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: black;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #ff0000;
  padding-left: 5px;
}

/* Contact Info Styling */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.contact-item i {
  font-size: 20px;
  color: #ff0000;
  margin-top: 3px;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 13px;
  color: #ff0000;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-value {
  font-size: 16px;
  color: white;
}

.contact-value a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value a:hover {
  color: #ff0000;
}

/* Company Logo Section */
.company-logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid #ff0000;
}

.company-logo {
  background: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.company-logo i {
  font-size: 32px;
  color: #ff0000;
}

.company-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.company-logo-name {
  font-size: 26px;
  font-weight: bold;
  color: #cc0000;
  letter-spacing: 1px;
}

.company-logo-tagline {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.5px;
}

/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 14px;
  color: #cbd5e0;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link:hover {
  background: #ff0000;
  transform: translateY(-5px);
  border-color: #ffcccc;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.social-link.whatsapp:hover {
  background: #25d366;
}

.social-link.facebook:hover {
  background: #1877f2;
}

.social-link.linkedin:hover {
  background: #0077b5;
}

.social-link.youtube:hover {
  background: #ff0000;
}

.social-link.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }

  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .subscribe-section h2 {
    font-size: 24px;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .email-input,
  .user-type-select,
  .subscribe-btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .company-logo-section {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
  .service-content{
    display: block;
  }
  .service-image{
    margin-top: 15px;
  }
  .service-image-icon, .service-image-wrapper{
    height: 300px;
  }
  .service-section{
    padding: 30px 50px;
  }
  .pq-card h3{
    text-align: center;
  }
}
