/* ==========================================================================
   S&C INTERNATIONAL - MAIN STYLESHEET
   Brand Colors:
   - Royal Blue: #0B4FB4
   - Dark Blue:  #0A2F7A
   - Orange:     #F5A623
   - Light Bg:   #F4F7FC
   ========================================================================== */

:root {
  --primary: #0B4FB4;
  --primary-dark: #0A2F7A;
  --primary-light: #EBF2FE;
  --accent: #F5A623;
  --accent-hover: #E09315;
  --accent-light: #FFF6E5;
  --dark: #0F172A;
  --slate: #334155;
  --muted: #64748B;
  --light-bg: #F4F7FC;
  --white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-sm: 0 4px 6px -1px rgba(11, 79, 180, 0.06), 0 2px 4px -1px rgba(11, 79, 180, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(10, 47, 122, 0.1), 0 8px 10px -6px rgba(10, 47, 122, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(10, 47, 122, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Setup */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--slate);
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: #E2E8F0;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
  color: #E2E8F0;
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar-icon {
  color: var(--accent);
  margin-right: 6px;
}

/* Sticky Header & Navbar */
.navbar {
/*  padding: 14px 0;*/
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(10, 47, 122, 0.06);
}

.navbar.scrolled {
  /*padding: 10px 0;*/
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar-brand img {
  height: 100px;
  width: auto;
  transition: var(--transition);
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-link:hover, 
.nav-link.active {
  color: var(--primary) !important;
  background-color: var(--primary-light);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
  color: #FFFFFF;
}

.btn-outline-primary-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  background: transparent;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Badge System */
.badge-pill-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 79, 180, 0.3);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-bottom: 20px;
  background: linear-gradient(135deg, #F8FAFC 0%, #EBF2FE 100%);
  overflow: hidden;
}
/* Floating Badges on Hero Image */
.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(10, 47, 122, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-dark);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.floating-badge i {
  color: #10B981;
  font-size: 1.1rem;
}

.floating-badge-1 { top: 12%; left: -6%; animation-delay: 0s; }
.floating-badge-2 { top: 48%; right: -6%; animation-delay: 1s; }
.floating-badge-3 { bottom: 10%; left: -4%; animation-delay: 2s; }

/* Feature Bar Grid */
.hero-features-bar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

.hero-feature-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* Section Common Header */
.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 10px auto 0;
}

/* Product Cards */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E2E8F0;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.product-img-box {
  position: relative;
/*  height: 230px;*/
  background: #F8FAFC;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-box img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

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

.product-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 18px;
  flex-grow: 1;
}

.product-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.spec-badge {
  font-size: 0.75rem;
  background: var(--light-bg);
  color: var(--slate);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 500;
}

/* Material Cards */
.material-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 35px 28px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
  height: 100%;
}

.material-card.pp { border-top-color: var(--accent); }
.material-card.pc { border-top-color: #0ea5e9; }

.material-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.material-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.material-card.pp .material-icon {
  background: var(--accent-light);
  color: var(--accent-hover);
}

.material-card.pc .material-icon {
  background: #E0F2FE;
  color: #0284C7;
}

.material-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.material-list li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate);
}

.material-list li i {
  color: #10B981;
}
.applicationSlider{
    padding:10px 5px 60px;
}

.app-card{
    background:#fff;
    border-radius:15px;
    padding:30px 15px;
    text-align:center;
    border:1px solid #eee;
    transition:.4s;
    height:100%;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.app-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.app-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.app-card h5{
    margin:0;
    font-size:17px;
    font-weight:600;
}

.swiper-button-next,
.swiper-button-prev{
    color:#0d6efd;
}

.swiper-pagination-bullet-active{
    background:#0d6efd;
}

/* Quality Timeline / Steps */
.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 900;
  color: #E2E8F0;
  line-height: 1;
}

/* Counter Box */
.counter-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 40px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.counter-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.counter-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #E2E8F0;
  margin: 0;
}


/* FAQ Accordion */
.accordion-item {
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 700;
  color: var(--primary-dark);
  padding: 18px 24px;
  background-color: var(--white);
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: var(--primary-light);
  box-shadow: none;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: 50%;
}

/* Contact Info Box */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: #CBD5E1;
  padding: 70px 0 0;
  font-size: 0.9rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: #94A3B8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Floating Action Buttons */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 96px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
}
