/* Import Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

html, body {
  width: 100%;
  position: relative;
  /* Removed overflow-x: hidden here as it can interfere with position: sticky */
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
}

/* Navbar Top Section */
.navbar {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-top {
  background: linear-gradient(135deg, #0052a3 0%, #002e5c 100%);
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: white;
  text-decoration: none;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  gap: 30px;
  font-weight: 500;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white !important; /* Ensure text is white */
}

.contact-info span i {
  color: white !important; /* Ensure icons are white */
  font-size: 14px;
}

/* Navbar Main Section */
.navbar-main {
  padding: 10px 0;
  background: white;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px; /* Unified padding for perfect alignment */
}

.logo img, .custom-logo {
  max-height: 55px !important;
  width: auto !important;
  transition: transform 0.3s ease;
}

.logo img:hover, .custom-logo:hover {
  transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a,
.dropbtn {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, #0066cc, #00a8ff);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover,
.dropbtn:hover {
  color: #0066cc;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 5px;
}



.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-content a {
  display: block;
  padding: 14px 20px;
  color: #2c3e50;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-content a:hover {
  background: linear-gradient(90deg, #f0f8ff 0%, #e6f3ff 100%);
  border-left-color: #0066cc;
  padding-left: 25px;
  color: #0066cc;
}

/* CTA Container */
.cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* CTA Button */
.quote-btn {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  font-family: 'Inter', sans-serif;
}

.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
  background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
}

.mobile-only-link {
  display: none !important;
}

.faq-nav-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #0066cc;
  border: 2px solid #0066cc;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.1);
}

.faq-nav-btn:hover {
  background: #0066cc;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 102, 204, 0.2);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #2c3e50;
  cursor: pointer;
  transition: color 0.3s ease;
  flex-shrink: 0;
  padding: 5px;
}

.mobile-toggle:hover {
  color: #0066cc;
}

/* Responsive Design */
@media (max-width: 968px) {
  .navbar-top {
    display: none;
  }

  .contact-info {
    flex-direction: column;
    gap: 8px;
  }

  .navbar-main {
    padding: 15px 0;
  }

  .navbar-container {
    padding: 0 20px;
    position: relative;
    justify-content: flex-end;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 75px;
    flex-direction: column;
    background: white;
    width: 100%;
    padding: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
    gap: 0;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a,
  .dropdown {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    margin-top: 0;
    border-radius: 0;
    background: #f8f9fa;
  }

  .dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .cta {
    display: none;
  }

  .logo img, .custom-logo {
    max-height: 45px !important;
  }

  .mobile-only-link {
    display: block !important;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 0 15px;
  }

  .logo img, .custom-logo {
    max-height: 40px !important;
  }

  .navbar-top {
    font-size: 12px;
    padding: 10px 15px;
  }

  .social-icons a {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .quote-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}



/* Hero Slider Section */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual Slide */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Slide Background */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 7s ease-out;
}

.slide.active .slide-bg {
  animation: kenBurns 7s ease-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Slide Overlay */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 40%;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 102, 204, 0.65) 50%);
  z-index: 1;
}

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}

.content-wrapper {
  max-width: 900px;
  text-align: center;
}

/* Slide Label */
.slide-label {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 25px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.slide.active .slide-label {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

/* Slide Title */
.slide-title {
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

/* Slide Description */
.slide-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
  font-weight: 300;
}

.slide.active .slide-description {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide Buttons */
.slide-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
}

.slide.active .slide-buttons {
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

.btn-primary,
.btn-secondary {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  color: #0066cc;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 40px;
}

.slider-arrow.next {
  right: 40px;
}

/* Pagination Dots */
.slider-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.dot.active {
  background: #fff;
  width: 40px;
  border-radius: 10px;
}

/* Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #fff 0%, #00a8ff 100%);
  width: 0%;
  animation: progressAnimation 5s linear;
}

.slide.active ~ .slider-progress .progress-bar {
  animation: progressAnimation 5s linear;
}

@keyframes progressAnimation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-slider {
    height: 80vh;
    min-height: 500px;
  }

  .slide-title {
    font-size: 42px;
  }

  .slide-description {
    font-size: 18px;
  }

  .slider-arrow {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .slider-arrow.prev {
    left: 20px;
  }

  .slider-arrow.next {
    right: 20px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 30px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .hero-slider {
    height: 70vh;
    min-height: 450px;
  }

  .slide-title {
    font-size: 32px;
  }

  .slide-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .slide-label {
    font-size: 11px;
    padding: 8px 18px;
    letter-spacing: 2px;
  }

  .slide-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 14px 25px;
    font-size: 13px;
  }

  .slider-arrow {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .slider-arrow.prev {
    left: 15px;
  }

  .slider-arrow.next {
    right: 15px;
  }

  .slider-pagination {
    bottom: 30px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 30px;
  }
}

/* Who We Are Section */
.who-we-are-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 5%;
  position: relative;
}

.who-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* Left Column */
.who-left {
  position: sticky;
  top: 150px;
}

.section-label {
  display: inline-block;
  color: #0066cc;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-transform: capitalize;
  position: relative;
  padding-left: 0;
}

.section-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: #2c3e50;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Right Column */
.who-right {
  animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.who-text {
  font-size: 16px;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 24px;
  text-align: justify;
  font-weight: 400;
}

.who-text:last-of-type {
  margin-bottom: 40px;
}

/* Button */
.who-button-wrapper {
  margin-top: 35px;
}

.who-btn {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  text-transform: capitalize;
  font-family: 'Inter', sans-serif;
}

.who-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
}

.who-btn:active {
  transform: translateY(-1px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* Scroll Animation */
.who-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.who-text:nth-child(1) {
  animation-delay: 0.2s;
}

.who-text:nth-child(2) {
  animation-delay: 0.3s;
}

.who-text:nth-child(3) {
  animation-delay: 0.4s;
}

.who-text:nth-child(4) {
  animation-delay: 0.5s;
}

.who-button-wrapper {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards 0.6s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .who-container {
    gap: 60px;
  }

  .section-heading {
    font-size: 40px;
  }

  .who-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .who-we-are-section {
    padding: 60px 5%;
  }

  .who-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .who-left {
    position: relative;
    top: 0;
  }

  .section-heading {
    font-size: 32px;
  }

  .section-label {
    font-size: 14px;
  }

  .who-text {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }

  .who-btn {
    padding: 12px 35px;
    font-size: 15px;
    width: 100%;
    max-width: 300px;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .who-we-are-section {
    padding: 50px 5%;
  }

  .section-heading {
    font-size: 28px;
  }

  .who-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .who-button-wrapper {
    margin-top: 25px;
  }

  .who-btn {
    width: 100%;
    max-width: 100%;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 15px;
    right: 15px;
  }
}

/* Translator Floating Button */
.translator-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(0, 82, 163, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  outline: none;
}

.translator-float:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 30px rgba(0, 82, 163, 0.6);
}

.translator-float:active {
  transform: scale(0.95);
}

/* Translator Popup */
.translator-popup {
  position: fixed;
  bottom: 105px;
  left: 30px;
  width: 280px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.translator-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.translator-header {
  padding: 20px;
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.translator-header span {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.close-translator {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.close-translator:hover {
  opacity: 1;
}

.language-options {
  padding: 10px;
  max-height: 350px;
  overflow-y: auto;
}

.language-options::-webkit-scrollbar {
  width: 6px;
}

.language-options::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 10px;
}

.lang-option {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 12px;
  margin-bottom: 2px;
}

.lang-option:hover {
  background: #f0f7ff;
  color: #0066cc;
  padding-left: 20px;
}

.lang-option .lang-name {
  font-size: 15px;
  font-weight: 500;
}

/* Responsive Translator */
@media (max-width: 768px) {
  .translator-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 20px;
    left: 20px;
  }
  .translator-popup {
    bottom: 85px;
    left: 20px;
    width: calc(100vw - 40px);
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .translator-float {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 15px;
    left: 15px;
  }
  .translator-popup {
    bottom: 75px;
    left: 15px;
  }
}

/* Hide Google's default bar */
.goog-te-banner-frame.skiptranslate, 
.goog-te-gadget-icon {
  display: none !important;
}

body {
  top: 0px !important;
}

.goog-te-menu-value {
  display: none !important;
}

/* Statistics Counter Section */
.stats-section {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  padding: 60px 5%;
  position: relative;
  overflow: hidden;
}

/* Decorative background pattern */
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px; /* Unified padding for perfect alignment */
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Stat Item */
.stat-item {
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.stat-item:nth-child(1) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.4s;
}

.stat-item:nth-child(5) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stat Number */
.stat-number {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: '+';
  position: absolute;
  right: -25px;
  top: 0;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.8);
}

.stat-item:nth-child(3) .stat-number::after {
  content: '%';
  right: -30px;
}

/* Stat Label */
.stat-label {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

/* Stat Divider */
.stat-divider {
  width: 2px;
  height: 80px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 20%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.3) 80%,
    transparent 100%
  );
  position: relative;
}

/* Animation for counting effect */
.stat-number.counting {
  animation: pulse 0.5s ease;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stats-container {
    gap: 40px;
  }

  .stat-number {
    font-size: 60px;
  }

  .stat-number::after {
    font-size: 50px;
    right: -22px;
  }

  .stat-label {
    font-size: 16px;
  }

  .stat-divider {
    height: 70px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 50px 5%;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 20px;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 56px;
  }

  .stat-number::after {
    font-size: 46px;
    right: -20px;
  }

  .stat-label {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 40px 5%;
  }

  .stats-container {
    gap: 40px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-number::after {
    font-size: 40px;
    right: -18px;
  }

  .stat-label {
    font-size: 15px;
  }
}

/* Hover effect */
.stat-item:hover .stat-number {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-label {
  color: #ffffff;
  transition: color 0.3s ease;
}


/* Customer Testimonial Section */
.testimonial-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.testimonial-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Testimonial Item */
.testimonial-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.6s ease-in-out;
}

.testimonial-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 1;
}

.testimonial-item.exit-left {
  transform: translateX(-100%);
}

.testimonial-item.exit-right {
  transform: translateX(100%);
}

/* Testimonial Card */
.testimonial-card {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  border-radius: 30px;
  padding: 60px 80px;
  box-shadow: 0 10px 40px rgba(0, 102, 204, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInScale 0.8s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Decorative background pattern */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

/* Quote Icon */
.quote-icon {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 20px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/* Testimonial Author */
.testimonial-author {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

/* Testimonial Navigation */
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.testimonial-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid #0066cc;
  color: #0066cc;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.testimonial-arrow:hover {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.testimonial-arrow:active {
  transform: scale(0.95);
}

/* Testimonial Dots */
.testimonial-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d1d1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonial-dot:hover {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  width: 35px;
  border-radius: 10px;
  border-color: #0066cc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonial-card {
    padding: 50px 60px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .testimonial-author {
    font-size: 20px;
  }

  .quote-icon {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 5%;
  }

  .testimonial-card {
    padding: 40px 35px;
    border-radius: 25px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .testimonial-author {
    font-size: 18px;
  }

  .quote-icon {
    font-size: 45px;
    margin-bottom: 20px;
  }

  .testimonial-nav {
    gap: 20px;
    margin-top: 40px;
  }

  .testimonial-arrow {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 50px 5%;
  }

  .testimonial-card {
    padding: 35px 25px;
    border-radius: 20px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .testimonial-author {
    font-size: 17px;
  }

  .quote-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .testimonial-nav {
    gap: 15px;
    margin-top: 35px;
  }

  .testimonial-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonial-dot {
    width: 10px;
    height: 10px;
  }

  .testimonial-dot.active {
    width: 30px;
  }
}
/* Our Brands Section */
.brands-section {
  background: #ffffff;
  padding: 80px 5% 100px;
  position: relative;
  overflow: hidden;
}

.brands-wrapper,
.brands-served-container {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .brands-wrapper,
  .brands-served-container {
    padding: 0 20px !important;
  }
}

/* Brands Heading */
.brands-heading {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Brands Slider Container */
.brands-slider-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 50px;
}

/* Gradient Fade Effect on Edges */
.brands-slider-container::before,
.brands-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands-slider-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.brands-slider-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

/* Brands Slider */
.brands-slider {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

/* Pause animation on hover */
.brands-slider-container:hover .brands-slider {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Brand Item */
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 100px;
  padding: 20px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.brand-item img {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s ease;
}

.brand-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* Brands Dots Navigation */
.brands-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d1d1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.brand-dot:hover {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  transform: scale(1.2);
}

.brand-dot.active {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  width: 30px;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .brands-slider {
    gap: 60px;
    animation-duration: 25s;
  }

  .brand-item {
    min-width: 180px;
  }

  .brand-item img {
    max-width: 160px;
    max-height: 70px;
  }
}

@media (max-width: 768px) {
  .brands-section {
    padding: 60px 5% 80px;
  }

  .brands-heading {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .brands-slider {
    gap: 50px;
    animation-duration: 20s;
  }

  .brand-item {
    min-width: 150px;
    height: 80px;
    padding: 15px;
  }

  .brand-item img {
    max-width: 140px;
    max-height: 60px;
  }

  .brands-slider-container::before,
  .brands-slider-container::after {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .brands-section {
    padding: 50px 5% 70px;
  }

  .brands-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .brands-slider {
    gap: 40px;
    animation-duration: 18s;
  }

  .brand-item {
    min-width: 130px;
    height: 70px;
    padding: 10px;
  }

  .brand-item img {
    max-width: 120px;
    max-height: 50px;
  }

  .brands-slider-container::before,
  .brands-slider-container::after {
    width: 50px;
  }

  .brand-dot {
    width: 8px;
    height: 8px;
  }

  .brand-dot.active {
    width: 25px;
  }
}

/* Alternative: Manual Slide Control (Optional) */
.brands-slider.manual-control {
  animation: none;
  transform: translateX(0);
  transition: transform 0.8s ease-in-out;
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .brands-slider {
    animation-duration: 60s;
  }
  
  .brand-item img {
    transition: none;
  }
}


/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
  margin: 0 auto;
}

/* Left Side - Contact Form */
.contact-left {
  background: linear-gradient(135deg, #3d5168 0%, #2c3e50 100%);
  padding: 80px 8%;
  position: relative;
}

.contact-left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-heading {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0066cc;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #7f8c8d;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  color: white;
  border: none;
  padding: 16px 50px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  text-transform: capitalize;
  font-family: 'Inter', sans-serif;
  width: 100%;
  max-width: 250px;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Form Messages */
.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.error-message {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Right Side - Contact Info */
.contact-right {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.contact-right::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-heading-right {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.contact-phone {
  margin-bottom: 40px;
}

.contact-phone a {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-phone a:hover {
  transform: scale(1.05);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
}

.contact-detail-item i {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  width: 24px;
}

.contact-detail-item a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-left,
  .contact-right {
    padding: 60px 6%;
  }

  .contact-heading {
    font-size: 36px;
  }

  .contact-heading-right {
    font-size: 28px;
  }

  .contact-phone a {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .contact-right {
    padding: 50px 5%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-heading {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .contact-heading-right {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .contact-phone a {
    font-size: 36px;
  }

  .submit-btn {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-left,
  .contact-right {
    padding: 40px 5%;
  }

  .contact-heading {
    font-size: 28px;
  }

  .contact-heading-right {
    font-size: 24px;
  }

  .contact-phone a {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .form-input,
  .form-textarea {
    padding: 14px 16px;
    font-size: 14px;
  }

  .contact-detail-item {
    font-size: 14px;
  }

  .contact-detail-item i {
    font-size: 18px;
  }
}

/* product */

/* Products Section */
.products-section {
  background: linear-gradient(180deg, #e8ecef 0%, #f5f7f9 100%);
  padding: 100px 5%;
  position: relative;
}

.products-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section Header */
.products-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease;
}

.products-heading {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.products-description {
  font-size: 17px;
  line-height: 1.8;
  color: #5a6c7d;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 400;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .products-section {
    padding: 60px 20px;
  }
}

/* Product Card */
.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.product-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Product Overlay */
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

/* Product Info */
.product-info {
  padding: 25px 20px;
  text-align: center;
  background: #ffffff;
  position: relative;
}

.product-title {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  transition: color 0.3s ease;
  letter-spacing: -0.3px;
}

.product-card:hover .product-title {
  color: #0066cc;
}

/* View All Button */
.products-cta {
  text-align: center;
}

.view-all-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  color: white;
  padding: 16px 50px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  text-transform: capitalize;
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 968px) {
  .products-section {
    padding: 80px 5%;
  }

  .products-heading {
    font-size: 36px;
  }

  .products-description {
    font-size: 16px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-image {
    height: 240px;
  }

  .product-info {
    padding: 20px 15px;
  }

  .product-title {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .products-section {
    padding: 60px 4%;
  }

  .products-heading {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .products-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .products-header {
    margin-bottom: 30px;
  }

  /* 2 columns on most phones */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 30px;
  }

  .product-image {
    height: 160px;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-info {
    padding: 14px 10px;
  }

  .product-title {
    font-size: 14px;
  }

  .view-all-btn {
    padding: 13px 30px;
    font-size: 14px;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 380px) {
  /* Very small phones — drop to 1 column */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-image {
    height: 200px;
  }
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 2px solid #0066cc;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10; /* Added z-index to ensure it shows over images and overlays */
}

.product-card:hover::before {
  opacity: 1;
}

/* Loading skeleton (optional) */
.product-card.loading {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Footer Section */
.footer-section {
  background: #f8f9fa;
  padding-top: 80px;
  position: relative;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px; /* Unified padding for perfect alignment */
  display: grid;
  grid-template-columns: 2.5fr 1.5fr 1.5fr;
  gap: 60px;
  padding-bottom: 50px;
}

/* Footer Columns */
.footer-column {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* Footer About - Column 1 */
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img,
.footer-logo .custom-logo-link img {
  height: 55px; /* Match header logo height */
  width: auto;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
}

.footer-logo img:hover,
.footer-logo .custom-logo-link img:hover {
  transform: scale(1.1); /* Match header hover effect */
}

.footer-description {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6c7d;
  margin: 0;
}

/* Footer Headings */
.footer-heading {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  letter-spacing: -0.3px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #5a6c7d;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: #0066cc;
  padding-left: 8px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 8px;
  left: -10px;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #5a6c7d;
  line-height: 1.6;
}

.contact-item i {
  color: #0066cc;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item a {
  color: #5a6c7d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #0066cc;
}

/* Footer Bottom */
.footer-bottom {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  border-color: #0066cc;
  transform: translateY(-3px);
}

.footer-social a i {
  font-size: 16px;
}

/* Footer Copyright */
.footer-copyright {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.footer-copyright p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 40px;
  }
}

@media (max-width: 968px) {
  .footer-section {
    padding-top: 60px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer-section {
    padding-top: 50px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 30px;
  }

  .footer-about {
    grid-column: 1;
  }

  .footer-logo img {
    max-width: 180px;
  }

  .footer-heading {
    font-size: 18px;
  }

  .footer-description {
    font-size: 14px;
  }

  .footer-links a,
  .contact-item {
    font-size: 14px;
  }

  .contact-item {
    margin-bottom: 18px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-copyright {
    font-size: 13px;
  }
}

/* Divider Line (Optional) */
.footer-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
  margin: 40px 0;
}

/* Scroll to Top Button (Optional Enhancement) */
.scroll-to-top {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Page Hero Sections (About, Products, Categories) */
.about-hero-section,
.products-hero-section {
  position: relative;
  width: 100%;
  min-height: 400px; /* Use min-height instead of fixed height */
  padding: 80px 20px; /* Add padding for content spacing */
  background-image: url('./img/about-hero-bg.jpg'); /* Default BG */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero Overlay - Blue Gradient */
.about-hero-overlay,
.products-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(23, 87, 184, 0.88) 0%, rgba(19, 69, 150, 0.85) 50%, rgba(6, 46, 86, 0.82) 100%);
  z-index: 1;
}

/* Alternative: Solid blue overlay */
/* 
.about-hero-overlay {
  background: rgba(0, 102, 204, 0.85);
}
*/

/* Alternative: Navy blue overlay */
/*
.about-hero-overlay {
  background: linear-gradient(135deg, rgba(52, 73, 94, 0.85) 0%, rgba(0, 102, 204, 0.75) 100%);
}
*/

/* Hero Content */
.about-hero-content,
.products-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInScale 0.8s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.about-hero-title,
.products-hero-title {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* About Content Section */
.about-content-section {
  background: #ffffff;
  padding: 100px 5%;
}

.about-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* About Introduction */
.about-intro {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease;
}

.about-heading {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.about-text {
  font-size: 17px;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* About Cards Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.about-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 50px 35px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.about-card:nth-child(1) { animation-delay: 0.2s; }
.about-card:nth-child(2) { animation-delay: 0.3s; }
.about-card:nth-child(3) { animation-delay: 0.4s; }

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.about-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-icon i {
  font-size: 36px;
  color: #ffffff;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #5a6c7d;
  margin: 0;
}

/* Why Choose Section */
.why-choose-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 60px;
  border-radius: 30px;
  margin-top: 60px;
}

.why-choose-section .about-heading {
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  animation: fadeInLeft 0.6s ease forwards;
  opacity: 0;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  font-size: 28px;
  color: #ffffff;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: #5a6c7d;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-hero-title {
    font-size: 60px;
  }

  .about-heading {
    font-size: 36px;
  }

  .about-grid {
    gap: 30px;
  }

  .why-choose-section {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    min-height: 300px;
    height: auto;
    padding: 60px 20px;
  }

  .about-hero-title {
    font-size: 40px;
    line-height: 1.2;
  }

  .about-content-section {
    padding: 60px 5%;
  }

  .about-heading {
    font-size: 32px;
  }

  .about-text {
    font-size: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .about-card {
    padding: 40px 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-choose-section {
    padding: 50px 30px;
    border-radius: 20px;
  }

  .why-choose-section .about-heading {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .about-hero-section,
  .product-detail-hero {
    min-height: 200px;
    height: auto;
    padding: 40px 15px;
  }

  .about-hero-title,
  .product-detail-hero-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .about-content-section {
    padding: 50px 5%;
  }

  .about-heading {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .about-text {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .about-intro {
    margin-bottom: 50px;
  }

  .about-card {
    padding: 35px 25px;
    border-radius: 15px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
  }

  .card-icon i {
    font-size: 32px;
  }

  .card-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .card-text {
    font-size: 15px;
  }

  .why-choose-section {
    padding: 40px 25px;
    margin-top: 50px;
  }

  .feature-item {
    gap: 20px;
  }

  .feature-icon {
    width: 55px;
    height: 55px;
  }

  .feature-icon i {
    font-size: 24px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-text {
    font-size: 14px;
  }
}

/* ........ */

/* Product Detail Hero */
.product-detail-hero {
  position: relative;
  width: 100%;
  min-height: 350px;
  background-image: url('./img/about-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.product-detail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(23, 87, 184, 0.9) 0%, rgba(19, 69, 150, 0.85) 50%, rgba(6, 46, 86, 0.8) 100%);
  z-index: 1;
}

.product-detail-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 1000px;
  animation: fadeInScale 0.8s ease;
}

.product-detail-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.product-detail-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  opacity: 0.9;
}

.product-detail-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-detail-breadcrumb a:hover {
  color: #0066cc;
}

.product-detail-breadcrumb span:last-child {
  color: #0066cc;
  font-weight: 600;
}

/* Product Detail Section */
.product-detail-section {
  background: #ffffff;
  padding: 60px 5%;
}

.product-detail-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0066cc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.back-link:hover {
  gap: 12px;
  color: #0052a3;
}

/* Product Detail Grid */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start; /* Ensure grid items don't stretch to full height, allowing sticky to work */
}

/* Product Image Container */
.product-image-container {
  position: sticky;
  top: 130px; /* Adjusted top to account for sticky navbar height */
  align-self: start;
  z-index: 10;
}

.product-image-main {
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid transparent;
}

.product-image-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.25);
  border-color: #0066cc;
}

.product-image-main img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 500px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-image-main:hover img {
  transform: scale(1.08);
}

.product-image-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-thumb {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.gallery-thumb:hover {
  border-color: #0066cc;
  transform: scale(1.05);
}

/* Product Info Container */
.product-info-container {
  animation: fadeInRight 0.8s ease;
}

.product-category-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-detail-title {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.product-model {
  font-size: 16px;
  color: #5a6c7d;
  margin-bottom: 20px;
}

.product-description {
  font-size: 18px;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 35px;
}

/* Product Features Section */
.product-features-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.features-heading {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #5a6c7d;
  line-height: 1.6;
}

.product-features-list li i {
  color: #0066cc;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Product Specifications */
.product-specs-section {
  margin-bottom: 35px;
}

.specs-heading {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.spec-item {
  display: flex;
  padding: 12px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #0066cc;
}

.spec-label {
  font-weight: 600;
  color: #2c3e50;
  min-width: 150px;
}

.spec-value {
  color: #5a6c7d;
}

/* CTA Buttons */
.product-cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.btn-primary-large,
.btn-secondary-large {
  flex: 1;
  padding: 16px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
}

.btn-primary-large {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
}

.btn-secondary-large {
  background: white;
  color: #0066cc;
  border: 2px solid #0066cc;
}

.btn-secondary-large:hover {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  color: white;
  transform: translateY(-3px);
}

/* Product Tabs Section */
.product-tabs-section {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
  margin-top: 60px;
}

.tabs-header {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 2px solid #e9ecef;
}

.tab-button {
  padding: 15px 30px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #5a6c7d;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.tab-button:hover {
  color: #0066cc;
}

.tab-button.active {
  color: #0066cc;
  border-bottom-color: #0066cc;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.tab-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #5a6c7d;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid #e9ecef;
}

.specs-table td {
  padding: 15px 20px;
  font-size: 15px;
}

.spec-key {
  font-weight: 600;
  color: #2c3e50;
  width: 40%;
}

.spec-val {
  color: #5a6c7d;
}

.applications-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.applications-list li {
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  border-left: 3px solid #0066cc;
  color: #5a6c7d;
}

/* Related Products Section */
.related-products-section {
  background: #ffffff;
  padding: 80px 5%;
}

.related-products-container {
  max-width: 1400px;
  margin: 0 auto;
}

.related-heading {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 50px;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.related-product-card {
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.related-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.related-product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-product-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  padding: 20px 15px 15px;
  margin: 0;
}

.view-details-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 15px 20px;
  transition: all 0.3s ease;
}

.view-details-btn:hover {
  background: #0052a3;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-detail-grid {
    gap: 40px;
  }

  .product-detail-title {
    font-size: 36px;
  }

  .related-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-detail-hero {
    min-height: 250px;
    height: auto;
    padding: 60px 20px;
  }

  .product-detail-hero-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .product-detail-breadcrumb {
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-image-container {
    position: relative;
    top: 0;
  }

  .product-detail-title {
    font-size: 32px;
  }

  .product-description {
    font-size: 16px;
  }

  .product-cta-buttons {
    flex-direction: column;
  }

  .tabs-header {
    overflow-x: auto;
    gap: 10px;
  }

  .tab-button {
    padding: 12px 20px;
    font-size: 15px;
    white-space: nowrap;
  }

  .product-tabs-section {
    padding: 30px 20px;
  }

  .applications-list {
    grid-template-columns: 1fr;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .product-detail-section {
    padding: 40px 5%;
  }

  .product-detail-title {
    font-size: 28px;
  }

  .product-image-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-heading,
  .specs-heading {
    font-size: 20px;
  }

  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .btn-primary-large,
  .btn-secondary-large {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* Contact Page Styles */

/* Option 1: Two Column Card Layout */
.contact-page-section.style-1 {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 5%;
}

.contact-page-container {
  display: grid !important;
  grid-template-columns: 1.25fr 1fr !important;
  gap: 40px !important;
  align-items: stretch !important;
  max-width: 1400px !important;
  margin: 100px auto !important;
  padding: 0 40px !important; /* Unified padding for perfect alignment */
  box-sizing: border-box !important;
}

/* Contact Form Card */
.contact-form-card {
  background: #ffffff;
  padding: 60px;
  border-radius: 35px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-intro {
  margin-bottom: 40px;
  text-align: left;
}

.contact-page-heading {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.contact-page-description {
  font-size: 16px;
  line-height: 1.7;
  color: #5a6c7d;
  margin: 0;
}

/* Form Styles - Perfectly Aligned Grid */
.contact-page-form {
  margin-top: 10px;
}


.wpcf7-form {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 25px 40px !important;
}

/* Name (1st P tag) | Subject (3rd P tag) */
.wpcf7-form p:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
  margin: 0 !important;
}

/* Subject moved to the right of Name */
.wpcf7-form p:nth-of-type(3) {
  grid-column: 2;
  grid-row: 1;
  margin: 0 !important;
}

/* Your email (2nd P tag) - Left Column */
.wpcf7-form p:nth-of-type(2) {
  grid-column: 1;
  grid-row: 2;
  margin: 0 !important;
}

/* Your message - Full width below */
.wpcf7-form p:nth-of-type(4) {
  grid-column: 1 / span 2;
  grid-row: 3;
  margin: 0 !important;
}

/* Center the submit button at the bottom */
.wpcf7-form p:nth-of-type(5) {
  grid-column: 1 / span 2;
  grid-row: 4;
  text-align: center;
  margin-top: 30px !important;
}

/* Global Form Controls Styling */
.wpcf7-form-control:not(.wpcf7-submit) {
  width: 100% !important;
  padding: 14px 18px !important;
  border: 2px solid #eef2f6 !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-family: 'Inter', sans-serif !important;
  color: #2d3748 !important;
  transition: all 0.3s ease !important;
  background: #fdfdfd !important;
  margin-top: 8px !important;
}

.wpcf7-form-control:not(.wpcf7-submit):focus {
  outline: none !important;
  border-color: #0066cc !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1) !important;
}

.wpcf7-textarea {
  min-height: 220px !important; /* Make it match 3 rows of inputs */
  resize: vertical !important;
}

/* Labels */
.wpcf7-form label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 5px;
}

/* Submit Button Custom Styling */
.wpcf7-submit {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%) !important;
  color: white !important;
  padding: 16px 60px !important;
  border: none !important;
  border-radius: 14px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2) !important;
  width: auto !important;
  min-width: 200px;
}

.wpcf7-submit:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 102, 204, 0.3) !important;
}

/* Responsive Form */
@media (max-width: 768px) {
  .wpcf7-form {
    grid-template-columns: 1fr !important;
  }
  .wpcf7-form p:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }
}


/* Contact Details Card - Now Comapct Height */
.contact-details-card {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  padding: 40px 35px; /* Reduced padding to decrease height */
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 102, 204, 0.2);
  color: white;
  height: fit-content; /* Auto-size to content */
}

.contact-details-heading {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 25px; /* Reduced gap to decrease height */
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  font-size: 24px;
  color: white;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-detail-text {
  flex: 1;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 17px;
  line-height: 1.6;
  color: white;
  margin: 0;
  text-decoration: none;
}

.contact-detail-text a:hover {
  text-decoration: underline;
}

/* Option 2: Info Grid with Form Layout */
.contact-page-section.style-2 {
  background: #ffffff;
  padding: 100px 5%;
}

.contact-page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.info-card {
  text-align: left;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-icon i {
  font-size: 28px;
  color: white;
}

.info-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.info-text {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6c7d;
  margin: 0;
}

.info-text a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: #0052a3;
  text-decoration: underline;
}

/* Modern Contact Form */
.contact-form-section {
  background: #f8f9fa;
  padding: 60px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
}

.required {
  color: #e74c3c;
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.name-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field-label {
  font-size: 13px;
  color: #6c757d;
}

.modern-input,
.modern-textarea {
  padding: 14px 18px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #2c3e50;
  transition: all 0.3s ease;
  background: white;
}

.modern-input:focus,
.modern-textarea:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.modern-textarea {
  resize: vertical;
}

/* reCAPTCHA Container */
.recaptcha-container {
  margin: 10px 0;
}

.recaptcha-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  width: fit-content;
}

.recaptcha-box input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.recaptcha-box label {
  font-size: 15px;
  color: #2c3e50;
  cursor: pointer;
}

.recaptcha-logo {
  margin-left: auto;
  padding-left: 30px;
  font-size: 12px;
  color: #6c757d;
  font-weight: 600;
}

.modern-submit-btn {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  color: white;
  padding: 16px 50px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  font-family: 'Inter', sans-serif;
}

.modern-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

/* Contact Page Layout & Map */
.contact-page-container {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-info-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important;
  height: 100%;
}

.contact-details-card {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%) !important;
  color: white !important;
  padding: 40px !important;
  border-radius: 30px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-map-card {
  background: white !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #eef2f6;
  flex-grow: 1;
  min-height: 400px;
}

.contact-map-card iframe {
  border: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .contact-page-container {
    grid-template-columns: 1fr !important;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact-page-section.style-1,
  .contact-page-section.style-2 {
    padding: 60px 5%;
  }

  .contact-form-card,
  .contact-details-card {
    padding: 40px 30px;
    border-radius: 20px;
  }

  .contact-page-heading {
    font-size: 32px;
  }

  .form-row-contact,
  .name-row {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .contact-form-section {
    padding: 40px 30px;
  }

  .info-title {
    font-size: 22px;
  }

  .contact-details-heading {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .contact-form-card,
  .contact-details-card,
  .contact-form-section {
    padding: 30px 20px;
  }

  .contact-page-heading {
    font-size: 28px;
  }

  .contact-page-description {
    font-size: 15px;
  }

  .contact-input,
  .contact-textarea,
  .modern-input,
  .modern-textarea {
    padding: 12px 16px;
    font-size: 14px;
  }

  .contact-submit-btn,
  .modern-submit-btn {
    width: 100%;
    padding: 14px 30px;
  }

  .recaptcha-box {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .recaptcha-logo {
    margin-left: 0;
    padding-left: 0;
  }

  .contact-map {
    height: 300px;
  }
}

.form-status {
  margin-top: 10px;
  font-weight: bold;
  color: green;
  display: none;
}

/* Latest Blog Section */
.latest-blog-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 5%;
  position: relative;
}

.latest-blog-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section Header */
.latest-blog-header {
  text-align: left;
  margin-bottom: 50px;
  animation: fadeInLeft 0.8s ease;
}

.latest-blog-heading {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Blog Grid */
.latest-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

/* Latest Blog Card */
.latest-blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.latest-blog-card:nth-child(1) { animation-delay: 0.1s; }
.latest-blog-card:nth-child(2) { animation-delay: 0.2s; }

.latest-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Blog Card Image */
.latest-blog-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f8f9fa;
}

.latest-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.latest-blog-card:hover .latest-blog-image img {
  transform: scale(1.1);
}

/* Blog Card Content */
.latest-blog-content {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Blog Meta */
.latest-blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #adb5bd;
  flex-wrap: wrap;
}

.latest-blog-date,
.latest-blog-author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.latest-blog-date i,
.latest-blog-author i {
  color: #0066cc;
  font-size: 14px;
}

/* Blog Title */
.latest-blog-title {
  font-size: 26px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.latest-blog-card:hover .latest-blog-title {
  color: #0066cc;
}

/* Blog Excerpt */
.latest-blog-excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: #5a6c7d;
  margin-bottom: 25px;
  flex: 1;
  display: block; /* Fallback */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog Footer */
.latest-blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.latest-read-more {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.latest-read-more:hover {
  gap: 12px;
  color: #0052a3;
}

.latest-read-more i {
  font-size: 12px;
}

/* Read Time */
.latest-read-time {
  font-size: 14px;
  color: #adb5bd;
}

/* Loading Skeleton */
.blog-card-skeleton {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease forwards;
}

.skeleton-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

.skeleton-text {
  height: 20px;
  margin: 20px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 5px;
}

.skeleton-text.short {
  width: 60%;
  margin-bottom: 10px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* View All Button */
.latest-blog-cta {
  text-align: center;
  margin-top: 40px;
}

.view-all-blog-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
  color: white;
  padding: 16px 50px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  font-family: 'Inter', sans-serif;
}

.view-all-blog-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
}

/* Empty State */
.latest-blog-empty {
  text-align: center;
  padding: 60px 20px;
  color: #5a6c7d;
  grid-column: 1 / -1;
}

.latest-blog-empty-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #adb5bd;
}

.latest-blog-empty h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .latest-blog-heading {
    font-size: 36px;
  }

  .latest-blog-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .latest-blog-section {
    padding: 60px 5%;
  }

  .latest-blog-heading {
    font-size: 32px;
  }

  .latest-blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .latest-blog-image {
    height: 240px;
  }

  .latest-blog-title {
    font-size: 24px;
  }

  .latest-blog-content {
    padding: 30px;
  }

  .latest-blog-excerpt {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .latest-blog-section {
    padding: 50px 5%;
  }

  .latest-blog-heading {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .latest-blog-image {
    height: 200px;
  }

  .latest-blog-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .latest-blog-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .latest-blog-content {
    padding: 25px;
  }

  .view-all-blog-btn {
    padding: 14px 35px;
    font-size: 15px;
    width: 100%;
    max-width: 300px;
  }
}
/* 
blog css */

/* ===== BLOG GRID ===== */
#blog-list {
  max-width: 1400px;
  margin: 70px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ===== BLOG CARD ===== */
.blog-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

/* ===== IMAGE ===== */
.blog-card-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== BODY ===== */
.blog-card-body {
  padding: 26px 28px 30px;
}

/* ===== DATE ===== */
.blog-date {
  display: block;
  font-size: 14px;
  color: #7a8aa1;
  margin-bottom: 12px;
}

/* ===== TITLE ===== */
.blog-title {
  font-size: 20px;
  font-weight: 600;
  color: #0b3c74;
  line-height: 1.4;
  margin-bottom: 18px;
}

/* ===== LINK ===== */
.blog-link {
  font-size: 15px;
  font-weight: 600;
  color: #0b63ce;
  text-decoration: none;
  position: relative;
}

.blog-link::after {
  content: " →";
  transition: transform 0.3s ease;
}

.blog-link:hover::after {
  transform: translateX(4px);
}

.blog-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 8px;
}

@media (max-width: 1100px) {
  #blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  #blog-list {
    grid-template-columns: 1fr;
  }

  .blog-card-image {
    height: 220px;
  }
}


/* ===== BLOG DETAIL PAGE ===== */
.blog-detail-container {
    max-width: 1400px;
    margin: 60px auto 100px;
    padding: 0 30px;
}

.blog-detail-card {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
    padding: 80px;
    margin-bottom: 60px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.blog-meta-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #718096;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.blog-detail-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.blog-featured-image-wrapper {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 50px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.blog-featured-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-featured-image-wrapper:hover img {
    transform: scale(1.03);
}

.blog-detail-content {
    font-size: 20px;
    line-height: 1.85;
    color: #4a5568;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-detail-content p {
    margin-bottom: 32px;
}

.blog-detail-content h2, 
.blog-detail-content h3,
.blog-detail-content h4 {
    color: #1a202c;
    margin: 60px 0 28px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.blog-detail-content h2 { font-size: 36px; }
.blog-detail-content h3 { font-size: 30px; }
.blog-detail-content h4 { font-size: 24px; }

.blog-detail-content blockquote {
    margin: 50px 0;
    padding: 40px 50px;
    background: #f8fafc;
    border-left: 6px solid #0066cc;
    border-radius: 0 24px 24px 0;
    font-style: italic;
    font-size: 24px;
    color: #2d3748;
    line-height: 1.6;
}

.blog-detail-content ul, 
.blog-detail-content ol {
    margin-bottom: 35px;
    padding-left: 25px;
}

.blog-detail-content li {
    margin-bottom: 12px;
    position: relative;
}

.blog-detail-content a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 2px solid rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
}

.blog-detail-content a:hover {
    background: rgba(0, 102, 204, 0.05);
    border-bottom-color: #0066cc;
}

.blog-detail-footer {
    max-width: 1000px;
    margin: 80px auto 0;
    padding-top: 40px;
    border-top: 1px solid #edf2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Ensure CF7 matches style */
.wpcf7-form-control-wrap {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #e53e3e;
    margin-top: 5px;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 60px auto;
    max-width: 1000px;
}

.nav-previous, .nav-next {
    flex: 1;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
}

.nav-previous:hover, .nav-next:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
    border-color: #0066cc;
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 12px;
    color: #718096;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
}

.nav-title {
    color: #1a202c;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.4;
    display: block;
    transition: color 0.3s ease;
}

.nav-previous:hover .nav-title, 
.nav-next:hover .nav-title {
    color: #0066cc;
}

.wpcf7-response-output {
    border-radius: 8px !important;
    font-size: 15px !important;
    margin: 20px 0 0 !important;
    padding: 15px !important;
}

@media (max-width: 768px) {
    .blog-detail-card {
        padding: 40px 25px;
        border-radius: 24px;
    }
    .blog-detail-title {
        font-size: 34px;
    }
    .blog-detail-content {
        font-size: 18px;
    }
    .post-navigation {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .blog-detail-container { padding: 0 15px; }
    .blog-detail-card { padding: 30px 15px; border-radius: 16px; }
}

/* ===== BRANDS SERVED SECTION ===== */
.brands-served-section {
    padding: 100px 5% 60px;
    background: #fff;
    text-align: center;
}

.brands-served-heading {
    font-size: clamp(32px, 5vw, 42px);
    color: #1a365d;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.brands-served-description {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.brands-served-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
}

.brand-served-box {
    width: 100%;
    background: #fff;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid #f1f5f9;
    margin-left: -1px;
    margin-top: -1px;
}

.brand-served-box:hover {
    background: #fff;
    transform: translateY(-5px);
    z-index: 10;
    border-color: #0066cc !important;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.25);
}

.brand-served-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none !important;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.brand-served-box:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 1400px) {
    .brands-served-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
}

@media (max-width: 1200px) {
    .brands-served-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .brands-served-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .brands-served-section { padding: 50px 5% 30px; }
    .brand-served-box { padding: 10px; }
}

@media (max-width: 480px) {
    .brands-served-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .brand-served-box { padding: 5px; }
}

/* ===== TRUST BAR SECTION ===== */
.trust-bar-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.trust-item {
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.trust-item:hover {
    transform: translateY(-8px);
}

.trust-icon-wrapper {
    margin-bottom: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trust-icon-wrapper i {
    font-size: 50px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.trust-item:hover i {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.trust-item h3 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    white-space: normal;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.trust-item:hover h3 {
    opacity: 1;
    transform: scale(1.05);
}

.trust-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%
    );
}

@media (max-width: 768px) {
    .trust-bar-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important; /* Slightly reduced gap for better vertical rhythm */
        align-items: center !important;
        text-align: center !important;
        padding: 0 20px !important;
    }
    .trust-item {
        width: 100% !important;
    }
    .trust-item h3 {
        font-size: 20px !important;
        margin-top: 10px !important;
    }
    .trust-divider {
        display: none !important; /* Hide dividers on mobile */
    }
    .trust-bar-section { padding: 60px 0; }
}

@media (max-width: 480px) {
    .blog-detail-card {
        padding: 28px 18px;
        border-radius: 18px;
    }
    .blog-detail-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .blog-detail-content {
        font-size: 16px;
        line-height: 1.8;
    }
    .blog-meta-detail {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 12px;
    }
    .blog-detail-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .blog-detail-container {
        margin: 20px auto 50px;
        padding: 0 14px;
    }
}

/* ===== BRANDS & CLIENTS GRID ===== */
.brands-section {
  padding: 80px 5%;
  background-color: #ffffff;
}
.brands-heading {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #223a66;
  margin-bottom: 50px;
}
/* Container Width Sync */
.brands-slider-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.brands-track {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important; /* Forces exactly 4 per row */
  gap: 30px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

/* Unified Medigate Portfolio Card (Used for Clients & Brands) */
.medigate-card {
  width: 100% !important;
  min-height: 200px !important; /* Reduced to match brand style */
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  background: #ffffff !important; 
  border: 1px solid #f1f5f9; /* Lighter border like brands */
  border-radius: 4px; /* Subtle radius */
  padding: 30px 20px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  text-align: center;
  box-shadow: none; /* Removed shadow for cleaner look */
  cursor: pointer;
  position: relative;
}

/* Grayscale by default */
.medigate-card .client-logo-wrapper img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.5s ease;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* Actual Color & Teal Stroke on Hover */
.medigate-card:hover {
  background: #ffffff !important;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 102, 204, 0.2); /* Blue glow */
  border-color: #0066cc !important;
  z-index: 10;
}


.medigate-card:hover .client-logo-wrapper img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.client-logo-wrapper {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: transparent;
  border: none;
  padding: 0;
}

.client-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #334155;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  max-width: 100%;
}
/* Hide pagination dots as they are no longer needed for grid */
.brands-dots, .brands-pagination, .brand-dot {

  display: none !important;
}

@media (max-width: 1100px) {
  .brand-item {
    flex: 0 0 calc(33.333% - 17px) !important;
  }
  .brands-track {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .medigate-card {
    min-height: 220px !important;
  }
}
@media (max-width: 768px) {
  .brand-item {
    flex: 0 0 calc(50% - 13px) !important;
  }
  .brands-track {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .medigate-card {
    min-height: 180px !important;
    padding: 20px 12px !important;
    border-radius: 14px;
  }
  .client-logo-wrapper {
    height: 90px;
    margin-bottom: 12px;
  }
  .medigate-card .client-logo-wrapper img {
    max-width: 100%;
    max-height: 80px;
    opacity: 0.85;
    filter: grayscale(50%);
  }
  .client-card-title {
    font-size: 12px;
  }
  .brands-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .brands-section {
    padding: 50px 4% 60px;
  }
}
@media (max-width: 480px) {
  .brand-item {
    flex: 0 0 100% !important;
  }
  .brands-track {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .medigate-card {
    min-height: 150px !important;
    padding: 16px 10px !important;
    border-radius: 12px;
  }
  .client-logo-wrapper {
    height: 75px;
    margin-bottom: 8px;
  }
  .medigate-card .client-logo-wrapper img {
    max-height: 65px;
    opacity: 0.9;
    filter: grayscale(30%);
  }
  .client-card-title {
    font-size: 11px;
  }
}

/* ===== ACHIEVEMENTS MODERN SECTION ===== */
.achievements-modern-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.achievements-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Block */
.achievements-header-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    gap: 60px;
}

.achievements-header-block .header-text {
    flex: 1;
}

.premium-label {
    display: block;
    color: #0066cc;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

.achievements-header-block .about-heading {
    font-size: 48px;
    color: #1a365d;
    margin: 0 !important;
    line-height: 1.1;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: #0066cc;
    margin-top: 25px;
}

.header-description {
    flex: 1;
    max-width: 500px;
}

.header-description p {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Highlights Grid */
.achievements-highlights-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.achievement-card-modern {
    background: #f8fafc;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-card-modern:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.2);
    border-color: #0066cc !important;
}

.card-icon-box {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.achievement-card-modern:hover .card-icon-box {
    background: #0066cc;
    color: #ffffff;
    transform: scale(1.1);
}

.card-content h3 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Certificates Showcase */
.certificates-showcase-modern {
    background: #f1f5f9;
    padding: 80px 60px;
    border-radius: 40px;
    text-align: center;
}

.showcase-header h3 {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 50px;
    font-weight: 700;
}

.certificates-grid-modern {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.certificate-frame {
    background: #ffffff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    max-width: 250px; /* Reduced by 30% */
    position: relative;
    border: 1px solid #e2e8f0;
}

.certificate-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.2);
    border-color: #0066cc !important;
}

.cert-image-wrapper {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 10px;
    border-radius: 8px;
}

.cert-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .achievements-highlights-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    .achievements-header-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .achievements-highlights-modern {
        grid-template-columns: 1fr;
    }
    .certificates-grid-modern {
        flex-direction: column;
        align-items: center;
    }
    .achievements-header-block .about-heading {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {
    .achievement-list-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .certificates-grid-fullwidth {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .certificates-grid-fullwidth {
        grid-template-columns: 1fr;
    }
}

/* Empty Category State */
.empty-category-message {
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 30px;
    border: 2px dashed #cbd5e1;
    max-width: 1000px; /* Wider for better balance */
    margin: 60px auto;
    width: 100%;
    grid-column: 1 / -1; /* CRITICAL: Spans full width if inside a grid */
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.empty-icon {
    font-size: 80px;
    color: #94a3b8;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.empty-category-message h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.empty-category-message p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.empty-category-message .btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 82, 163, 0.3);
}

.empty-category-message .btn-primary-large:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 82, 163, 0.4);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .empty-category-message {
        padding: 60px 25px;
        margin: 30px auto;
        border-radius: 20px;
    }

    .empty-icon {
        font-size: 60px;
    }

    .empty-category-message h2 {
        font-size: 28px;
    }

    .empty-category-message p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .empty-category-message .btn-primary-large {
        padding: 16px 30px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
}


/* ===== MANAGING DIRECTOR 16:9 FEATURE ===== */
.md-feature-169 {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 0;
    background: #ffffff;
    border-radius: 30px;
    overflow: visible; /* Changed from hidden to ensure no clipping */
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    margin: 80px 0;
    min-height: 520px; /* Slightly increased but flexible */
    border: 1px solid #edf2f7;
}

.md-profile-col {
    background: #f8fafc;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #edf2f7;
}

.md-image-box {
    width: 240px;
    height: 240px;
    margin-bottom: 30px;
    position: relative;
}

.md-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.md-feature-169:hover .md-image-box img {
    transform: translateY(-10px);
    border-color: #0066cc;
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.12);
}

.md-info-box .md-name {
    font-size: 30px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.md-info-box .md-designation {
    font-size: 16px;
    color: #0066cc;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.md-contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.md-contact-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.md-contact-links a i {
    color: #0066cc;
    font-size: 18px;
}

.md-contact-links a:hover {
    color: #0066cc;
    transform: translateX(5px);
}

.md-quote-col {
    padding: 60px 80px; /* Refined padding */
    display: flex;
    align-items: flex-start; /* Better for long text */
    justify-content: center;
    flex-direction: column;
    position: relative;
    background: #fff;
}

.quote-content {
    position: relative;
}

.quote-icon-top {
    position: absolute;
    top: -60px;
    left: -20px;
    font-size: 80px;
    color: #f1f5f9;
    z-index: 0;
}

.md-quote-text {
    font-size: 24px; /* More professional size */
    line-height: 1.8; /* Increased breathing room */
    color: #1a365d; 
    font-style: italic;
    font-weight: 500;
    position: relative;
    z-index: 1;
    font-family: inherit;
    margin: 0;
    border: none;
    padding: 0;
}

@media (max-width: 1024px) {
    .md-feature-169 {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .md-profile-col {
        border-right: none;
        border-bottom: 1px solid #edf2f7;
    }
    .md-image-box {
        width: 200px;
        height: 200px;
    }
    .md-quote-col {
        padding: 60px 40px;
        text-align: center;
    }
    .quote-icon-top {
        left: 50%;
        transform: translateX(-50%);
    }
    .md-quote-text {
        font-size: 22px;
    }
}


/* ===== TEAM MEMBERS GRID ===== */
.team-header-area {
  padding: 100px 0 60px;
  text-align: center;
}
.team-members-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  padding-bottom: 100px;
}
.team-member-card {
  flex: 0 0 calc(25% - 50px);
  text-align: center;
  min-width: 250px;
  transition: transform 0.4s ease;
}
.team-img-frame {
  width: 220px;
  height: 220px;
  margin: 0 auto 25px;
}
.team-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.team-member-card:hover .team-img-frame img {
  transform: translateY(-10px);
  border-color: #0066cc;
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.12);
}
.team-member-name {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 5px;
}
.team-member-title {
  font-size: 15px;
  color: #0066cc;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
}

/* REFINEMENT FOR EXISTING PAGES */
.about-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .achievements-container, .md-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .md-quote-col {
    padding-left: 0;
  }
  .md-quote::before {
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
  }
  .team-member-card, .team-card {
    flex: 0 0 calc(50% - 45px);
  }
}
@media (max-width: 600px) {
  .team-member-card, .team-card {
    flex: 0 0 100%;
  }
  .md-name {
    font-size: 28px;
  }
  .md-quote {
    font-size: 18px;
  }
  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Global Presence Map Section */
.global-map-section {
  padding: 100px 5%;
  background: white;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eef2f6;
}

.section-header {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 16px;
}

.heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.global-heading {
  font-size: 52px;
  font-weight: 700;
  color: #1a365d;
  margin: 0;
  letter-spacing: -1.5px;
}

.globe-icon-wrapper {
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border: 2px solid #1a365d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #1a365d;
  animation: rotateGlobe 15s linear infinite;
}

@keyframes rotateGlobe {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.accent-elements {
  display: none;
}

.cross-accent {
  font-size: 24px;
  color: #0066cc;
  font-weight: 300;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.world-map-wrapper {
  padding: 30px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(26, 54, 93, 0.08);
  border: 1px solid rgba(26, 54, 93, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.world-map-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(38, 180, 200, 0.15);
  border-color: #0066cc !important;
}

/* D3 Map Container */
#d3-map-container {
  width: 100%;
  min-height: 420px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

#d3-map-container svg {
  display: block;
  width: 100%;
  height: auto;
}

/* D3 Country Paths - Atlas Style */
.d3-country {
  fill: #c8ddf0;
  stroke: #8aafc8;
  stroke-width: 0.4px;
  transition: fill 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.d3-country:hover,
.d3-country.d3-hovered {
  fill: #5b8db8;
  filter: brightness(1.1);
}

/* Highlighted Countries from WP Admin */
.d3-country.d3-highlighted {
  fill: #1a365d;
  stroke: #0d2240;
  stroke-width: 0.6px;
  filter: drop-shadow(0 2px 6px rgba(26, 54, 93, 0.4));
}

.d3-country.d3-highlighted:hover,
.d3-country.d3-highlighted.d3-hovered {
  fill: #f8d448;
  stroke: #e6b800;
}

/* Map Markers Overlay */
.map-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -100%);
  animation: pulseMarker 2.5s ease-in-out infinite;
}

.marker::before {
  content: '';
  width: 14px;
  height: 14px;
  background: #f8d448;
  border: 2.5px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(248, 212, 72, 0.3), 0 4px 12px rgba(0,0,0,0.25);
  margin-bottom: 6px;
  flex-shrink: 0;
}

.marker span {
  background: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  color: #1a365d;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

@keyframes pulseMarker {
  0%, 100% { transform: translate(-50%, -100%) scale(1); }
  50% { transform: translate(-50%, -100%) scale(1.08); }
}

/* Fallback for old SVG (hidden now) */
.world-svg { display: none; }
.map-path-bg, .map-path { display: none; }

/* Map Tooltip */
.map-tooltip {
  position: fixed;
  background: rgba(26, 54, 93, 0.92);
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
  z-index: 9999;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: opacity 0.2s ease;
}

.bottom-accent-grid {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 100px;
  background-image: radial-gradient(#d1d9e6 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.5;
  z-index: -1;
}

@media (max-width: 1024px) {
  .global-heading { font-size: 42px; }
  .world-map-wrapper { padding: 16px; }
  #d3-map-container { min-height: 300px; }
}

@media (max-width: 768px) {
  .global-map-section { padding: 60px 5%; }
  .section-header { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .global-heading { font-size: 32px; }
  .marker span { font-size: 9px; padding: 2px 8px; }
  #d3-map-container { min-height: 220px; }
}

@media (max-width: 480px) {
  .global-heading { font-size: 26px; letter-spacing: -0.5px; }
  .globe-icon-wrapper { width: 44px; height: 44px; font-size: 22px; }
  .world-map-wrapper { padding: 10px; border-radius: 16px; }
  #d3-map-container { min-height: 180px; }
  .global-map-section { padding: 40px 4%; }
}

/* ===== ACHIEVEMENTS BOX MOBILE ===== */
@media (max-width: 768px) {
  .achievements-box-wrapper {
    margin: 40px 4%;
    padding: 40px 24px;
    border-radius: 24px;
  }
  .achievements-box-body-vertical { gap: 40px; }
  .achievement-list-split { gap: 24px 0; }
  .certificates-grid-fullwidth { padding: 24px; gap: 20px; }
  .cert-item { width: 100%; max-width: 280px; height: 320px; }
  .md-feature-169 { margin: 40px 0; }
  .md-quote-col { padding: 40px 24px; }
  .md-quote-text { font-size: 20px; }
}

@media (max-width: 480px) {
  .achievements-box-wrapper {
    margin: 24px 0;
    padding: 28px 16px;
    border-radius: 18px;
  }
  .section-title-centered .about-heading { font-size: 26px; }
  .achievement-list-split li { font-size: 16px; padding-left: 48px; }
  .achievement-list-split li i { width: 36px; height: 36px; font-size: 15px; }
  .cert-item { width: 100%; height: 280px; }
  .md-image-box { width: 160px; height: 160px; }
  .md-quote-text { font-size: 18px; }
  .md-quote-col { padding: 28px 16px; }

  /* Contact section margin fix */
  .contact-page-container {
    margin: 20px auto !important;
  }
  .contact-page-section.style-1,
  .contact-page-section.style-2 {
    padding: 40px 4%;
  }
  .contact-form-card {
    padding: 24px 16px !important;
  }
}

/* ============================================================
   GEO LANDING PAGE STYLES (PREMIUM)
   ============================================================ */

.geo-landing-content {
    background: #fff;
}

.geo-blocks-wrapper {
    width: 100%;
}

/* Base Geo Section */
.geo-section {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.geo-section.light-bg { background: #f8fafc; }
.geo-section.dark-bg { background: #1a365d; color: #fff; }

.geo-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.geo-landing-content .geo-hero,
.geo-landing-content .geo-section {
    display: none !important;
}

/* Geo Hero Split Design (Redesigned) */
.geo-hero-split {
    background: #ffffff;
    padding: 100px 5%;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.geo-hero-split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.geo-hero-split-text {
    position: relative;
    padding-top: 40px;
}

.geo-hero-split-text::before {
    display: none;
}

.geo-hero-split-label {
    display: block;
    color: #0066cc;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.geo-hero-split-title {
    font-size: 64px;
    font-weight: 700;
    color: #1a365d;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.geo-hero-split-description {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.geo-hero-split-description p {
    margin-bottom: 20px;
}

.geo-hero-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffd147;
    color: #1a365d;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 209, 71, 0.3);
}

.geo-hero-whatsapp-btn i {
    font-size: 22px;
}

.geo-hero-whatsapp-btn:hover {
    background: #ffc414;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 209, 71, 0.4);
    color: #1a365d;
}

.geo-hero-split-image {
    position: relative;
}

.geo-hero-split-image img {
    width: 100%;
    height: auto;
    border-radius: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    display: block;
}

@media (max-width: 1024px) {
    .geo-hero-split-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .geo-hero-split-title {
        font-size: 48px;
    }
    .geo-hero-split {
        padding: 80px 5%;
    }
}

@media (max-width: 768px) {
    .geo-hero-split-title {
        font-size: 38px;
    }
    .geo-hero-split-container {
        gap: 40px;
    }
}

/* Geo Trust Stats */
.geo-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: -80px; /* Overlap with hero */
    position: relative;
    z-index: 10;
}

.geo-stat-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.geo-stat-card:hover { transform: translateY(-10px); }

.geo-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 10px;
    display: block;
}

.geo-stat-label {
    font-size: 16px;
    color: #5a6c7d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Geo Product Grid */
.geo-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.geo-cat-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.geo-cat-card:hover {
    border-color: #0066cc;
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.08);
    transform: translateY(-5px);
}

.geo-cat-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: #0066cc;
    transition: all 0.3s ease;
}

.geo-cat-card:hover .geo-cat-icon {
    background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0052a3 100%);
    color: #fff;
    transform: rotateY(180deg);
}

.geo-cat-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
}

.geo-cat-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Geo Why Us */
.geo-why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.geo-why-image {
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.geo-benefit-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.geo-benefit-icon {
    width: 60px;
    height: 60px;
    background: #e0f2f1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00897b;
    flex-shrink: 0;
}

.geo-benefit-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 8px;
}

.geo-benefit-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .geo-why-layout { grid-template-columns: 1fr; gap: 50px; }
    .geo-hero { min-height: 60vh; padding: 100px 5%; }
    .geo-section { padding: 60px 5%; }
    .geo-stats-grid { margin-top: 0; }
}

@media (max-width: 480px) {
    .geo-hero-title { font-size: 36px; }
    .geo-stat-card { padding: 30px 20px; }
    .geo-cat-card { padding: 30px 20px; }
}

/* ===== BLOG PAGE STYLES ===== */
.blog-page-main {
  background-color: #f8faff;
  padding: 100px 0;
}

.blog-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
}

.blog-listing-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.blog-listing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.blog-card-image-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-listing-card:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-card-date-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffffff;
  padding: 12px 15px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.blog-card-date-badge .day {
  font-size: 20px;
  font-weight: 800;
  color: #1a202c;
  line-height: 1;
}

.blog-card-date-badge .month {
  font-size: 12px;
  font-weight: 700;
  color: #0066cc;
  text-transform: uppercase;
  margin-top: 4px;
}

.blog-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-listing-card:hover .blog-card-title a {
  color: #0066cc;
}

.blog-card-excerpt {
  color: #718096;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  flex: 1;
}

.blog-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0066cc;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-read-more-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.blog-read-more-btn:hover {
  gap: 15px;
}

.blog-read-more-btn:hover i {
  transform: translateX(5px);
}

/* Blog Pagination */
.blog-pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.blog-pagination .page-numbers {
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: #4a5568;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  padding: 0 15px;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: #0066cc;
  color: white !important;
  border-color: #0066cc;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.no-posts-found {
  text-align: center;
  padding: 100px 0;
  color: #718096;
}

.no-posts-found i {
  font-size: 60px;
  margin-bottom: 20px;
  opacity: 0.3;
}

/* WhatsApp Tooltip & Global Position Fix */
.whatsapp-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Ensure the button itself doesn't drift now that it's in a wrapper */
.whatsapp-float {
  position: relative !important;
  bottom: auto !important;
  right: auto !important;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 85px;
  right: 0;
  background: #ffffff;
  color: #0052a3;
  padding: 12px 22px;
  border-radius: 18px;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  border: 2px solid #25d366;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whatsapp-tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.tooltip-arrow {
  position: absolute;
  bottom: -10px;
  right: 20px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  transform: rotate(45deg);
  border-right: 2px solid #25d366;
  border-bottom: 2px solid #25d366;
}

@keyframes tooltipBounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}

.whatsapp-tooltip.show {
  animation: tooltipBounce 3s infinite 2s;
}

/* FAQ Section (Tabbed Layout) */
.faq-section {
  background: #ffffff;
  padding: 80px 0;
  min-height: 500px;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-heading {
  font-size: 42px;
  font-weight: 800;
  color: #1a202c;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.faq-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #0052a3, #00a3ff);
  border-radius: 2px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Sidebar Tabs */
.faq-sidebar {
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
}

.faq-tab-btn {
  display: block;
  width: 100%;
  padding: 24px 30px;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #edf2f7;
  position: relative;
}

.faq-tab-btn:last-child {
  border-bottom: none;
}

.faq-tab-btn:hover {
  background: #f1f5f9;
  color: #0052a3;
}

.faq-tab-btn.active {
  background: #ffffff;
  color: #0052a3;
  border-right: 4px solid #0052a3;
}

/* Content Area */
.faq-content-area {
  padding: 50px 60px;
  min-height: 400px;
  background: #fff;
  position: relative;
}

.faq-pane {
  display: none;
  animation: fadeInRight 0.5s ease forwards;
}

.faq-pane.active {
  display: block;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-pane p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.faq-pane ul, .faq-pane ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.faq-pane li {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 10px;
}

/* Responsive FAQ */
@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 260px 1fr;
  }
  .faq-content-area {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    display: flex;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    -webkit-overflow-scrolling: touch;
  }
  .faq-tab-btn {
    white-space: nowrap;
    border-bottom: none;
    border-right: 1px solid #edf2f7;
    padding: 15px 25px;
  }
  .faq-tab-btn.active {
    border-right: none;
    border-bottom: 3px solid #0052a3;
  }
  .faq-content-area {
    padding: 30px 20px;
  }
  .faq-pane p {
    font-size: 16px;
  }
}

/* Missing Data Link Styling for Products */
.missing-data-link,
.missing-data-link:visited,
.missing-data-link:active {
    color: #0066cc !important;
    font-size: 0.95em;
    font-style: italic;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.missing-data-link:hover {
    color: #004c99 !important;
    text-decoration: underline;
}
.missing-data-link i {
    color: inherit;
    font-size: 1.1em;
}

/* Fixes for Legacy Geo Delivery Section */
.geo-legacy-delivery-wrapper .who-container {
    display: flex !important;
    align-items: center;
}
.geo-legacy-delivery-wrapper .delivery-cta {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.geo-legacy-delivery-wrapper .delivery-text ul {
    list-style: none !important;
    padding-left: 0 !important;
}
.geo-legacy-delivery-wrapper .delivery-text ul li {
    display: flex !important;
    align-items: center !important;
    text-align: left;
}
.geo-legacy-delivery-wrapper .delivery-text ul li div {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
}
.geo-legacy-delivery-wrapper .delivery-cta a[href^="https://wa.me"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;
    transition: all 0.3s ease;
}
.geo-legacy-delivery-wrapper .delivery-cta a[href^="https://wa.me"]:hover {
    background: #1da851 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Padding and spacing for Geo Additional Info Section */
.geo-additional-info {
    padding: 100px 0 60px;
    background: #ffffff;
}

@media (max-width: 768px) {
    .geo-additional-info {
        padding: 60px 0 40px;
    }
}

/* Footer Disclaimers & Legal Links */
.footer-disclaimers {
    margin-top: 25px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}
.disclaimer-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 12px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.footer-legal-links {
    margin-top: 15px;
}
.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.footer-legal-links a:hover {
    color: #ffffff;
}


