/* ========================================
   SAKTHI TRANSFORMERS - ULTRA-ENHANCED DESIGN SYSTEM
   Brand Colors: #DF2B25 (Primary Red), #2C1372 (Secondary Purple)
   Advanced UI/UX for Industrial B2B Excellence
   ======================================== */

/* Import Professional Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   CSS RESET & ROOT VARIABLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --primary-red: #DF2B25;
  --primary-red-dark: #c22420;
  --primary-red-light: #ff3b33;
  --secondary-purple: #2C1372;
  --secondary-purple-dark: #1a0d4d;
  --secondary-purple-light: #3d1a9e;
  --white: #FFFFFF;
  --light-grey: #F5F5F5;
  --medium-grey: #E0E0E0;
  --dark-grey: #333333;
  --text-dark: #1A1A1A;
  --text-light: #666666;
  --border-light: #E8E8E8;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 80px;
  --section-padding-small: 40px;
  --container-max-width: 1200px;
  --card-padding: 40px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-family: "Tinos", serif !important;

}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
}

p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 1rem;
  font-family: "DM Sans", sans-serif !important;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
  font-family: "DM Sans", sans-serif !important;

}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-space {
  padding: var(--section-padding) 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

.col-lg-8 {
  flex: 0 0 66.666%;
  max-width: 66.666%;
  padding: 0 15px;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.col-lg-4 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 15px;
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #c22420;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(223, 43, 37, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-purple);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #220f5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 19, 114, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
}

.btn-outline:hover {
  background-color: var(--primary-red);
  color: var(--white);
}

/* ========================================
   HEADER & NAVIGATION - ENHANCED
   ======================================== */
.header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(223, 43, 37, 0.1);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  padding: 5px 0;
}

.header-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 18px 0;
  transition: padding 0.3s ease;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1001;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.clients-logo-img:hover {
  transform: scale(1.05);
}

.clients-logo-img {
  height: 120px;
  width: auto;
  transition: transform 0.3s ease;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;

}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 16px;
  color: #df2b25 !important;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--primary-red);
}

.nav-link:hover::after {
  width: 100%;
}

/* Header CTA Button */
.btn-header-cta {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  color: var(--white);
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(223, 43, 37, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
}

.btn-header-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(223, 43, 37, 0.4);
}

.btn-header-cta:hover::before {
  left: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background-color: var(--primary-red);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background-color: var(--primary-red);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--secondary-purple-dark) 100%);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  padding: 100px 30px 40px;
  max-width: 500px;
  margin: 0 auto;
  transform: translateY(-30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.mobile-logo {
  height: 45px;
  width: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 45px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.mobile-nav-menu li {
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-nav-menu li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-nav-menu li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-nav-link {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-red);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 30px;
}

.mobile-nav-link:hover::before {
  transform: scaleY(1);
}

.btn-mobile-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  color: var(--white);
  padding: 18px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(223, 43, 37, 0.4);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu-overlay.active .btn-mobile-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.btn-mobile-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(223, 43, 37, 0.5);
}

/* ========================================
   BANNER / HERO SECTION
   ======================================== */
.banner-sec {
  background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--secondary-purple-dark) 100%);
  color: var(--white);
  padding: 150px 0 120px;
  position: relative;
  overflow: hidden;
}

.banner-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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.05)"/></svg>');
  opacity: 0.3;
}

.banner-sec::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.banner-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.banner-content .highlight {
  color: var(--primary-red);
}

.banner-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.banner-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ========================================
   SECTION TITLES
   ======================================== */
.sec-title {
  margin-bottom: 50px;
}

.sec-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-family: "Outfit", sans-serif;
}

.sec-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-red);
}

.sec-title.center {
  text-align: center;
}

.sec-title.center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-sec {
  background-color: var(--white);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about-image-wrapper::before {
  width: 200px;
  height: 200px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: -1;
  content: "";
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 140px;
  height: 140px;
  border-radius: 0 100% 0 20px;
  background: red;
  z-index: 1;
  display: none;
}

.about-shape-one {
  position: relative;
}

.about-shape-one img {
  position: absolute;
  width: 500px;
  bottom: -120px;
  left: 75%;
  opacity: 0.5;
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--medium-grey);
  border-radius: 8px;
  text-align: center;
  transition: var(--transition-smooth);
}

.product-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 8px 24px rgba(223, 43, 37, 0.15);
  transform: translateY(-5px);
}

.product-card .icon {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 20px;
}

.product-card h4 {
  color: var(--secondary-purple);
  margin-bottom: 15px;
}

/* ========================================
   WHY CHOOSE US - FEATURE CARDS
   ======================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--light-grey);
  padding: 30px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
  border: 1px solid var(--secondary-purple);
}

.feature-card:hover {
  background-color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(5px);
}

.feature-card h4 {
  color: var(--secondary-purple);
  margin-bottom: 15px;
  font-size: 1.3rem;
  margin-top: 20px;
}

.feature-card .count {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 50px;
  font-weight: 800;
  -webkit-text-stroke: 2px var(--primary-red);
  -webkit-text-fill-color: transparent;
}

/* ========================================
   INDUSTRIES SECTION
   ======================================== */
.industries-sec {
  background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--secondary-purple-dark) 100%);
  padding: 80px 0;
}

/* Industries Carousel Container */
.industries-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.industries-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  transition: transform 0.5s ease;
}

/* Industry Card with Image Background */
.industry-card {
  position: relative;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Background Image */
.industry-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-bg-image {
  transform: scale(1.1);
}

/* Overlay - Hidden by default, shows on hover */
.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.industry-card:hover .industry-overlay {
  opacity: 1;
}

/* Industry Label - Text that appears on hover */
.industry-label {
  background-color: var(--white);
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.industry-card:hover .industry-label {
  transform: translateY(0);
}

.industry-label h4 {
  color: var(--secondary-purple);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.industry-label p {
  color: var(--text-dark);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Carousel Navigation Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 40px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.dot.active {
  background-color: var(--primary-red);
  width: 60px;
}


/* ========================================
   CLIENT LOGOS
   ======================================== */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.client-logo {
  width: 150px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========================================
   PROCESS STEPS
   ======================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  border-radius: 20px;
}

.process-step {
  text-align: center;
  padding: 30px;
  background-color: var(--light-grey);
  border-radius: 8px;
  position: relative;
  transition: var(--transition-smooth);
  border: 1px solid #2C1372;

}

.process-step:hover {
  background-color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h4 {
  color: var(--secondary-purple);
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-sec {
  background-color: var(--light-grey);
}

.faq-item {
  background-color: var(--white);
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-red);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
  font-size: 23px;
}

.faq-question:hover {
  background-color: rgba(223, 43, 37, 0.05);
}

.faq-question h4 {
  color: var(--secondary-purple);
  margin-bottom: 0;
  font-size: 20px;
  flex: 1;
  padding-right: 20px;
}

.faq-arrow {
  font-size: 1.5rem;
  color: var(--primary-red);
  transition: transform 0.3s ease;
  min-width: 30px;
  text-align: center;
  font-weight: bold;
}

.faq-item.active .faq-arrow {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 25px 25px;
}

.faq-answer p {
  font-size: 20px;
  margin: 0;
}


/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-sec {
  background-color: var(--white);
}

.contact-info {
  background-color: var(--light-grey);
  padding: 40px;
  border-radius: 8px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item .icon {
  font-size: 1.5rem;
  color: var(--primary-red);
  min-width: 30px;
}

.contact-item h4 {
  margin-bottom: 5px;
  color: var(--secondary-purple);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--secondary-purple);
  color: var(--white);
  padding: 60px 0 10px;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  text-decoration: none;
  padding-bottom: 0px;
  margin-bottom: 3px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.footer a:hover {
  color: var(--primary-red);
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {

  .col-lg-8,
  .col-lg-6,
  .col-lg-4,
  .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Hide desktop navigation, show mobile toggle */
  .nav-menu {
    display: none;
  }

  .btn-header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .btn-mobile-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    padding: 18px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(223, 43, 37, 0.4);
    opacity: 0;
    transform: translateY(20px);
    text-decoration: none;
  }

  .banner-content h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  /* Industries Carousel Responsive */
  .industries-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-card {
    height: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  /* Industries Carousel Mobile */
  .industries-track {
    grid-template-columns: 1fr;
  }

  .industry-card {
    height: 280px;
  }

  .industry-label h4 {
    font-size: 1rem;
  }

  .industry-label p {
    font-size: 0.85rem;
  }
}

/* ========================================
   STATS SHOWCASE SECTION
   ======================================== */
.stats-sec {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-sec::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 50px;
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 10px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-transform: capitalize;
}

.stat-sublabel {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

/* ========================================
   TRUST BADGES
   ======================================== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition-smooth);
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.trust-badge .icon {
  font-size: 1.2rem;
}

/* ========================================
   ENHANCED SECTION TITLES
   ======================================== */
.sec-title {
  margin-bottom: 60px;
}

.sec-title .subtitle {
  font-size: 0.95rem;
  color: var(--primary-red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.sec-title h2 {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.sec-title p {
  font-size: 18px;
  color: #000000;
  max-width: 700px;
  margin: 20px auto 0;

}

/* ========================================
   ENHANCED PRODUCT CARDS
   ======================================== */
.product-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.product-card-content {
  padding: 0px 30px;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 457px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red));
  transform: scaleX(0);
  transition: var(--transition-smooth);
  display: none;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  border-color: var(--primary-red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.product-card .icon {
  font-size: 3.5rem;
  color: var(--primary-red);
  margin-bottom: 25px;
  display: block;
  transition: var(--transition-smooth);
}

.product-card:hover .icon {
  transform: scale(1.1);
}

.product-card h4 {
  color: var(--secondary-purple);
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 700;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   ENHANCED FEATURE CARDS
   ======================================== */
.feature-card {
  background-color: var(--white);
  padding: 20px 10px;
  border-radius: 12px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
}

.feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--white);
}

.feature-card h4 {
  color: var(--secondary-purple);
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}

.icon-outside {
  padding: 5px;
  border: 1px solid #DF2B25;
  width: 71px;
  height: 71px;
  border-radius: 12px;
}





/* ========================================
   SECTION DIVIDERS
   ======================================== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--medium-grey), transparent);
  margin: 0;
}

/* ========================================
   ENHANCED RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .sec-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --card-padding: 30px;
  }

  .stats-sec {
    padding: 40px 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .sec-title h2 {
    font-size: 1.8rem;
  }

  .trust-badges {
    justify-content: center;
  }
}

/* header */

.logo-section img {
  width: 300px;
}


.products-sec {
  background-color: #09142b;
  color: #FFFFFF;
  position: relative;
  background-image: url(https://firebasestorage.googleapis.com/v0/b/front-end-assets.firebasestorage.app/o/sakthi-transformer%2Fshapes%2Four-products-bg-2.png?alt=media&token=563ecde4-44b1-4b3b-8784-1a836e383575);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* .why-choose-sec {
  background-image: url(https://firebasestorage.googleapis.com/v0/b/front-end-assets.firebasestorage.app/o/sakthi-transformer%2Fshapes%2Ffull-transfomer-tower.png?alt=media&token=6ba31bc3-0feb-420a-8450-c553356d0234);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-size: contain;
} */


.banner-sec .shape .shape-5 {
  width: 100%;
  height: 240px;
  clip-path: polygon(74% 65%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 90%, 27% 50%);
}

.banner-sec .shape .shape-5 {
  background: #eb7328;
}

.banner-style-two .shape .shape-4 {
  width: 100%;
  height: 240px;
  background: #f3f0ec;
  clip-path: polygon(75% 75%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 27% 50%);
}

.z_2 {
  z-index: 2;
}

.l_0 {
  left: 0;
}

.b_0 {
  bottom: 0;
}

.p_absolute {
  position: absolute;
}

.product-card-img img {
  width: 100%;
  padding: 10px;
  margin-bottom: 30px;
  border-radius: 20px;
}

.product-card-icon {
  position: relative;
}

.product-card-icon img {
  position: absolute;
  width: 60px;
  bottom: 10px;
  left: 150px;
}

#why-choose-us-bg {
  background-image: url(https://firebasestorage.googleapis.com/v0/b/front-end-assets.firebasestorage.app/o/sakthi-transformer%2Fshapes%2Fwhy-choose-bg.png?alt=media&token=bebd9c0c-73e1-4640-a174-9082a6097bd6);
  padding: 60px 0px;
}

.why-choose-us-img {
  position: relative;
}

.why-choose-us-img img {
  position: absolute;
  width: 568px;
  top: -130px;
  left: 3px;
}

.why-choose-sec .container {
  max-width: 1600px;
}

.section-space-top {
  margin: 0px 0px 0px 0px;
}

.banner-sec {
  background-image: url(https://firebasestorage.googleapis.com/v0/b/front-end-assets.firebasestorage.app/o/sakthi-transformer%2Fbanner%2Fbanner.png?alt=media&token=5b38d0ee-756a-4bc4-9352-cfe777c2fe86);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-content .title-upper-content {
  background-color: #FFFFFF;
  padding: 5px 20px;
  color: #df2b25;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}


.counter-img img {
  width: 60px;
  text-align: center;
  margin-bottom: 20px;
}


/* client logo */


.logo-scroll-wrapper {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-scroll-wrapper .logo-scroll {
  width: calc(var(--item-size) * var(--item-count));
  display: flex;
  animation: scroll-ltr var(--duration) linear infinite;
  justify-content: space-between;
  padding: 10px 0;
}

.logo-scroll-wrapper .logo-scroll:hover {
  animation-play-state: paused;
}

.logo-scroll-wrapper .logo-scroll .logo {
  width: var(--item-size);
  cursor: pointer;
}

.logo-scroll-wrapper .logo-scroll .logo:hover {
  transition: transform .2s ease-in-out;
  transform: scale(1.2)
}

@keyframes scroll-ltr {
  100% {
    transform: translateX(0px);
  }

  0% {
    transform: translateX(calc(var(--item-size) * var(--item-count) * -1));
  }
}

@keyframes scroll-rtl {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(calc(var(--item-size) * var(--item-count) * -1));
  }
}


.clients-logo-img img {
  width: 180px;
  border-radius: 10px;
  border: 1px solid #df2b25;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.footer-logo img {
  background-color: #fff;
  padding: 10px;
  width: 250px;
  border-radius: 10px;
  margin-bottom: 20px;
}


.about-us-shape img {
  position: relative;
}


.about-us-shape img {
  position: absolute;
  width: 35%;
  left: 123px;
  z-index: 1;
}

#viewportPendulum {
  position: relative;
  /* change to fixed or absolute */
  left: 0;
  top: 0;
  background: #c70039;
  animation: 2s ease-in-out infinite alternate swingViewport;
}

@keyframes swingViewport {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(3vw - 100%));
  }
}


.about-image-wrapper {
  position: relative;
  z-index: 2;
}

.read-more-btn {
  color: #c22420;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}


/* From Uiverse.io by alexroumi */
.read-more-btn-products {
  padding: 15px 25px;
  border: unset;
  border-radius: 5px;
  color: #fff;
  z-index: 1;
  background: #2c1372;
  position: relative;
  font-weight: 1000;
  font-size: 16px;

  transition: all 250ms;
  overflow: hidden;
}

.read-more-btn-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 5px;
  background-color: #db2a24;
  z-index: -1;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms
}

.read-more-btn-products:hover {
  color: #e8e8e8;
}

.read-more-btn-products:hover::before {
  width: 100%;
}


/*  */

.read-more-btn-products-two {
  padding: 15px 25px;
  border: unset;
  border-radius: 5px;
  color: #fff;
  z-index: 1;
  background: #c22420;
  position: relative;
  font-weight: 1000;
  font-size: 16px;
  font-weight: 500;
  transition: all 250ms;
  overflow: hidden;
  text-transform: uppercase;
}

.read-more-btn-products-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 5px;
  background-color: #1a0d4d;
  z-index: -1;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms
}

.read-more-btn-products-two:hover {
  color: #e8e8e8;
}

.read-more-btn-products-two:hover::before {
  width: 100%;
}


.banner-flex-btn {
  display: flex;
  justify-content: start;
  gap: 10px;
}

/* industry we write  */



.we-image-accordion {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px 90px;
}

.we-item {
  height: 75vh;
  transition: .5s;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  flex: 1 1 0%;
  padding: 15px;
  align-items: center;
  justify-content: end;
  display: flex;
  flex-direction: column;
}

.we-item .we-image-item {
  max-height: 50vh;
}

.we-item:hover {
  flex: 3 1 0%;
}

.we-image-item-header {
  font-size: 25px;
  font-weight: bold;
}

.we-image-item-text,
.we-button {
  font-size: 18px;
}

.we-image-item-header,
.we-image-item-text,
.we-button {
  transition: .2s;
  display: none;
  color: #fff;
  font-family: "Outfit", sans-serif;
}

@media (max-width: 768px) {
  .we-image-accordion {
    display: block;
  }
.about-shape-one img {
    position: absolute;
    width: 500px;
    bottom: -120px;
    left: 75%;
    display: none !important;
    opacity: 0.5;
}
  .we-item {
    display: flex;
  }

  .we-item:hover {
    flex: none;
  }

  .we-image-item-header,
  .we-image-item-text,
  .we-button {
    display: block;
    bottom: -10px;
    text-align: center;
  }

  .why-choose-us-img img {
    display: none;
  }

  .product-card-icon img {
    position: absolute;
    width: 60px;
    bottom: 10px;
    left: 200px;
    margin: 0 auto;
  }

  .product-card::before {
    content: '';
    position: absolute;
    top: 502px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red));
    transform: scaleX(0);
    transition: var(--transition-smooth);
    display: none;
  }

  .we-item {
    height: 50vh;
    transition: .5s;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    flex: 1 1 0%;
    padding: 15px;
    align-items: center;
    justify-content: end;
    display: flex;
    flex-direction: column;
  }

  .logo-section img {
    width: 350px;
  }

  br {
    display: none;
  }

  .clients-logo-img img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #df2b25;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }

  #whychoosetitle {
    text-align: center !important;
  }

  #whychoosetitle p {
    text-align: center !important;
  }
}

.industries-we-serve {
  padding: 80px 0px 0px;
}

.header .container {
  max-width: 1250px;
}

.float {
  position: fixed;`
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 16px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  padding: 10px;
}

.my-float {
  margin-top: 16px;
}



.call-buton .cc-calto-action-ripple {
  z-index: 99999;
  position: fixed;
  right: 1rem;
  bottom: 7rem;
  background: #2c1372;
  width: 60px;
  height: 60px;
  padding: 1rem;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
  animation: cc-calto-action-ripple 0.6s linear infinite;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.call-buton .cc-calto-action-ripple i {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 26px;
}

.call-buton .cc-calto-action-ripple:hover i {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}


span.num {
  position: absolute;
  color: #ec8b00;
  left: -30%;
  bottom: -50%;
}

.faq-img img {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: center;
}


/* loader style css */

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2c1372;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader .charContent {
  position: relative;
  width: 100px;
  height: 100px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.page-loader .chargement {

  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
  -webkit-transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
  -moz-transform-origin: 50% 50%;
  -moz-transform: rotate(45deg);
  -o-transform-origin: 50% 50%;
  -o-transform: rotate(45deg);
  -ms-transform-origin: 50% 50%;
  -ms-transform: rotate(45deg);
  color: white;

}

.page-loader .charContent {
  animation: anim 4s ease infinite;
  -webkit-animation: anim 4s ease infinite;
  -moz-animation: anim 4s ease infinite;
  -o-animation: anim 4s ease infinite;
  -ms-animation: anim 4s ease infinite;

}

@-webkit-keyframes anim {

  from {

    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  50% {

    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);

  }

  to {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);


  }

}

@-moz-keyframes anim {

  from {

    -moz-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  50% {

    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);

  }

  to {
    -moz-transform: rotateY(360deg);
    transform: rotateY(360deg);


  }

}

@-ms-keyframes anim {

  from {

    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  50% {

    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);

  }

  to {
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg);


  }

}

.page-loader .charContent .chargement {

  border: 2px solid #df2b25;
  color: #df2b25;
  font-size: 50px;
}

.page-loader .chargement i,
.page-loader .chargement span {

  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  text-align: center;
  margin: 0;
}
