/* ===== VARIABLES & BASE ===== */
:root {
  --primary-color: #003366;
  /* Deep Navy - Trust & Authority */
  --secondary-color: #00A3E0;
  /* Tech Cyan - Innovation */
  --accent-color: #E0E0E0;
  /* Platinum */
  --text-dark: #1A1A1A;
  --text-light: #F5F7FA;
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: #fcfcfc;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

section {
  padding: 80px 0;
}

/* ===== PREMIUM NAVIGATION ===== */
.navbar-fixed {
  height: 80px;
  z-index: 999;
}

nav {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 80px;
  line-height: 80px;
  transition: all 0.4s ease;
}

nav.scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 70px;
  line-height: 70px;
}

/* Override Materialize Nav Wrapper for Flexbox */
nav .nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Fix overlapping issue by resetting Materialize absolute positioning */
.brand-logo {
  position: relative !important;
  transform: none !important;
  left: auto !important;
  display: flex !important;
  align-items: center !important;
  height: 100%;
  /* Force full height */
  line-height: normal;
  /* Reset line-height */
}

.brand-logo img {
  height: 65px;
  margin-top: 0;
  transition: all 0.3s ease;
  object-fit: contain;
}

nav.scrolled .brand-logo img {
  height: 55px;
  margin-top: 0;
}

/* Desktop Links */
nav ul a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  /* Dark text for visibility */
  position: relative;
  padding: 0 15px;
  transition: color 0.3s ease;
  display: inline-block;
}

nav ul a::after {
  content: '';
  position: absolute;
  bottom: 25px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav ul a:hover::after {
  width: 20px;
}

nav ul a:hover {
  color: var(--secondary-color);
  background: transparent;
}

nav ul a.active-link {
  color: var(--secondary-color);
}

/* ===== PREMIUM HAMBURGER MENU ICON ===== */
.sidenav-trigger {
  margin: 0 8px 0 0 !important;
  padding: 0 8px !important;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: none !important;
  box-shadow: none !important;
}

@media (max-width: 992px) {
  .sidenav-trigger {
    display: flex !important;
  }
}

.sidenav-trigger i {
  color: var(--primary-color) !important;
  font-size: 28px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.sidenav-trigger:hover i,
.sidenav-trigger:focus i {
  color: var(--secondary-color) !important;
  transform: scale(1.1);
}

/* ===== PREMIUM MOBILE SIDENAV (FLOATING GLASS MENU) ===== */
.sidenav {
  /* Positioning */
  position: fixed !important;
  top: 70px !important;
  /* Slightly higher */
  right: 15px !important;
  left: auto !important;
  bottom: auto !important;
  width: 200px !important;
  /* Smaller width */
  height: auto !important;
  max-height: calc(100vh - 90px);

  /* Premium Glassmorphism Look */
  background: linear-gradient(145deg, rgba(10, 25, 47, 0.95) 0%, rgba(23, 42, 69, 0.98) 100%) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px !important;
  /* Slightly smaller radius */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05) !important;

  /* Reset Default Materialize Styles */
  padding: 8px 0 !important;
  /* Reduced vertical padding */
  overflow-y: auto;

  /* Smooth Open Animation */
  transform-origin: top right !important;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease !important;
  opacity: 0;
  transform: scale(0.9) translateY(-15px) !important;
  pointer-events: none;
}

/* Open State */
.sidenav[style*="translateX(0%)"],
.sidenav[style*="translate(0px)"] {
  transform: scale(1) translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto;
}

/* Remove overlay blur for cleaner interaction */
.sidenav-overlay {
  background-color: rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(1px);
}

/* Nav Items */
.sidenav li>a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 10px 16px !important;
  /* Compact padding */
  font-size: 14px !important;
  /* Smaller text */
  font-weight: 500 !important;
  height: auto !important;
  margin: 2px 6px !important;
  /* Compact margin */
  border-radius: 6px !important;
  transition: all 0.2s ease;
}

/* Hover State */
.sidenav li>a:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  transform: translateX(5px);
}

/* Icons */
.sidenav li>a>i,
.sidenav li>a>i.material-icons {
  margin: 0 12px 0 0 !important;
  /* Tighter gap */
  color: var(--secondary-color) !important;
  /* Cyan accent color */
  font-size: 18px !important;
  /* Smaller icon */
  width: auto !important;
  float: none !important;
  transition: transform 0.2s ease;
}

.sidenav li>a:hover>i {
  transform: scale(1.1);
}

/* Active State */
.sidenav li>a.active-nav {
  background: linear-gradient(90deg, rgba(0, 163, 224, 0.15), transparent) !important;
  color: #fff !important;
  border-left: 3px solid var(--secondary-color);
}

/* Animation Step for Items */
.sidenav li {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sidenav[style*="translateX(0%)"] li,
.sidenav[style*="translate(0px)"] li {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered Delays for Open */
.sidenav[style*="translateX(0%)"] li:nth-child(1) {
  transition-delay: 0.1s;
}

.sidenav[style*="translateX(0%)"] li:nth-child(2) {
  transition-delay: 0.15s;
}

.sidenav[style*="translateX(0%)"] li:nth-child(3) {
  transition-delay: 0.2s;
}

.sidenav[style*="translateX(0%)"] li:nth-child(4) {
  transition-delay: 0.25s;
}

.sidenav[style*="translateX(0%)"] li:nth-child(5) {
  transition-delay: 0.3s;
}

/* Hide unnecessary elements */
.sidenav .nav-label,
.sidenav .sidenav-contact,
.sidenav .user-view {
  display: none !important;
}



/* ===== CREATIVE HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 85vh;
  /* Taller viewport */
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  /* Clean Silver Gradient */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

/* Background Pattern */
.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(#003366 1px, transparent 1px),
    radial-gradient(#003366 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  opacity: 0.05;
}

.hero-container {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 5;
}

/* Left Content Column */
.hero-text-col {
  flex: 1;
  max-width: 600px;
  padding-right: 40px;
  animation: slideInLeft 1s ease-out;
}

.badge-pill {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 51, 102, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--primary-color);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.highlight-text {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background: rgba(0, 163, 224, 0.2);
  z-index: -1;
  transform: skewX(-15deg);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
}

/* Creative Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.btn-creative {
  position: relative;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-btn {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 51, 102, 0.2);
}

.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 51, 102, 0.3);
  background: #002244;
}

.secondary-btn {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Stats */
.stats-row {
  display: flex;
  gap: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
}

/* Right Visual Column */
.hero-visual-col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.visual-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
}

.main-image-frame {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  /* Squircle */
  overflow: hidden;
  transform: rotate(-5deg);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
  border: 5px solid white;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.main-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  /* Zoom slightly */
}

.visual-wrapper:hover .main-image-frame {
  transform: rotate(0deg) scale(1.02);
}

/* Floating Elements */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  font-weight: 700;
  color: var(--primary-color);
  animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
  top: 50px;
  right: -30px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 80px;
  left: -40px;
  animation-delay: 2s;
}

.float-card i {
  color: var(--secondary-color);
}

.deco-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 163, 224, 0.3);
  top: -40px;
  right: -40px;
  z-index: 1;
  animation: spinSlow 30s linear infinite;
}

.deco-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: -20px;
  right: -20px;
  background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.2;
  z-index: 0;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text-col {
    padding-right: 0;
    margin-top: 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats-row {
    justify-content: center;
  }

  .visual-wrapper {
    width: 300px;
    height: 300px;
  }

  .hero-title {
    font-size: 3rem;
  }
}

/* ===== GLOBAL DYNAMIC STYLES ===== */

/* Modern Section Titles */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  border: none;
  /* Remove old border */
  padding-left: 0;
}

.section-title::after {
  content: '';
  display: block;
  width: 50%;
  height: 4px;
  background: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Glassmorphism Card Style */
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy transition */
  position: relative;
  overflow: hidden;
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15);
  border-color: var(--secondary-color);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  opacity: 0;
  transition: opacity 0.3s;
}

.glass-card:hover::before {
  opacity: 1;
}

/* Service Icons with Blob Background */
.icon-blob {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.icon-blob::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 163, 224, 0.1);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: -1;
  transition: all 0.5s ease;
  animation: blobFloat 6s ease-in-out infinite;
}

.glass-card:hover .icon-blob::before {
  background: var(--secondary-color);
  transform: scale(1.1) rotate(10deg);
}

.icon-blob i {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: color 0.3s;
}

.glass-card:hover .icon-blob i {
  color: white;
}

/* Animations Keyframes */
@keyframes blobFloat {

  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

/* Stats Counter Style */
.stat-box {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Button Upgrades */
.btn-dynamic {
  overflow: hidden;
  position: relative;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: 1;
}

.btn-dynamic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -2;
}

.btn-dynamic::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--secondary-color);
  transition: all 0.3s;
  z-index: -1;
}

.btn-dynamic:hover::before {
  width: 100%;
}



/* ===== STATS SECTION ===== */
.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2196F3;
}

.stat-label {
  font-size: 1.2rem;
  margin-top: 5px;
}

/* ===== ABOUT SECTION ===== */
.silvertech-about {
  background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #333;
}

.about-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#e1e8ed 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 1;
}

.silvertech-about .container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
}

/* Header */
.section-header {
  margin-bottom: 80px;
  position: relative;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #546e7a;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

/* Story Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Image Side */
.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.image-frame img {
  width: 100%;
  border-radius: 20px;
  display: block;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.02);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, #1976d2, #2196f3);
  color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
  text-align: center;
  min-width: 160px;
}

.experience-badge .years {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-badge .text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0.9;
}

/* Text Side */
.about-text-content {
  padding-right: 20px;
}

.subsection-title {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
}

.lead-text {
  font-size: 1.3rem;
  color: #263238;
  font-weight: 500;
  margin-bottom: 25px;
  border-left: 4px solid #2196f3;
  padding-left: 20px;
}

.about-text-content p {
  color: #546e7a;
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.approved-badge {
  display: inline-flex;
  align-items: center;
  background: #e3f2fd;
  color: #1565c0;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 20px;
}

.approved-badge i {
  margin-right: 8px;
}

/* Mission / Vision Cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

.mv-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 50px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  background: white;
}

.card-icon-bg {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #1976d2;
}

.card-icon-bg i {
  font-size: 32px;
}

.mv-card h3 {
  font-size: 1.8rem;
  color: #0d47a1;
  margin-bottom: 15px;
  font-weight: 700;
}

.mv-card p {
  color: #546e7a;
  font-size: 1.1rem;
}

/* Why Choose Us */
.why-us-section {
  background: transparent;
  padding: 60px 0;
  margin-top: 40px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
}

@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-us-section {
    padding: 30px 0;
    margin-top: 10px;
  }

  .why-us-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    margin-top: 20px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .why-us-grid::-webkit-scrollbar {
    display: none;
  }

  .why-us-grid .feature-item {
    min-width: 160px !important;
    max-width: 160px !important;
    flex-shrink: 0;
    scroll-snap-align: center;
    padding: 24px 12px !important;
  }
}

.feature-item {
  text-align: center;
  padding: 18px 14px;
  background: #f5f7fa;
  border-radius: 12px;
  border: 1.5px solid #d0dbe8;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 163, 224, 0.1);
  background: #eef4fa;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(0, 163, 224, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: var(--secondary-color);
}

.feature-icon i {
  font-size: 22px;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.feature-item:hover .feature-icon i {
  color: white;
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.85rem;
  color: #546e7a;
  line-height: 1.5;
  margin: 0;
}

/* Animations */
.shift-up-animation {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.shift-right-animation {
  opacity: 0;
  animation: fadeRight 1s ease 0.3s forwards;
}

.shift-left-animation {
  opacity: 0;
  animation: fadeLeft 1s ease 0.3s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.fade-up {
  transform: translateY(40px);
}

.reveal.fade-left {
  transform: translateX(-40px);
}

.reveal.fade-right {
  transform: translateX(40px);
}

.reveal.zoom-in {
  transform: scale(0.9);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered delays for child items */
.reveal.delay-1 {
  transition-delay: 0.1s;
}

.reveal.delay-2 {
  transition-delay: 0.2s;
}

.reveal.delay-3 {
  transition-delay: 0.3s;
}

.reveal.delay-4 {
  transition-delay: 0.4s;
}

/* ===== CLIENT LOGOS ===== */
.client-logo-container {
  width: 150px;
  height: 100px;
  margin: 0 auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 8px;
}

.client-logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e3f2fd" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

/* Contact Header */
.contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 15px;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 50px;
  font-weight: 300;
}

/* Contact Cards */
.contact-content {
  margin-bottom: 60px;
}

.contact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2196F3, #1976D2);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.contact-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.contact-icon {
  color: white;
  font-size: 2.5rem;
}

.contact-card h5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.contact-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-link {
  color: #2196F3;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #1976D2;
  text-decoration: underline;
}

/* Map and Form Section */
.contact-bottom {
  margin-bottom: 60px;
}

.map-section,
.quick-contact-form {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.map-section h5,
.quick-contact-form h5 {
  font-size: 1.8rem;
  color: #1976d2;
  margin-bottom: 25px;
  font-weight: 600;
}

.map-container {
  position: relative;
  padding-bottom: 60%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

/* Contact Form Styles */
.contact-form .input-field {
  margin-bottom: 25px;
}

.contact-form .input-field input,
.contact-form .input-field textarea {
  border-radius: 8px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 15px;
  font-size: 1rem;
}

.contact-form .input-field input:focus,
.contact-form .input-field textarea:focus {
  background: white;
  border-color: #2196F3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.contact-form .input-field label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.contact-form .input-field label.active {
  color: #2196F3;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

.form-actions .btn {
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 600;
}

.form-actions .btn-flat {
  font-weight: 500;
}

/* Contact Footer */
.contact-footer {
  background: white;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-footer h6 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 15px 0 10px;
}

.contact-footer p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.contact-footer .material-icons {
  margin-bottom: 10px;
}

/* Responsive Design for Contact Section */
@media (max-width: 992px) {
  .contact-bottom .col.m6 {
    margin-bottom: 30px;
  }

  .map-container {
    padding-bottom: 50%;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.2rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .contact-card {
    padding: 30px 20px;
    margin-bottom: 25px;
  }

  .contact-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .contact-icon {
    font-size: 2rem;
  }

  .map-section,
  .quick-contact-form {
    padding: 25px;
  }

  .form-actions {
    flex-direction: column;
  }

  .contact-footer {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .contact-card {
    padding: 25px 15px;
  }

  .map-container {
    padding-bottom: 75%;
  }
}

/* ===== FOOTER ===== */
.page-footer {
  margin-top: 0;
}

.footer-copyright {
  padding: 15px 0 !important;
}

.social-icons a {
  margin-right: 10px;
  color: white;
  font-size: 24px;
}

/* ===== CARD STYLES ===== */
.card .card-content {
  padding: 24px;
}

.card .card-content p {
  margin-bottom: 15px;
}

/* ===== FORM STYLES ===== */
.input-field input:focus,
.input-field textarea:focus {
  border-bottom: 1px solid #2196F3 !important;
  box-shadow: 0 1px 0 0 #2196F3 !important;
}

.input-field input:focus+label,
.input-field textarea:focus+label {
  color: #2196F3 !important;
}

/* ===== BUTTON STYLES ===== */
.btn-blue {
  background-color: #2196F3;
}

.btn-blue:hover {
  background-color: #1E88E5;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-btn {
    padding: 18px 24px;
    font-size: 1rem;
    margin: 8px;
  }

  .hero-background {
    background-image: url('image1m.jpg');
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
}

/* ===== PARTNERS CAROUSEL ===== */
.logo-slider {
  background: white;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-slider::before,
.logo-slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100%;
  position: absolute;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  top: 0;
}

.logo-slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.logo-track {
  display: flex;
  width: calc(200px * 14);
  /* 7 logos * 2 sets * 200px width */
  animation: scrollLogo 30s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-slide {
  height: 100px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.logo-slide img {
  max-width: 100%;
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollLogo {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-200px * 7));
    /* Move by width of one set of logos */
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {

  .logo-slider::before,
  .logo-slider::after {
    width: 50px;
  }

  .logo-slide {
    width: 150px;
    padding: 0 15px;
  }

  .logo-track {
    width: calc(150px * 14);
  }

  @keyframes scrollLogo {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-150px * 7));
    }
  }
}

/* --- Modern Footer --- */
.modern-footer {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  color: #fff;
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2196F3, #00BCD4, #4CAF50);
}

.footer-logo h5 {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  background: linear-gradient(to right, #fff, #a1c4fd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 300px;
}

.footer-heading {
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
  margin-top: 0;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #2196F3;
  border-radius: 2px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-links a:hover {
  color: #2196F3;
  padding-left: 8px;
  text-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
}

.footer-links a i {
  font-size: 16px;
  margin-right: 8px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-links a:hover i {
  opacity: 1;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: #2196F3;
  margin-right: 15px;
  margin-top: 4px;
  font-size: 18px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: #2196F3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* ===== SUB-PAGE HEADER (Reusable) ===== */
.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 150px 0 100px;
  text-align: center;
  color: white;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  overflow: hidden;
  margin-top: -80px;
  /* Offset for fixed navbar */
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  margin: 0;
  background: linear-gradient(to right, #ffffff, #a1c4fd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-header p {
  font-size: 1.4rem;
  opacity: 0.9;
  margin-top: 20px;
  font-weight: 300;
  position: relative;
  z-index: 2;
  letter-spacing: 1px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
}

/* ===== HISTORY SECTION ===== */
.history-section {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-color);
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.history-bg-icon {
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 15rem;
  color: rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

/* ===== CALL TO ACTION SECTION ===== */
.cta-section {
  background-color: #0d47a1;
  /* fallback */
  background: linear-gradient(135deg, var(--primary-color), #1565c0);
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section h3 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2rem;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: white;
  color: var(--primary-color);
  border-radius: 50px;
  padding: 0 40px;
  font-weight: 700;
  height: 54px;
  line-height: 54px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: inline-block;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background-color: #f5f5f5;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  color: var(--secondary-color);
}

/* ===== ABOUT GRAPHIC SECTION ===== */
.about-graphic-container {
  height: 450px;
  width: 100%;
  background: linear-gradient(135deg, #e3f2fd 0%, #f5f7fa 100%);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  /* Softer shadow */
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-graphic-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(var(--primary-color) 0.5px, transparent 0.5px),
    radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.05;
}

.graphic-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(0, 163, 224, 0.15);
  /* Secondary color low opacity */
  top: -50px;
  right: -50px;
  animation: pulseSlow 8s infinite alternate;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: rgba(0, 51, 102, 0.1);
  /* Primary color low opacity */
  bottom: -50px;
  left: -50px;
  animation: pulseSlow 10s infinite alternate-reverse;
}

@keyframes pulseSlow {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.graphic-icon-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 51, 102, 0.1);
  /* Colored shadow */
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary-color);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

.graphic-icon-float:hover {
  transform: translateY(-5px) scale(1.02);
}

.icon-1 {
  top: 15%;
  left: 10%;
  animation: floatCard 5s ease-in-out infinite;
}

.icon-2 {
  bottom: 20%;
  right: 5%;
  animation: floatCard 6s ease-in-out infinite;
  animation-delay: 1s;
}

.icon-3 {
  top: 45%;
  right: 15%;
  animation: floatCard 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

.icon-4 {
  bottom: 25%;
  left: 12%;
  animation: floatCard 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

.experience-badge-graphic {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: linear-gradient(135deg, var(--primary-color), #1565c0);
  color: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(13, 71, 161, 0.3);
  text-align: center;
  z-index: 3;
  min-width: 180px;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.experience-badge-graphic:hover {
  transform: rotate(0deg) scale(1.05);
}

.experience-badge-graphic .years {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
  background: linear-gradient(to bottom, #ffffff, #bbdefb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.experience-badge-graphic .text {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.95;
  text-transform: uppercase;
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ============================================================ */

/* ---------- TABLET (max-width: 992px) ---------- */
@media (max-width: 992px) {

  /* Typography */
  .section-title {
    font-size: 2.2rem !important;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  /* About graphic */
  .graphic-icon-float {
    transform: scale(0.8);
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  /* Subsection titles */
  .subsection-title {
    font-size: 1.6rem;
  }

  .lead-text {
    font-size: 1.1rem;
  }

  /* MV Cards */
  .mv-card {
    padding: 35px 28px;
  }

  .mv-card h3 {
    font-size: 1.5rem;
  }

  .mv-card p {
    font-size: 1rem;
  }

  /* Page Headers */
  .page-header {
    padding: 120px 0 80px;
  }

  .page-header h1 {
    font-size: 2.5rem !important;
  }

  .page-header p {
    font-size: 1.15rem;
    margin-top: 12px;
  }

  /* CTA Section */
  .cta-section {
    padding: 50px 0;
  }

  .cta-section h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .cta-section p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta-btn {
    font-size: 0.95rem;
    padding: 0 28px;
    height: 48px;
    line-height: 48px;
  }

  /* Stats */
  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .stat-box {
    padding: 15px 10px;
  }

  /* Contact Section */
  .contact-title {
    font-size: 2.2rem;
  }

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

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {

  /* === Global === */
  section {
    padding: 40px 0;
  }

  body {
    line-height: 1.6;
  }

  /* === Navigation === */
  .navbar-fixed,
  nav,
  nav.scrolled {
    height: 56px;
    line-height: 56px;
  }

  .brand-logo img,
  nav.scrolled .brand-logo img {
    height: 36px;
    margin-top: 10px;
  }

  nav .nav-wrapper {
    padding: 0 12px;
  }

  /* === Hero Section === */
  .hero-section {
    padding: 40px 0 50px;
    min-height: auto;
    height: auto !important;
    overflow: visible;
  }

  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 20px;
  }

  .hero-text-col {
    padding-right: 0;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.2rem !important;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .badge-pill {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    display: flex !important;
    position: relative;
    z-index: 10;
  }

  .btn-creative {
    padding: 10px 22px;
    font-size: 0.8rem;
    border-radius: 6px;
  }

  .stats-row {
    justify-content: center;
    gap: 25px;
    padding-top: 18px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .visual-wrapper {
    width: 100%;
    max-width: 260px;
    height: 260px;
    margin: 0 auto;
  }

  .main-image-frame {
    border-radius: 24px;
    border-width: 3px;
    transform: rotate(-3deg);
  }

  .deco-circle {
    width: 180px;
    height: 180px;
  }

  .deco-dots {
    width: 60px;
    height: 60px;
  }

  /* === Section Titles === */
  .section-title {
    font-size: 1.8rem !important;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }

  .section-title::after {
    height: 3px;
    margin-top: 8px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  /* === Intro / Stats Section === */
  #intro {
    padding: 35px 0 !important;
  }

  .stat-box {
    padding: 10px 8px;
  }

  .stat-number {
    font-size: 1.8rem !important;
  }

  .stat-label {
    font-size: 0.8rem !important;
    letter-spacing: 0.5px;
  }

  /* === Glass Cards (Services on Index) === */
  .glass-card {
    padding: 20px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .glass-card h4 {
    font-size: 1.2rem !important;
  }

  .glass-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .icon-blob {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }

  .icon-blob i {
    font-size: 1.8rem;
  }

  .btn-dynamic {
    font-size: 0.9rem;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
  }

  /* === About Section === */
  .silvertech-about {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .about-grid {
    gap: 30px;
    margin-bottom: 50px;
  }

  .about-image-wrapper {
    padding: 10px;
  }

  .experience-badge {
    padding: 18px;
    min-width: 120px;
    bottom: -18px;
    right: -18px;
  }

  .experience-badge .years {
    font-size: 2rem;
  }

  .experience-badge .text {
    font-size: 0.8rem;
  }

  .about-text-content {
    padding-right: 0;
  }

  .subsection-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .lead-text {
    font-size: 1rem;
    padding-left: 14px;
    margin-bottom: 15px;
  }

  .about-text-content p {
    font-size: 0.95rem;
    margin-bottom: 14px;
    line-height: 1.6;
  }

  .approved-badge {
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  /* MV Cards */
  .mv-grid {
    gap: 20px;
    margin-bottom: 50px;
  }

  .mv-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .mv-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .card-icon-bg {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .card-icon-bg i {
    font-size: 24px;
  }

  /* Why Choose Us */
  .why-us-grid {
    gap: 15px;
    margin-top: 30px;
  }

  .feature-item {
    padding: 20px 14px;
    border-radius: 12px;
  }

  .feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .feature-item p {
    font-size: 0.85rem;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .feature-icon i {
    font-size: 26px;
  }

  /* === About Graphic Section === */
  .about-graphic-container {
    height: 320px;
    margin-top: 20px;
    border-radius: 20px;
  }

  .experience-badge-graphic {
    padding: 16px;
    min-width: 130px;
    bottom: 15px;
    left: 15px;
    border-radius: 16px;
  }

  .experience-badge-graphic .years {
    font-size: 2rem;
  }

  .experience-badge-graphic .text {
    font-size: 0.85rem;
  }

  /* === History Section === */
  .history-section {
    padding: 30px 20px;
    margin: 40px 0;
    border-radius: 14px;
  }

  .history-bg-icon {
    font-size: 8rem;
  }

  /* === Contact Section === */
  .contact-section {
    padding: 40px 0;
  }

  .contact-title {
    font-size: 1.8rem !important;
    margin-bottom: 10px;
  }

  .contact-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .contact-card {
    padding: 24px 16px;
    margin-bottom: 16px;
    border-radius: 14px;
  }

  .contact-card h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .contact-card p {
    font-size: 0.9rem;
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .contact-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }

  .contact-icon {
    font-size: 1.6rem;
  }

  .contact-link {
    font-size: 0.95rem;
  }

  .map-section,
  .quick-contact-form {
    padding: 20px;
    border-radius: 12px;
  }

  .map-section h5,
  .quick-contact-form h5 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .contact-form .input-field input,
  .contact-form .input-field textarea {
    padding: 12px;
    font-size: 0.9rem;
  }

  .form-actions .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .contact-footer {
    padding: 24px 14px;
    border-radius: 14px;
  }

  .contact-footer h6 {
    font-size: 1rem;
  }

  .contact-footer p {
    font-size: 0.85rem;
  }

  /* === CTA Section === */
  .cta-section {
    padding: 40px 0;
  }

  .cta-section h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .cta-section p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .cta-btn {
    font-size: 0.85rem;
    padding: 0 22px;
    height: 44px;
    line-height: 44px;
    letter-spacing: 0.5px;
  }

  /* === Page Header (Sub-pages) === */
  .page-header {
    padding: 100px 0 65px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-top: -56px;
  }

  .page-header h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  .page-header p {
    font-size: 1rem;
    margin-top: 10px;
    letter-spacing: 0.3px;
    line-height: 1.4;
  }

  /* === Partners / Logo Slider === */
  .logo-slider {
    padding: 25px 0;
  }

  /* === Footer === */
  .modern-footer {
    padding-top: 28px;
    padding-bottom: 12px;
  }

  .footer-logo h5 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .footer-desc {
    font-size: 0.85rem;
    margin-bottom: 12px;
    max-width: 100%;
    line-height: 1.5;
  }

  .footer-heading {
    margin-top: 18px;
    margin-bottom: 12px;
    font-size: 1rem;
    padding-bottom: 8px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

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

  .footer-contact li {
    margin-bottom: 8px;
    font-size: 0.85rem;
  }

  .footer-contact i {
    font-size: 16px;
    margin-right: 10px;
  }

  .footer-social {
    gap: 10px;
  }

  .social-btn {
    width: 34px;
    height: 34px;
  }

  .footer-bottom {
    margin-top: 16px;
    padding-top: 12px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .copyright {
    font-size: 0.8rem;
  }

  /* === Client Logos === */
  .client-logo-container {
    width: 110px;
    height: 75px;
    padding: 4px;
  }

  /* === General Buttons === */
  .btn-large {
    font-size: 0.9rem !important;
    padding: 0 20px !important;
    height: 42px;
    line-height: 42px;
  }

  /* Inline style overrides for index.html intro section */
  #intro .flow-text {
    font-size: 0.95rem !important;
  }
}

/* ---------- SMALL MOBILE (max-width: 480px) ---------- */
@media (max-width: 480px) {

  /* Even smaller typography */
  .hero-title {
    font-size: 1.8rem !important;
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  .section-title {
    font-size: 1.5rem !important;
  }

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

  /* Hero */
  .hero-section {
    padding: 30px 0 40px;
  }

  .visual-wrapper {
    max-width: 200px;
    height: 200px;
  }

  .main-image-frame {
    border-radius: 18px;
    border-width: 2px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .btn-creative {
    width: 100%;
    max-width: 220px;
    padding: 10px 18px;
    font-size: 0.78rem;
    justify-content: center;
  }

  .stats-row {
    gap: 18px;
  }

  .stat-num {
    font-size: 1.3rem;
  }

  .deco-circle,
  .deco-dots {
    display: none;
  }

  /* Stats */
  .stat-number {
    font-size: 1.5rem !important;
  }

  .stat-box {
    padding: 6px 4px;
  }

  /* Cards */
  .glass-card {
    padding: 16px 12px;
  }

  .glass-card h4 {
    font-size: 1.05rem !important;
  }

  .glass-card p {
    font-size: 0.85rem;
  }

  /* About */
  .experience-badge {
    padding: 14px;
    min-width: 100px;
    bottom: -14px;
    right: -14px;
  }

  .experience-badge .years {
    font-size: 1.6rem;
  }

  .experience-badge .text {
    font-size: 0.7rem;
  }

  .subsection-title {
    font-size: 1.2rem;
  }

  .lead-text {
    font-size: 0.9rem;
  }

  .about-text-content p {
    font-size: 0.88rem;
  }

  /* MV Cards */
  .mv-card {
    padding: 22px 16px;
  }

  .mv-card h3 {
    font-size: 1.15rem;
  }

  .mv-card p {
    font-size: 0.85rem;
  }

  /* Features */
  .feature-item {
    padding: 16px 12px;
  }

  .feature-item h4 {
    font-size: 0.95rem;
  }

  .feature-item p {
    font-size: 0.8rem;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
  }

  .feature-icon i {
    font-size: 22px;
  }

  /* About Graphic */
  .graphic-icon-float {
    display: none;
  }

  .about-graphic-container {
    height: auto;
    padding: 20px;
    background: transparent;
    border-radius: 14px;
  }

  .about-graphic-pattern,
  .graphic-shape {
    display: none;
  }

  .experience-badge-graphic {
    position: relative;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    transform: none;
    width: 100%;
    max-width: 200px;
    padding: 16px;
  }

  .experience-badge-graphic .years {
    font-size: 1.8rem;
  }

  .experience-badge-graphic .text {
    font-size: 0.8rem;
  }

  /* Page Headers */
  .page-header {
    padding: 90px 0 55px;
  }

  .page-header h1 {
    font-size: 1.6rem !important;
  }

  .page-header p {
    font-size: 0.88rem;
    margin-top: 8px;
  }

  /* Contact */
  .contact-title {
    font-size: 1.5rem !important;
  }

  .contact-card {
    padding: 18px 12px;
  }

  .contact-card h5 {
    font-size: 1.05rem;
  }

  .contact-card p {
    font-size: 0.85rem;
  }

  .contact-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .contact-icon {
    font-size: 1.4rem;
  }

  .map-container {
    padding-bottom: 70%;
  }

  /* CTA */
  .cta-section {
    padding: 30px 0;
  }

  .cta-section h3 {
    font-size: 1.2rem;
  }

  .cta-section p {
    font-size: 0.85rem;
  }

  .cta-btn {
    font-size: 0.8rem;
    padding: 0 18px;
    height: 40px;
    line-height: 40px;
  }

  /* History */
  .history-section {
    padding: 24px 16px;
    margin: 30px 0;
  }

  /* Footer */
  .footer-logo h5 {
    font-size: 1.2rem;
  }

  .footer-desc {
    font-size: 0.8rem;
  }

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

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-contact li {
    font-size: 0.8rem;
  }

  .copyright {
    font-size: 0.75rem;
  }

  /* Buttons */
  .btn-large {
    font-size: 0.82rem !important;
    padding: 0 16px !important;
    height: 38px;
    line-height: 38px;
  }

  .btn-dynamic {
    font-size: 0.82rem;
    height: 38px;
    line-height: 38px;
  }

  /* Client logos */
  .client-logo-container {
    width: 90px;
    height: 60px;
  }
}