:root {
  --blue: #52aae5;
  --dark: #2c3e50;
  --grey1: #f8f9fa;
  --grey2: #eef1f4;
  --card: #ffffff;
  --text: #2c3e50;
  --muted: #666;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Times New Roman', Times, serif;
  color: var(--text);
  background: var(--grey1);
  font-size: 1.05rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  font-family: 'Times New Roman', Times, serif;
}

p {
  color: var(--muted);
}

img {
  max-width: 100%;
  height: auto;
}

.text-blue {
  color: var(--blue);
}

.bg-blue {
  background-color: var(--blue);
}

.bg-silver {
  background-color: #b0c4de;
  color: #333;
}

.text-muted {
  color: var(--muted) !important;
}

.letter-spacing {
  letter-spacing: 2px;
}

/* ===== NAVBAR ===== */
#mainNav {
  background: #1a1a1a;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  padding: 0;
  min-height: 65px;
  transition: all 0.3s ease;
}

#mainNav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

#mainNav .container {
  min-height: 65px;
  display: flex;
  align-items: center;
}

#mainNav .nav-link {
  color: #e0e0e0 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  font-size: 1rem;
  position: relative;
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

#mainNav .nav-link:hover {
  color: var(--blue) !important;
}

#mainNav .nav-link:hover::after {
  width: 80%;
}

.logo-img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

/* ===== HERO ===== */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 65px;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-video.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 65px;
}

.hero-overlay h6 {
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-overlay h1 {
  animation: fadeInDown 0.8s ease 0.4s both;
}

.hero-overlay p {
  animation: fadeInDown 0.8s ease 0.6s both;
}

.hero-overlay .d-flex {
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* ===== SECTION BACKGROUNDS ===== */
.about-section {
  background: var(--grey1);
}

.why-section {
  background: var(--grey2);
}

#products {
  background: var(--grey1);
}

#blog {
  background: var(--grey2);
}

#contact {
  background: var(--grey1);
}

#faq {
  background: var(--grey2);
}

/* ===== SECTION HEADINGS ===== */
section h2 {
  color: var(--text);
}

section h6 {
  color: var(--blue) !important;
}

.title-line {
  width: 60px;
  height: 4px;
  background: var(--blue);
  margin-top: 10px;
  animation: pulseLine 2s ease-in-out infinite;
}

@keyframes pulseLine {

  0%,
  100% {
    width: 60px;
  }

  50% {
    width: 90px;
  }
}

/* ===== OVERVIEW ===== */
.overview-stat {
  background: var(--card);
  border-left: 4px solid var(--blue);
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.overview-stat:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(82, 170, 229, 0.15);
}

.overview-stat h3 {
  color: var(--blue);
  transition: text-shadow 0.3s ease;
}

.overview-stat:hover h3 {
  text-shadow: 0 0 15px rgba(82, 170, 229, 0.5);
}

.overview-stat p {
  color: var(--muted) !important;
}

.overview-card {
  background: var(--card);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.overview-card:hover::before {
  transform: scaleX(1);
}

.overview-card:hover {
  box-shadow: 0 10px 30px rgba(82, 170, 229, 0.15);
  transform: translateY(-8px);
}

.overview-card i {
  font-size: 2.2rem;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.overview-card:hover i {
  transform: translateY(-5px) scale(1.15);
}

.overview-card h6 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.overview-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* ===== WHY CHOOSE US ===== */
.why-card {
  background: var(--card);
  border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  border-top: 4px solid transparent;
  transition: all 0.35s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.why-card:hover {
  border-top-color: var(--blue);
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(82, 170, 229, 0.15);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card:hover::before {
  left: 150%;
}

.why-icon {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 15px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.why-card:nth-child(2) .why-icon {
  animation-delay: 0.5s;
}

.why-card:nth-child(3) .why-icon {
  animation-delay: 1s;
}

.why-card:nth-child(4) .why-icon {
  animation-delay: 1.5s;
}

.why-card:nth-child(5) .why-icon {
  animation-delay: 2s;
}

.why-card:nth-child(6) .why-icon {
  animation-delay: 2.5s;
}

.why-card h5 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== PRODUCTS ===== */
.product-card {
  background: var(--card);
  padding: 30px;
  border-radius: 15px;
  height: 100%;
  border-bottom: 4px solid var(--blue);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(82, 170, 229, 0.15);
}

.product-card h4 {
  color: var(--text);
}

.product-card p {
  color: var(--muted);
}

.premium-card,
.export-focus {
  background: var(--card);
  border: none;
  border-bottom: 4px solid var(--blue);
}

.product-list {
  padding-left: 18px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-list li {
  margin-bottom: 5px;
}

.icon-box {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.product-card:hover .icon-box {
  transform: translateY(-5px) scale(1.1);
}

.tag-box {
  margin-top: 15px;
}

.badge {
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 5px;
}

/* ===== SWIPER ===== */
.productSwiper {
  padding: 10px 5px 50px !important;
}

.productSwiper .swiper-wrapper {
  align-items: stretch;
}

.productSwiper .swiper-slide {
  height: auto;
}

.swiper-slide .product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.productSwiper .swiper-pagination-bullet-active {
  background: var(--blue);
}

/* ===== BLOG ===== */
.blog-card {
  background: var(--card);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(82, 170, 229, 0.15);
}

.blog-card:hover::before {
  left: 150%;
}

.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-body {
  padding: 25px;
}

.blog-tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.blog-body h5 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.blog-body p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.blog-link:hover {
  color: #3a8fc7;
}

/* ===== CONTACT ===== */
.contact-info-card {
  background: var(--blue);
  border-radius: 15px;
  padding: 35px 30px;
  height: 100%;
  color: #fff;
  text-align: left;
}

.contact-info-card h5 {
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 15px;
}

.contact-info-card h6 {
  color: #fff !important;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #fff;
  color: var(--blue);
  transform: translateY(-3px);
}

.contact-form-card {
  background: var(--card);
  border-radius: 15px;
  padding: 35px 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
  height: 100%;
}

.contact-form-card h5 {
  color: var(--text);
}

.contact-form-card .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1.5px solid #dde;
  border-radius: 8px;
  padding: 10px 14px;
  background: #fff;
  color: var(--text);
  transition: all 0.3s ease;
}

.contact-form-card .form-control::placeholder {
  color: #aaa;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.2rem rgba(82, 170, 229, 0.2);
  transform: scale(1.01);
}

/* ===== FAQ ===== */
.faq-item {
  border: none;
  border-radius: 10px !important;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item .accordion-button {
  font-weight: 600;
  color: var(--text) !important;
  background: #fff !important;
  font-size: 0.95rem;
}

.faq-item .accordion-button:not(.collapsed) {
  color: var(--blue) !important;
  background: #f0f7fd !important;
  box-shadow: none;
}

.faq-item .accordion-button::after {
  filter: invert(50%) sepia(80%) saturate(400%) hue-rotate(180deg);
}

.faq-item .accordion-body {
  color: var(--text) !important;
  font-size: 0.9rem;
  background: #f0f7fd !important;
  border-top: 1px solid rgba(82, 170, 229, 0.2);
}

.accordion-collapse {
  transition: all 0.4s ease !important;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background-color: var(--blue);
  border-color: var(--blue);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #3a8fc7;
  border-color: #3a8fc7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(82, 170, 229, 0.4);
}

.btn-primary {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(82, 170, 229, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(82, 170, 229, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(82, 170, 229, 0);
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: #ccc;
}

.footer .row {
  align-items: flex-start;
}

.footer-logo {
  width: 140px;
  height: auto;
  display: block;
}

.footer-desc {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.7;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

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

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

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

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

.footer-contact li {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--blue);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-5px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 20px 0 15px;
}

.footer-copy {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

.infotech-link {
  color: var(--blue) !important;
  font-weight: 700;
  text-decoration: none;
}

.infotech-link:hover {
  color: #fff !important;
  text-decoration: underline;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

@keyframes float {

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .hero-section h1 {
    font-size: 2.5rem !important;
  }

  .logo-img {
    width: 150px;
    height: auto;
  }
}

@media (max-width: 991px) {
  .logo-img {
    width: 130px;
    height: auto;
  }

  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 100px 15px 60px;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2.2rem !important;
  }

  .hero-section .d-flex {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-info-card {
    margin-bottom: 20px;
    height: auto;
  }

  .contact-form-card {
    height: auto;
  }

  .footer .col-lg-4,
  .footer .col-lg-2,
  .footer .col-lg-3 {
    margin-bottom: 25px;
  }

  .productSwiper {
    padding: 10px 0 40px !important;
  }
}

@media (max-width: 767px) {
  .logo-img {
    width: 110px;
    height: auto;
  }

  #mainNav {
    min-height: 55px;
    padding: 0 !important;
  }

  #mainNav .container {
    min-height: 55px;
  }

  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 80px 15px 50px;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 1.8rem !important;
  }

  .hero-section .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 10px !important;
  }

  .hero-section .btn {
    width: 100%;
    max-width: 250px;
  }

  .display-5 {
    font-size: 1.6rem !important;
  }

  section:not(.pp-hero) {
    padding: 50px 0 !important;
  }

  .blog-img {
    height: 180px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 20px 15px;
    height: auto;
  }

  .faq-item .accordion-button {
    font-size: 0.85rem;
    padding: 12px 15px;
  }

  .footer-copy {
    text-align: center !important;
    margin-bottom: 5px;
  }

  .footer .row.align-items-center>div {
    text-align: center !important;
  }

  .footer-logo {
    width: 110px;
  }

  .why-card {
    padding: 20px 15px;
  }

  .swiper-slide .product-card {
    padding: 20px 15px;
  }

  .overview-card {
    padding: 15px;
  }
}

@media (max-width: 575px) {
  .logo-img {
    width: 95px;
    height: auto;
  }

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

  .display-5 {
    font-size: 1.3rem !important;
  }

  .contact-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .social-icon,
  .footer-social {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .btn-lg {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .footer-links a,
  .footer-contact li,
  .footer-desc {
    font-size: 0.85rem;
  }

  .tag-box .badge {
    font-size: 0.72rem;
    padding: 4px 8px;
  }

  .blog-body {
    padding: 15px;
  }

  .blog-img {
    height: 150px;
  }

  .productSwiper {
    padding: 10px 0 35px !important;
  }
}

/* Section Backgrounds */
.about-section {
  background: #f8f9fa !important;
}

.why-section {
  background: #eef1f4 !important;
}

#products {
  background: #f8f9fa !important;
}

#blog {
  background: #eef1f4 !important;
}

#contact {
  background: #f8f9fa !important;
}

#faq {
  background: #eef1f4 !important;
}

/* ===== PROFESSIONAL ANIMATIONS ===== */

/* Fade In Up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

/* Fade In Left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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

/* Fade In Right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

/* Scale In */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Float */
@keyframes floatY {

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

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

/* Shimmer */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Pulse Glow */
@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(82, 170, 229, 0.3);
  }

  50% {
    box-shadow: 0 0 20px 6px rgba(82, 170, 229, 0.15);
  }
}

/* Apply to sections on scroll via AOS fallback */
.about-section .col-lg-6:first-child {
  animation: fadeInLeft 0.9s ease both;
}

.about-section .col-lg-6:last-child {
  animation: fadeInRight 0.9s ease both;
}

.overview-stat {
  animation: scaleIn 0.6s ease both;
}

.overview-card {
  animation: fadeInUp 0.7s ease both;
}

.why-card {
  animation: fadeInUp 0.6s ease both;
}

.why-card:nth-child(1) {
  animation-delay: 0.1s;
}

.why-card:nth-child(2) {
  animation-delay: 0.2s;
}

.why-card:nth-child(3) {
  animation-delay: 0.3s;
}

.why-card:nth-child(4) {
  animation-delay: 0.4s;
}

.why-card:nth-child(5) {
  animation-delay: 0.5s;
}

.why-card:nth-child(6) {
  animation-delay: 0.6s;
}

.blog-card {
  animation: scaleIn 0.6s ease both;
}

.blog-card:nth-child(1) {
  animation-delay: 0.1s;
}

.blog-card:nth-child(2) {
  animation-delay: 0.25s;
}

.blog-card:nth-child(3) {
  animation-delay: 0.4s;
}

.contact-info-card {
  animation: fadeInLeft 0.8s ease both;
}

.contact-form-card {
  animation: fadeInRight 0.8s ease both;
}

.faq-item {
  animation: fadeInUp 0.5s ease both;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* Floating icons */
.why-icon {
  animation: floatY 3s ease-in-out infinite;
}

.why-card:nth-child(2) .why-icon {
  animation-delay: 0.4s;
}

.why-card:nth-child(3) .why-icon {
  animation-delay: 0.8s;
}

.why-card:nth-child(4) .why-icon {
  animation-delay: 1.2s;
}

.why-card:nth-child(5) .why-icon {
  animation-delay: 1.6s;
}

.why-card:nth-child(6) .why-icon {
  animation-delay: 2s;
}

/* Card pulse glow on hover */
.why-card:hover,
.product-card:hover,
.blog-card:hover {
  animation: pulseGlow 1.5s ease infinite;
}

/* Title line shimmer */
.title-line {
  background: linear-gradient(90deg, var(--blue), #a8d8f5, var(--blue));
  background-size: 200% auto;
  animation: shimmer 2.5s linear infinite, pulseLine 2s ease-in-out infinite;
}

/* Footer social float */
.footer-social:hover {
  animation: floatY 0.6s ease;
}

/* Btn shine effect */
.btn-primary {
  background: linear-gradient(90deg, #52aae5, #3a8fc7, #52aae5);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  border: none;
}

/* ===== BLOG CARD ANIMATIONS ===== */

.blog-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease !important;
  animation: none !important;
}

/* Image zoom on hover */
.blog-img {
  transition: transform 0.5s ease !important;
  overflow: hidden;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

/* Tag slide in */
.blog-tag {
  display: inline-block;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-tag {
  transform: translateX(5px);
  letter-spacing: 1px;
}

/* Title underline animation */
.blog-body h5 {
  position: relative;
  display: inline-block;
}

.blog-body h5::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.4s ease;
}

.blog-card:hover .blog-body h5::after {
  width: 100%;
}

/* Read more arrow bounce */
.blog-link i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-link i {
  transform: translateX(6px);
}

/* Card lift with shadow */
.blog-card:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 20px 40px rgba(82, 170, 229, 0.2) !important;
}

/* Stagger AOS delays already set, add border bottom reveal */
.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--blue);
  transition: width 0.4s ease;
}

.blog-card:hover::after {
  width: 100%;
}

/* ===== BLOG IMAGE CSS BACKGROUNDS ===== */
.blog-img-1 {
  background: linear-gradient(135deg, #1a3a5c 0%, #52aae5 100%);
  position: relative;
}

.blog-img-1::after {
  content: 'SS Grades Guide';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.blog-img-2 {
  background: linear-gradient(135deg, #0f3460 0%, #3a8fc7 100%);
  position: relative;
}

.blog-img-2::after {
  content: 'Export Process';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.blog-img-3 {
  background: linear-gradient(135deg, #16213e 0%, #52aae5 100%);
  position: relative;
}

.blog-img-3::after {
  content: 'PVD Sheets';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

/* Hover zoom on gradient bg */
.blog-img-1,
.blog-img-2,
.blog-img-3 {
  transition: transform 0.5s ease !important;
}

.blog-card:hover .blog-img-1,
.blog-card:hover .blog-img-2,
.blog-card:hover .blog-img-3 {
  transform: scale(1.05);
}

/* ===== SHIMMER EFFECT ALL CARDS ===== */

.why-card,
.product-card,
.overview-card,
.overview-stat,
.faq-item,
.contact-info-card,
.contact-form-card {
  position: relative;
  overflow: hidden;
}

.why-card::before,
.product-card::before,
.overview-card::before,
.overview-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.why-card:hover::before,
.product-card:hover::before,
.overview-card:hover::before,
.overview-stat:hover::before {
  left: 150%;
}

/* ===== PROFESSIONAL CSS ENHANCEMENTS ===== */

/* Smooth page load */
body {
  animation: pageFadeIn 0.6s ease both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Section reveal on scroll - smooth padding */
section {
  transition: background 0.5s ease;
}

/* Navbar active link indicator */
#mainNav .nav-link.active {
  color: var(--blue) !important;
}

#mainNav .nav-link.active::after {
  width: 80%;
}



/* Hero overlay gradient animation */
.hero-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(10, 30, 60, 0.5) 100%);
  animation: overlayPulse 6s ease-in-out infinite;
}

@keyframes overlayPulse {

  0%,
  100% {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(10, 30, 60, 0.5) 100%);
  }

  50% {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(10, 30, 60, 0.65) 100%);
  }
}

/* Section heading hover */
section h2 {
  transition: color 0.3s ease, letter-spacing 0.3s ease;
  cursor: default;
}

section h2:hover {
  color: var(--blue);
  letter-spacing: 1px;
}

/* Overview stat number animation */
.overview-stat h3 {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.overview-stat:hover h3 {
  transform: scale(1.15);
}

/* Icon box rotate on hover */
.icon-box {
  transition: transform 0.4s ease, color 0.3s ease;
}

.product-card:hover .icon-box {
  transform: rotateY(180deg);
  color: #3a8fc7;
}

/* Badge hover */
.badge {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.badge:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(82, 170, 229, 0.3);
}

/* FAQ button hover arrow */
.faq-item .accordion-button {
  transition: background 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
}

.faq-item .accordion-button:hover {
  padding-left: 1.5rem !important;
  color: var(--blue) !important;
}

/* Contact icon hover */
.contact-icon {
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.15) rotate(10deg);
  background: rgba(255, 255, 255, 0.35);
}

/* Footer heading hover */
.footer-heading {
  transition: color 0.3s ease;
  cursor: default;
}

.footer-heading:hover {
  color: var(--blue);
}



/* Swiper pagination dots */
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #ccc !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: var(--blue) !important;
  width: 25px !important;
  border-radius: 5px !important;
}

/* Scroll to top smooth */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: var(--blue);
  color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3a8fc7;
}

/* ===== NAVBAR PROFESSIONAL ANIMATIONS ===== */

/* Navbar slide down on load */
#mainNav {
  animation: navSlideDown 0.6s ease both;
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

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

/* Nav links stagger fade in */
#mainNav .nav-item:nth-child(1) .nav-link {
  animation: navLinkFade 0.5s ease 0.3s both;
}

#mainNav .nav-item:nth-child(2) .nav-link {
  animation: navLinkFade 0.5s ease 0.4s both;
}

#mainNav .nav-item:nth-child(3) .nav-link {
  animation: navLinkFade 0.5s ease 0.5s both;
}

#mainNav .nav-item:nth-child(4) .nav-link {
  animation: navLinkFade 0.5s ease 0.6s both;
}

#mainNav .nav-item:nth-child(5) .nav-link {
  animation: navLinkFade 0.5s ease 0.7s both;
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* Nav link hover background pill */
#mainNav .nav-link {
  border-radius: 20px;
  transition: background 0.3s ease, color 0.3s ease, padding 0.3s ease !important;
}

#mainNav .nav-link:hover {
  background: rgba(82, 170, 229, 0.15);
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
}

/* Logo fade in */
.navbar-brand {
  animation: none;
}

/* Navbar scrolled border bottom */
#mainNav.scrolled {
  border-bottom: 2px solid var(--blue);
}

/* Hamburger toggler animation */
.navbar-toggler {
  border: 2px solid var(--blue) !important;
  transition: transform 0.3s ease !important;
}

.navbar-toggler:hover {
  transform: rotate(90deg);
}

/* Blog Card Light Background */
.blog-card {
  background: #f8fbff !important;
}

/* ===== COMPREHENSIVE RESPONSIVE ===== */

/* Large Desktop 1400px+ */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-overlay h1 {
    font-size: 4rem;
  }
}

/* Desktop 1200px - 1399px */
@media (max-width: 1399px) {
  .hero-overlay h1 {
    font-size: 3.2rem;
  }
}

/* Large Tablet 992px - 1199px */
@media (max-width: 1199px) {
  .logo-img {
    width: 140px;
    height: auto;
  }

  .hero-overlay h1 {
    font-size: 2.8rem !important;
  }

  .why-card,
  .product-card {
    padding: 25px 20px;
  }
}

/* Tablet 768px - 991px */
@media (max-width: 991px) {
  .logo-img {
    width: 120px;
    height: auto;
  }

  /* Hero video fix */
  .hero-section {
    height: 100vh;
    padding-top: 55px;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-overlay {
    padding-top: 55px;
    text-align: center;
  }

  .hero-overlay h1 {
    font-size: 2.2rem !important;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

  .hero-overlay .d-flex {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px !important;
  }

  /* About */
  .about-section .col-lg-6 {
    animation: none !important;
  }

  /* Cards */
  .why-card,
  .product-card,
  .blog-card {
    margin-bottom: 5px;
  }

  .contact-info-card {
    margin-bottom: 20px;
    height: auto;
  }

  .contact-form-card {
    height: auto;
  }

  /* Footer */
  .footer .col-lg-4,
  .footer .col-lg-2,
  .footer .col-lg-3 {
    margin-bottom: 25px;
  }

  /* Swiper */
  .productSwiper {
    padding: 10px 0 40px !important;
  }
}

/* Mobile 576px - 767px */
@media (max-width: 767px) {
  .logo-img {
    width: 100px;
    height: auto;
  }

  /* Navbar */
  #mainNav {
    min-height: 55px !important;
  }

  #mainNav .container {
    min-height: 55px;
  }

  #mainNav .navbar-collapse {
    background: #1a1a1a;
    padding: 10px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  #mainNav .nav-link {
    padding: 10px 15px !important;
    border-radius: 8px;
  }

  /* Hero */
  .hero-section {
    height: 100vh;
    min-height: 100vh;
    padding-top: 55px;
  }

  .hero-overlay {
    padding: 55px 15px 30px;
    text-align: center;
  }

  .hero-overlay h6 {
    font-size: 0.75rem;
  }

  .hero-overlay h1 {
    font-size: 1.8rem !important;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }

  .hero-overlay .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 10px !important;
  }

  .hero-overlay .btn {
    width: 100%;
    max-width: 240px;
  }

  /* Sections */
  section:not(.pp-hero) {
    padding: 50px 0 !important;
  }

  .display-5 {
    font-size: 1.5rem !important;
  }

  /* About */
  .overview-stat {
    margin-bottom: 10px;
  }

  .overview-card {
    padding: 15px;
  }

  /* Why cards */
  .why-card {
    padding: 20px 15px;
  }

  /* Products */
  .swiper-slide .product-card {
    padding: 20px 15px;
  }

  .productSwiper {
    padding: 10px 0 35px !important;
  }

  /* Blog */
  .blog-img,
  .blog-img-1,
  .blog-img-2,
  .blog-img-3 {
    height: 160px;
  }

  .blog-body {
    padding: 15px;
  }

  .blog-body h5 {
    font-size: 0.95rem;
  }

  /* Contact */
  .contact-info-card,
  .contact-form-card {
    padding: 20px 15px;
    height: auto;
  }

  .contact-item {
    gap: 10px;
  }

  /* FAQ */
  .faq-item .accordion-button {
    font-size: 0.88rem;
    padding: 12px 15px;
  }

  /* Footer */
  .footer-copy {
    text-align: center !important;
    margin-bottom: 5px;
  }

  .footer .row.align-items-center>div {
    text-align: center !important;
  }

  .footer-logo {
    width: 100px;
  }

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

/* Small Mobile 480px - 575px */
@media (max-width: 575px) {
  .logo-img {
    width: 90px;
    height: auto;
  }

  /* Hero */
  .hero-overlay h1 {
    font-size: 1.5rem !important;
  }

  .hero-overlay p {
    font-size: 0.88rem;
  }

  /* Typography */
  .display-5 {
    font-size: 1.3rem !important;
  }

  body {
    font-size: 0.95rem;
  }

  /* Cards */
  .why-card,
  .product-card {
    padding: 15px 12px;
  }

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

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

  /* Blog */
  .blog-img,
  .blog-img-1,
  .blog-img-2,
  .blog-img-3 {
    height: 140px;
  }

  /* Contact */
  .contact-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .social-icon,
  .footer-social {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  /* Buttons */
  .btn-lg {
    font-size: 0.88rem;
    padding: 10px 16px;
  }

  /* Footer */
  .footer-links a,
  .footer-contact li,
  .footer-desc {
    font-size: 0.82rem;
  }

  .tag-box .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .footer-logo {
    width: 90px;
  }
}

/* Extra Small Mobile below 380px */
@media (max-width: 380px) {
  .logo-img {
    width: 80px;
    height: auto;
  }

  .hero-overlay h1 {
    font-size: 1.3rem !important;
  }

  .display-5 {
    font-size: 1.1rem !important;
  }

  .hero-overlay .btn {
    max-width: 200px;
    font-size: 0.85rem;
  }

  .contact-form-card {
    padding: 15px 10px;
  }
}

/* Navbar Mobile Size Fix */
@media (max-width: 767px) {
  #mainNav {
    min-height: 70px !important;
  }

  #mainNav .container {
    min-height: 70px !important;
  }

  .logo-img {
    width: 120px !important;
    height: auto !important;
  }

  .hero-section {
    padding-top: 70px;
  }

  .hero-overlay {
    padding-top: 70px;
  }
}

/* Navbar Toggler Fix */
.navbar-toggler {
  border: 2px solid var(--blue) !important;
  padding: 6px 10px !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2352aae5' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Logo Mobile Fix */
@media (max-width: 767px) {
  .logo-img {
    width: 150px !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

@media (max-width: 380px) {
  .logo-img {
    width: 120px !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* Logo Blur Fix Mobile */
@media (max-width: 767px) {
  .logo-img {
    width: 130px !important;
    height: auto !important;
    object-fit: contain !important;
    image-rendering: auto;
    transform: none !important;
  }
}

/* Logo Sharp Fix All Devices */
.logo-img {
  object-fit: contain !important;
  image-rendering: auto;
}



/* Hero Mobile Height Fix */
@media (max-width: 767px) {
  .hero-section {
    height: 100svh !important;
    min-height: unset !important;
  }

  .hero-overlay {
    padding-top: 70px !important;
    padding-bottom: 30px !important;
  }

  .hero-overlay .row {
    min-height: unset !important;
  }
}

/* Product Card Image */
.product-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
  overflow: hidden;
}

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

/* Product Card Size Reduce */
.product-card {
  padding: 18px !important;
}

.product-img {
  height: 160px !important;
  margin-bottom: 10px !important;
}

.product-card h4 {
  font-size: 1rem !important;
  margin-bottom: 6px !important;
}

.product-card p {
  font-size: 0.85rem !important;
  margin-bottom: 6px !important;
}

.product-list {
  font-size: 0.82rem !important;
  margin: 8px 0 !important;
}

.icon-box {
  font-size: 1.8rem !important;
  margin-bottom: 8px !important;
}

.tag-box {
  margin-top: 10px !important;
}

.tag-box .badge {
  font-size: 0.72rem !important;
  padding: 4px 8px !important;
}

/* Product Card Image Shading & Heading Highlight */
.product-img {
  position: relative;
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  border-radius: 10px;
}

.product-card h4 {
  color: #1a1a1a !important;
  font-weight: 700 !important;
  border-left: 4px solid var(--blue);
  padding-left: 10px;
  margin-top: 12px !important;
  transition: color 0.3s ease;
}

.product-card:hover h4 {
  color: var(--blue) !important;
}

/* Logo Size */
.logo-img {
  height: 110px !important;
  width: auto !important;
  object-fit: contain !important;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

/* Product Card Font Size Increase */
.product-card h4 {
  font-size: 1.15rem !important;
}

.product-card p {
  font-size: 0.92rem !important;
}

.product-list {
  font-size: 0.88rem !important;
}

/* Global P Tag Font Size */
p {
  font-size: 1.05rem !important;
}

/* Footer Font Size */
.footer-desc {
  font-size: 1rem !important;
}

.footer-links a {
  font-size: 1rem !important;
}

.footer-contact li {
  font-size: 1rem !important;
}

.footer-copy {
  font-size: 0.95rem !important;
}

.footer-heading {
  font-size: 1.1rem !important;
}

/* Navbar Font Size */
#mainNav .nav-link {
  font-size: 1.25rem !important;
}

/* Footer Logo Center */
.footer .col-lg-4 {
  text-align: center;
}

.footer-logo {
  margin: 0 auto 15px !important;
}

.footer .col-lg-4 .d-flex {
  justify-content: center !important;
}

/* Text Justify */
p,
.product-list li,
.footer-desc,
.accordion-body,
.blog-body p,
.why-card p,
.overview-card p,
.contact-info-card p {
  text-align: justify !important;
}

/* Footer Description Compact */
.footer-desc {
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
  text-align: justify !important;
  color: #aaa !important;
}

/* Footer Left Align Fix */
.footer .col-lg-4 {
  text-align: left !important;
}

.footer-logo {
  margin: 0 0 15px !important;
}

.footer .col-lg-4 .d-flex {
  justify-content: flex-start !important;
}

.footer-desc {
  text-align: left !important;
}

/* Footer Desc 4 Lines */
.footer-desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Footer Desc Fix */
.footer-desc {
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
  font-size: 0.9rem !important;
  line-height: 1.8 !important;
}

/* Footer Desc Width */
.footer-desc {
  max-width: 280px !important;
}

/* Footer Equal Columns & Logo */
.footer .col-lg-4,
.footer .col-lg-2,
.footer .col-lg-3 {
  flex: 1 1 0 !important;
  max-width: 25% !important;
}

.footer-logo {
  width: 180px !important;
  height: auto !important;
}

@media (max-width: 991px) {

  .footer .col-lg-4,
  .footer .col-lg-2,
  .footer .col-lg-3 {
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
}

@media (max-width: 575px) {

  .footer .col-lg-4,
  .footer .col-lg-2,
  .footer .col-lg-3 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}

/* Footer Equal Columns Fix */
.footer .col-lg-3 {
  flex: 0 0 25% !important;
  max-width: 25% !important;
}

.footer-logo {
  width: auto !important;
  height: 110px !important;
  object-fit: contain !important;
}

@media (max-width: 991px) {
  .footer .col-lg-3 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

@media (max-width: 575px) {
  .footer .col-lg-3 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* Copyright Center */
.footer .row.align-items-center {
  justify-content: center !important;
}
.footer-copy-wrap {
  width: 100% !important;
  text-align: center !important;
}
.footer-copy {
  text-align: center !important;
  margin: 0 auto !important;
}

/* Copyright Mobile Fix */
@media (max-width: 767px) {
  .footer .row.align-items-center .col-md-6:first-child {
    text-align: center !important;
  }
}

/* Navbar Height Increase */
#mainNav {
  min-height: 85px !important;
}

#mainNav .container {
  min-height: 85px !important;
}

/* Navbar Height More */
#mainNav {
  min-height: 100px !important;
}

#mainNav .container {
  min-height: 100px !important;
}


/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d2a3e 60%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding: 80px 0;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2352aae5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero-badge {
  display: inline-block;
  background: rgba(82, 170, 229, 0.15);
  border: 1px solid rgba(82, 170, 229, 0.4);
  color: #52aae5;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.about-hero h1 span {
  color: #52aae5;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 15px auto 0;
}

.breadcrumb-wrap {
  margin-top: 30px;
}

.breadcrumb-wrap a {
  color: #52aae5;
  text-decoration: none;
  font-size: 0.95rem;
}

.breadcrumb-wrap span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin: 0 8px;
}

.breadcrumb-wrap p {
  display: inline;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 991px) {
  .about-hero {
    margin-top: 100px;
    padding: 60px 0;
  }

  .about-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    margin-top: 100px;
    padding: 50px 0;
  }

  .about-hero h1 {
    font-size: 1.9rem;
  }

  .about-hero p {
    font-size: 0.95rem !important;
  }

  .about-hero-badge {
    font-size: 0.75rem;
    padding: 5px 14px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    margin-top: 100px;
    padding: 40px 0;
  }

  .about-hero h1 {
    font-size: 1.5rem;
  }
}

.about-img-wrap {
  position: relative;
  padding: 20px;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-img-gradient {
  background: linear-gradient(135deg, #1a3a5c 0%, #52aae5 100%);
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.about-img-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 60, 0.55);
}

.about-img-gradient i,
.about-img-gradient h4,
.about-img-gradient p {
  position: relative;
  z-index: 1;
}

.about-img-gradient i {
  font-size: 4rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.about-img-gradient h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}

.about-img-gradient p {
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 5px 0 0;
}

.about-img-badge {
  position: absolute;
  bottom: 40px;
  left: 0;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
}

.about-img-badge i {
  color: #52aae5;
  font-size: 1.2rem;
}

.about-img-badge2 {
  position: absolute;
  top: 40px;
  right: 0;
  background: #52aae5;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(82, 170, 229, 0.35);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.about-img-badge2 i {
  font-size: 1.2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #52aae5;
  font-size: 0.92rem;
  font-weight: 500;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.about-feature:hover {
  background: #e8f4fd;
  transform: translateX(5px);
}

.about-feature i {
  color: #52aae5;
  font-size: 1rem;
  flex-shrink: 0;
}

.vm-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 35px;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.vision-card::before {
  background: linear-gradient(90deg, #52aae5, #a8d8f5);
}

.mission-card::before {
  background: linear-gradient(90deg, #1a3a5c, #52aae5);
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(82, 170, 229, 0.15);
}

.vm-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #52aae5, #3a8fc7);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(82, 170, 229, 0.35);
}

.mission-icon {
  background: linear-gradient(135deg, #1a3a5c, #52aae5);
}

.vm-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.vm-line {
  width: 45px;
  height: 4px;
  background: #52aae5;
  border-radius: 2px;
  margin-bottom: 18px;
}

.vm-card p {
  color: #666;
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.vm-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #444;
  font-size: 0.92rem;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.vm-list li:last-child {
  border-bottom: none;
}

.vm-list li i {
  color: #52aae5;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.values-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.values-wrap h5 {
  color: #1a1a1a;
}

.value-box {
  text-align: center;
  padding: 25px 15px;
  border-radius: 14px;
  background: #f8f9fa;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.value-box:hover {
  background: #e8f4fd;
  border-bottom-color: #52aae5;
  transform: translateY(-5px);
}

.value-box i {
  font-size: 2rem;
  color: #52aae5;
  display: block;
  margin-bottom: 12px;
}

.value-box h6 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.value-box p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #52aae5, #1a3a5c);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 40px;
  position: relative;
}

.timeline-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 18px;
  height: 18px;
  background: #52aae5;
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(82, 170, 229, 0.2);
  z-index: 1;
}

.active-dot {
  background: #1a3a5c;
  width: 24px;
  height: 24px;
  box-shadow: 0 0 0 6px rgba(82, 170, 229, 0.25);
}

.timeline-content {
  background: #fff;
  border-radius: 14px;
  padding: 25px 28px;
  max-width: 420px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  border-left: 4px solid #52aae5;
  transition: all 0.3s ease;
}

.timeline-item.right .timeline-content {
  border-left: none;
  border-right: 4px solid #52aae5;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(82, 170, 229, 0.15);
}

.active-content {
  border-color: #1a3a5c;
}

.timeline-year {
  display: inline-block;
  background: #52aae5;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timeline-content h5 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #666;
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .timeline::before {
    left: 18px;
  }

  .timeline-item,
  .timeline-item.right {
    justify-content: flex-start;
    padding-left: 55px;
    padding-right: 0;
  }

  .timeline-dot {
    left: 18px;
  }

  .timeline-content {
    max-width: 100%;
    border-left: 4px solid #52aae5 !important;
    border-right: none !important;
  }
}

/* ===== PRODUCTS PAGE ===== */
.products-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d2a3e 60%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding: 80px 0;
}

.products-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2352aae5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.products-hero .container {
  position: relative;
  z-index: 2;
}

.products-hero-badge {
  display: inline-block;
  background: rgba(82, 170, 229, 0.15);
  border: 1px solid rgba(82, 170, 229, 0.4);
  color: #52aae5;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.products-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.products-hero h1 span {
  color: #52aae5;
}

.products-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 15px auto 0;
}

@media (max-width: 991px) {
  .products-hero {
    margin-top: 100px;
    padding: 60px 0;
  }

  .products-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .products-hero {
    margin-top: 100px;
    padding: 50px 0;
  }

  .products-hero h1 {
    font-size: 1.9rem;
  }

  .products-hero p {
    font-size: 0.95rem !important;
  }

  .products-hero-badge {
    font-size: 0.75rem;
    padding: 5px 14px;
  }
}

@media (max-width: 480px) {
  .products-hero {
    margin-top: 100px;
    padding: 40px 0;
  }

  .products-hero h1 {
    font-size: 1.5rem;
  }
}

.pg-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 4px solid #52aae5;
}

.pg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(82, 170, 229, 0.18);
}

.pg-featured {
  border-bottom-color: #1a3a5c;
}

.pg-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.pg-card:hover .pg-img {
  transform: scale(1.04);
}

.pg-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pg-badges {
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pg-body h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  border-left: 4px solid #52aae5;
  padding-left: 10px;
}

.pg-body p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.pg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.pg-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #444;
  padding: 5px 0;
  border-bottom: 1px solid #f5f5f5;
}

.pg-list li:last-child {
  border-bottom: none;
}

.pg-list li i {
  color: #52aae5;
  font-size: 1rem;
  flex-shrink: 0;
}

.pg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #52aae5;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.pg-btn:hover {
  background: #1a3a5c;
  color: #fff;
  transform: translateX(4px);
}

.pg-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pg-title-link:hover {
  color: #52aae5;
}

/* ===== BLOG PAGE ===== */
.blog-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d2a3e 60%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding: 80px 0;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2352aae5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.blog-hero .container {
  position: relative;
  z-index: 2;
}

.blog-hero-badge {
  display: inline-block;
  background: rgba(82, 170, 229, 0.15);
  border: 1px solid rgba(82, 170, 229, 0.4);
  color: #52aae5;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blog-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.blog-hero h1 span {
  color: #52aae5;
}

.blog-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 15px auto 0;
}

@media (max-width: 991px) {
  .blog-hero {
    margin-top: 100px;
    padding: 60px 0;
  }

  .blog-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .blog-hero {
    margin-top: 100px;
    padding: 50px 0;
  }

  .blog-hero h1 {
    font-size: 1.9rem;
  }

  .blog-hero p {
    font-size: 0.95rem !important;
  }

  .blog-hero-badge {
    font-size: 0.75rem;
    padding: 5px 14px;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    margin-top: 100px;
    padding: 40px 0;
  }

  .blog-hero h1 {
    font-size: 1.5rem;
  }
}

.blog-page-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(82, 170, 229, 0.18);
}

.blog-page-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.4s ease;
}

.blog-page-card:hover .blog-page-img {
  transform: scale(1.03);
}

.blog-page-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
}

.blog-page-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #52aae5;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-page-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 12px;
}

.blog-meta i {
  color: #52aae5;
}

.blog-page-body h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-page-card:hover .blog-page-body h4 {
  color: #52aae5;
}

.blog-page-body p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #52aae5;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 15px;
  transition: gap 0.3s ease;
}

.blog-read-btn:hover {
  gap: 10px;
  color: #1a3a5c;
}

.blog-card-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.blog-page-card:hover .blog-card-icon {
  background: #52aae5;
  border-color: #52aae5;
  transform: scale(1.1) rotate(10deg);
}

.blog-featured {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-featured:hover {
  box-shadow: 0 15px 40px rgba(82, 170, 229, 0.18);
}

.blog-featured-img {
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-featured-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
}

.blog-featured-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #52aae5;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-featured-body {
  padding: 35px;
}

.blog-featured-body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-featured-body p {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d2a3e 60%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding: 80px 0;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2352aae5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.contact-hero-badge {
  display: inline-block;
  background: rgba(82, 170, 229, 0.15);
  border: 1px solid rgba(82, 170, 229, 0.4);
  color: #52aae5;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.contact-hero h1 span {
  color: #52aae5;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 15px auto 0;
}

@media (max-width: 991px) {
  .contact-hero {
    margin-top: 100px;
    padding: 60px 0;
  }

  .contact-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .contact-hero {
    margin-top: 100px;
    padding: 50px 0;
  }

  .contact-hero h1 {
    font-size: 1.9rem;
  }

  .contact-hero p {
    font-size: 0.95rem !important;
  }

  .contact-hero-badge {
    font-size: 0.75rem;
    padding: 5px 14px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    margin-top: 100px;
    padding: 40px 0;
  }

  .contact-hero h1 {
    font-size: 1.5rem;
  }
}

.contact-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
  height: 100%;
}

.contact-box:hover {
  transform: translateY(-8px);
  border-bottom-color: #52aae5;
  box-shadow: 0 15px 35px rgba(82, 170, 229, 0.15);
}

.contact-box-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #52aae5, #3a8fc7);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(82, 170, 229, 0.3);
}

.contact-box h5 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-box p {
  color: #666;
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.8;
}

.contact-box a {
  color: #52aae5;
  text-decoration: none;
  font-weight: 500;
}

.contact-box a:hover {
  color: #1a3a5c;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form-wrap h3 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.contact-form-wrap .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #2c3e50;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1.5px solid #dde;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: #52aae5;
  box-shadow: 0 0 0 0.2rem rgba(82, 170, 229, 0.2);
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-sidebar {
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2a3e 100%);
  border-radius: 18px;
  padding: 35px 30px;
  height: 100%;
}

.contact-sidebar h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 25px;
}

.contact-sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-sidebar-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-sidebar-icon {
  width: 44px;
  height: 44px;
  background: rgba(82, 170, 229, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #52aae5;
  flex-shrink: 0;
}

.contact-sidebar-item h6 {
  color: #52aae5;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-sidebar-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.7;
}

.contact-sidebar-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.contact-sidebar-item a:hover {
  color: #52aae5;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: #52aae5;
  color: #fff;
  transform: translateY(-3px);
}

/* ===== CTA SECTIONS ===== */
.cta-section {
  background: linear-gradient(135deg, #1a3a5c 0%, #52aae5 100%);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 22px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37,211,102,0.5);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(37,211,102,0.7);
  color: #fff;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(82,170,229,0.5);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 6px 20px rgba(82,170,229,0.7);
}
/* ===== PP-HERO MOBILE FIX ===== */
@media (max-width: 767px) {
  .logo-img { height: 60px !important; width: auto !important; }
  #mainNav { min-height: 70px !important; }
  #mainNav .container { min-height: 70px !important; }
  .pp-hero { padding-top: 85px !important; padding-bottom: 50px !important; }
}
@media (max-width: 480px) {
  .logo-img { height: 55px !important; width: auto !important; }
  #mainNav { min-height: 65px !important; }
  #mainNav .container { min-height: 65px !important; }
  .pp-hero { padding-top: 80px !important; padding-bottom: 40px !important; }
}


/* ===== PRODUCT CARD BUTTON ===== */
.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #52aae5;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: none !important;
}
.product-btn:hover {
  background: #1a3a5c;
  color: #fff !important;
  transform: translateX(4px);
  text-decoration: none !important;
}

/* ===== PRODUCT CARD TITLE & IMAGE LINK ===== */
.product-title-link {
  color: #1a1a1a !important;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: color 0.3s ease;
}
.product-card:hover .product-title-link { color: #52aae5 !important; }
.product-card a .product-img { display: block; }
.product-card a { text-decoration: none !important; border-bottom: none !important; }

/* ===== PRODUCT IMAGE OVERFLOW FIX ===== */
.product-card .product-img {
  overflow: visible !important;
  transform: none !important;
}
.product-card:hover .product-img {
  transform: none !important;
}
.product-card a {
  overflow: hidden;
  display: block;
  border-radius: 10px;
}

/* ===== PRODUCT IMG & CARD OVERFLOW FIX ===== */
.product-img {
  overflow: hidden !important;
  border-radius: 10px !important;
  transform: none !important;
}
.product-card:hover .product-img {
  transform: none !important;
}
.product-card {
  overflow: visible !important;
}
.product-card a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}
.product-card a .product-img {
  margin-bottom: 0 !important;
}

/* ===== PRODUCT IMG HEIGHT ===== */
.product-img {
  height: 220px !important;
}

/* ===== CERTIFICATE PAGE ===== */

/* Hero */
.cert-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d2a3e 60%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding: 80px 0;
}

.cert-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2352aae5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cert-hero .container {
  position: relative;
  z-index: 2;
}

.cert-hero-badge {
  display: inline-block;
  background: rgba(82, 170, 229, 0.15);
  border: 1px solid rgba(82, 170, 229, 0.4);
  color: #52aae5;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cert-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.cert-hero h1 span { color: #52aae5; }

.cert-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 15px auto 0;
}

@media (max-width: 991px) {
  .cert-hero { padding: 60px 0; }
  .cert-hero h1 { font-size: 2.4rem; }
}
@media (max-width: 767px) {
  .cert-hero { padding: 50px 0; }
  .cert-hero h1 { font-size: 1.9rem; }
  .cert-hero p { font-size: 0.95rem !important; }
}
@media (max-width: 480px) {
  .cert-hero { padding: 40px 0; }
  .cert-hero h1 { font-size: 1.5rem; }
}

/* Quality Section */
.quality-section { background: #eef1f4; }

/* Quality Process Steps */
.qp-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.qp-step:last-child { border-bottom: none; }

.qp-num {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #52aae5, #3a8fc7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.qp-step h6 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.qp-step p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* QMS Certificate Card */
.qms-card {
  background: #fff;
  border-bottom: 4px solid #52aae5;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 16px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.qms-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(82, 170, 229, 0.2);
}

.qms-card-img-wrap { position: relative; }

.qms-card-img-wrap img {
  width: 100%;
  display: block;
}

.qms-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 92, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.qms-card:hover .qms-card-overlay { opacity: 1; }

.qms-card-overlay i {
  font-size: 3rem;
  color: #fff;
}

.qms-card-footer {
  padding: 14px 4px 4px;
  text-align: center;
  background: linear-gradient(135deg, #1a3a5c, #0d2a3e);
  margin: 16px -16px -16px;
}

.qms-card-footer h6 {
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  padding: 12px 0 2px;
}

.qms-card-footer span {
  font-size: 0.8rem;
  color: #52aae5;
  font-weight: 600;
  display: block;
  padding-bottom: 14px;
}

/* Lightbox */
.cert-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  overflow: auto;
  padding: 20px;
}

.cert-lightbox.active { display: block; }

.cert-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
  margin: auto;
}

.cert-lightbox-close {
  position: fixed;
  top: 16px;
  right: 22px;
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cert-lightbox-controls {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10001;
}

.cert-lightbox-controls button {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 0;
}

.cert-lightbox-controls button:hover { background: #52aae5; }

/* ===== ISO BADGE - CONTACT SIDEBAR ===== */
.iso-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(82, 170, 229, 0.35);
  border-left: 3px solid #52aae5;
}

.iso-badge img {
  height: 55px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.iso-badge div {
  display: flex;
  flex-direction: column;
}

.iso-badge span {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}

.iso-badge small {
  color: #52aae5;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== ISO CONTACT CARD ===== */
.contact-box-iso {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.iso-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.contact-box-iso h5 {
  color: #1a3a5c;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-box-iso p {
  font-size: 0.88rem;
  color: #666;
  margin: 0;
}

/* ===== COPYRIGHT FORCE CENTER ===== */
.footer hr + .row .col-md-6,
.footer .footer-divider + .row .col-md-6,
.footer .row.align-items-center > [class*="col"] {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  text-align: center !important;
}

.footer-copy {
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}
