:root {
  --clr-primary: #203966;
  --clr-primary-dark: #203966;
  --clr-primary-soft: rgba(0, 185, 255, 0.15);
  --clr-dark-900: #071b3a;
  --clr-dark-800: #0a1d3a;
  --clr-navy: #203966;
  --clr-white: #ffffff;
  --clr-text-main: #111111;
  --clr-text-muted: #2b2b2b;
  --clr-text-light: #ffffff;
  --shadow-header: 0 8px 25px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 12px 30px rgba(0, 185, 255, 0.4);
  --overlay-hero: rgba(0, 0, 0, 0.397);
  --ease-fast: 0.25s ease;
  --ease-base: 0.35s ease;
}

/* ===== FULL PAGE OVERLAY ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: #071b3a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
.loader {
  color: #fff !important;
}
#page-loader {
  transition: opacity 0.3s ease;
}

/* ===== LOADER ===== */
.loader {
  width: 40px;
  aspect-ratio: 1;
  color: #f03355;
  position: relative;
  background: radial-gradient(10px, currentColor 94%, #0000);
}

.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(9px at bottom right, #0000 94%, currentColor) top left,
    radial-gradient(9px at bottom left, #0000 94%, currentColor) top right,
    radial-gradient(9px at top right, #0000 94%, currentColor) bottom left,
    radial-gradient(9px at top left, #0000 94%, currentColor) bottom right;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  animation: l18 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes l18 {
  33% {
    inset: -10px;
    transform: rotate(0deg);
  }
  66% {
    inset: -10px;
    transform: rotate(90deg);
  }
  100% {
    inset: 0;
    transform: rotate(90deg);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

/* PAGE LOADER */

.page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #071b3a 0%, #0a2d52 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: loaderFadeOut 1s ease 2s forwards;
}

.loader-content {
  text-align: center;
  color: white;
}

.loader-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation:
    logoFloat 2s ease infinite,
    logoRotate 3s ease infinite;
}

.loader-logo::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 65px;
  background: white;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  animation: pulse 2s ease infinite;
}

.loader-logo::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 14px;
  background: white;
  border-radius: 2px;
}

.loader-text {
  font-size: 28px;
  font-weight: 700;
  animation: textGlow 1.5s ease infinite;
  text-transform: uppercase;
  /* letter-spacing: 3px; */
}

.loader-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  margin: 20px auto 0;
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress-bar {
  height: 100%;
  background: var(--clr-white);
  animation: progressBar 2s ease forwards;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-15px) scale(1.05);
  }
}

@keyframes logoRotate {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes textGlow {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 185, 255, 0.5);
  }

  50% {
    opacity: 0.8;
    text-shadow: 0 0 20px rgba(0, 185, 255, 0.8);
  }
}

@keyframes progressBar {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes loaderFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* TOP BAR */

.top-bar {
  background: var(--clr-primary-dark);
  color: var(--clr-text-light);
  padding: 10px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-bar i {
  margin-right: 8px;
  color: var(--clr-white);
  font-size: 14px;
}

.top-bar a {
  color: var(--clr-text-light);
  text-decoration: none;
  transition: var(--ease-base);
}

.top-bar a:hover {
  color: var(--clr-primary);
}

/* HEADER */

.main-header {
  background: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 80px;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--ease-base);
}

.main-header.scrolled {
  box-shadow: var(--shadow-header);
}

/* LOGO */
/* =========================
   HEADER
========================= */

.main-header {
  background: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 80px;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--ease-base);
}

.main-header.scrolled {
  box-shadow: var(--shadow-header);
}

/* =========================
   LOGO
========================= */

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav__logo {
  display: flex;
  align-items: center;
  transition: var(--ease-base);
}

/* Responsive */

@media (max-width: 1200px) {
  .main-header {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 768px) {
  .nav__logo img {
    width: 50px;
  }
}

@media (max-width: 576px) {
  .main-header {
    padding: 12px 20px;
  }

  .nav__logo img {
    width: 45px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* fix nav bar */
/* ========================= CRITICAL FIX FOR 1140px-992px ========================= */
@media (min-width: 993px) and (max-width: 1255px) {
  /* Override any existing styles */
  .main-header {
    padding: 12px 30px !important;
    gap: 20px !important;
  }

  /* Force logo size reduction */
  .logo .nav__logo img {
    width: 130px !important;
    height: auto !important;
  }

  /* Force navigation spacing */
  .main-header .main-nav {
    gap: 12px !important;
    margin-left: auto !important;
    margin-right: 15px !important;
  }

  /* Force nav item sizes */
  .main-nav .nav-item {
    font-size: 13px !important;
    padding: 8px 5px !important;
    white-space: nowrap !important;
  }

  /* Force button size */
  .main-header .quote-btn {
    padding: 10px 25px !important;
    font-size: 13px !important;
  }

  /* Adjust top bar if needed */
  .top-bar {
    padding: 8px 30px !important;
    font-size: 12px !important;
  }
}
@media (min-width: 993px) and (max-width: 1024px) {
  .main-header .main-nav {
    gap: 5px !important;
  }
}
/* =========================
   HEADER
========================= */

.main-header {
  background: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 80px;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--ease-base);
}

.main-header.scrolled {
  box-shadow: var(--shadow-header);
}

/* =========================
   LOGO
========================= */

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav__logo {
  display: flex;
  align-items: center;
  transition: var(--ease-base);
}

.nav__logo img {
  width: 120px;
  height: auto;
  transition: var(--ease-base);
}

.logo-text h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.1;
  margin-bottom: 2px;
  letter-spacing: -0.015em;
}

.logo-text span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 9px;
  color: var(--clr-text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

/* Responsive */
@media (max-width: 1200px) {
  .main-header {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 768px) {
  .nav__logo img {
    width: 90px;
  }

  .logo-text h2 {
    font-size: 24px;
  }

  .logo-text span {
    font-size: 10px;
  }
}

@media (max-width: 576px) {
  .main-header {
    padding: 12px 20px;
  }

  .nav__logo img {
    width: 70px;
  }

  .logo-text h2 {
    font-size: 20px;
  }

  .logo-text span {
    font-size: 9px;
  }
}

.logo-img {
  width: 60px;
  height: auto;
  transition: var(--ease-base);
}

.logo-img:hover {
  transform: scale(1.05);
}

/* NAVIGATION */

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

@media (min-width: 993px) {
  .main-header {
    gap: 60px;
    /* controls space between nav and button */
  }

  .main-nav {
    margin-left: auto;
    /* space before Contact Us */
  }
}

.nav-item {
  position: relative;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
  color: var(--clr-text-main);
  text-decoration: none;
  font-size: 15px;
  transition: var(--ease-base);
}

.nav-item i {
  margin-left: 5px;
  font-size: 11px;
  transition: var(--ease-base);
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: var(--clr-primary);
  transition: var(--ease-base);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.nav-item:hover {
  color: var(--clr-primary);
}

/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--clr-text-main);
  transition: var(--ease-base);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* MOBILE MENU */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--clr-white);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  padding: 80px 0 30px;
  transition: right 0.4s ease;
  z-index: 1000;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.close-menu-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--clr-text-main);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1005;
}

.close-menu-btn:hover {
  color: var(--clr-primary);
}

.mobile-nav-item {
  padding: 0;
  border-bottom: 1px solid #eee;
}

.mobile-nav-item a {
  color: var(--clr-text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.mobile-nav-item a:hover {
  background-color: #f5f5f5;
  color: var(--clr-primary);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 15px;
}

.mobile-submenu.active {
  max-height: 500px;
  margin-top: 10px;
}

.mobile-submenu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text-muted);
  border-bottom: none;
}

.mobile-submenu a:hover {
  color: var(--clr-primary);
  padding-left: 10px;
}

.mobile-quote-btn {
  margin-top: 20px;
  display: block;
  text-align: center;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--ease-base);
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* DROPDOWN */

.dropdown {
  position: relative;
}

.dropdown-menu,
.mega-menu {
  position: absolute;
  top: 45px;
  left: 0;
  background: var(--clr-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  padding: 20px;
  min-width: 200px;
  border-top: 3px solid var(--clr-primary);
}

.dropdown-menu a,
.mega-menu a {
  display: block;
  padding: 10px 15px;
  color: var(--clr-text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: var(--ease-base);
  border-radius: 4px;
}

.dropdown-menu a:hover,
.mega-menu a:hover {
  background: var(--clr-primary-soft);
  color: var(--clr-primary);
  padding-left: 20px;
}

.dropdown:hover .dropdown-menu,
.dropdown:hover .mega-menu {
  display: block;
  animation: fadeDown 0.3s ease;
}

/* QUOTE BUTTON */

.quote-btn {
  background: var(--clr-primary);
  color: var(--clr-text-light);
  padding: 15px 35px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: var(--ease-base);
  font-size: 14px;
  /* letter-spacing: 0.5px; */
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}

.quote-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.4s ease;
}

.quote-btn:hover::before {
  left: 0;
}

.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* =========================
           HERO SLIDER
        ========================= */
.hero-slider-container {
  position: relative;
  height: 85vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: grab;
}

.hero-slides-wrapper:active {
  cursor: grabbing;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Ken Burns Effect */
.hero-slide.active {
  animation: kenBurns 12s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--clr-text-light);
  max-width: 900px;
  padding: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-slide.active .hero-slide-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-tag {
  color: var(--clr-white);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 13px;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.15em;
}

.hero-slide h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-slide p {
  font-size: 16px;
  margin-bottom: 35px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-btn {
  background: var(--clr-primary);
  padding: 18px 45px;
  color: var(--clr-text-light);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  font-size: 15px;
  transition: var(--ease-base);
  z-index: 3;
}

.hero-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--clr-white);
  transform: translateX(-100%);
  transition: var(--ease-base);
  z-index: -1;
}

.hero-btn:hover::after {
  transform: translateX(0);
}

.hero-btn:hover {
  color: var(--clr-dark-900);
  transform: translateY(-3px) scale(1.05);
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--clr-white);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-arrow:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
  transform: translateY(-50%) scale(1.05);
}

.prev-arrow {
  left: 40px;
}

.next-arrow {
  right: 40px;
}

/* ANIMATIONS */

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .top-bar,
  .main-header {
    padding-left: 40px;
    padding-right: 40px;
  }

  .main-nav {
    gap: 20px;
  }

  .hero-slide h1 {
    font-size: 46px;
  }
}

@media (max-width: 992px) {
  .main-nav,
  .quote-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .top-bar {
    flex-direction: column;
    gap: 10px;
    padding: 15px 30px;
    text-align: center;
  }

  .top-bar-left,
  .top-bar-right {
    flex-direction: column;
    gap: 10px;
  }

  .main-header {
    padding: 15px 30px;
  }

  .hero-slide h1 {
    font-size: 38px;
  }

  .hero-slide p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    width: 50px;
  }

  .logo-text h2 {
    font-size: 16px;
  }
  .logo-text span {
    font-size: 8px;
  }

  .hero-slider-container {
    height: 65vh;
  }

  .hero-slide h1 {
    font-size: 32px;
  }

  .hero-tag {
    font-size: 11px;
  }

  .hero-slide p {
    font-size: 14px;
  }

  .hero-btn {
    padding: 14px 30px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .top-bar {
    padding: 12px 20px;
    font-size: 11px;
  }

  .main-header {
    padding: 12px 20px;
  }

  .logo-img {
    width: 45px;
  }

  .logo-text h2 {
    font-size: 14px;
  }

  .logo-text span {
    font-size: 7px;
  }

  .hero-slider-container {
    height: 55vh;
  }

  .hero-slide h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-slide p {
    font-size: 13px;
    margin-bottom: 25px;
  }
}

/* =========================
       ABOUT US SECTION STYLES
    ========================= */

.about-section {
  background: var(--clr-white);
  padding: 70px 80px;
  position: relative;
  overflow: hidden;
}

.about-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section Header */

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  color: var(--clr-primary);
  font-size: 14px;
  font-weight: 700;
  /* letter-spacing: 3px; */
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  position: relative;
}

.section-tag::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--clr-primary);
}

.section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  color: var(--clr-dark-900);
  margin-bottom: 25px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--clr-text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* About Content Layout */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image Container */

.about-image-container {
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(7, 27, 58, 0.15);
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image:hover {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(7, 27, 58, 0.4) 0%,
    rgba(32, 57, 102, 0.2) 100%
  );
  z-index: 1;
}

/* Text Container */

.about-text-container {
  padding: 20px;
}

.about-intro h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--clr-dark-900);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.about-intro h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--clr-primary);
}

.about-intro p {
  font-size: 16px;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Stats Grid */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 50px 0 40px;
}

.stat-card {
  background: var(--clr-primary-soft);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--clr-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--clr-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 22px;
  flex-shrink: 0;
}

.stat-content h4 {
  font-size: 36px;
  font-weight: 800;
  color: var(--clr-dark-900);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-content p {
  font-size: 14px;
  color: var(--clr-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  /* letter-spacing: 1px; */
}

/* CTA Button */

.about-cta {
  margin-top: 40px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 18px 35px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 15px;
  /* letter-spacing: 0.5px; */
  position: relative;
  overflow: hidden;
}

.about-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.4s ease;
}

.about-btn:hover::before {
  left: 0;
}

.about-btn:hover {
  transform: translateX(10px);
}

.about-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.about-btn:hover i {
  transform: translateX(5px);
}

/* =========================
       RESPONSIVE STYLES
    ========================= */

@media (max-width: 1200px) {
  .about-section {
    padding: 50px 60px;
  }

  .about-content {
    gap: 60px;
  }

  .about-image-container {
    height: 350px;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 40px 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image-container {
    height: 300px;
  }

  .section-title {
    font-size: 36px;
    font-weight: 600;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .stats-grid {
    gap: 25px;
  }

  .stat-content h4 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 30px 30px;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-title {
    font-size: 32px;
    font-weight: 600;
  }

  .about-image-container {
    height: 250px;
  }

  .experience-badge {
    padding: 15px 20px;
  }

  .experience-badge .years {
    font-size: 36px;
  }

  .experience-badge .text {
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .stat-content h4 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 30px 20px;
  }

  .section-tag {
    font-size: 12px;
    /* letter-spacing: 2px; */
  }

  .section-title {
    font-size: 28px;
    font-weight: 600;
  }

  .about-image-container {
    height: 350px;
  }

  .experience-badge {
    bottom: 20px;
    left: 20px;
    padding: 12px 15px;
  }

  .experience-badge .years {
    font-size: 32px;
  }

  .experience-badge .text {
    font-size: 12px;
  }

  .about-intro h3 {
    font-size: 24px;
  }

  .about-btn {
    padding: 16px 30px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .about-image-container {
    height: 300px;
  }

  .experience-badge {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .experience-badge .years {
    font-size: 28px;
  }
}
/* products */
/* =========================
   PRODUCTS SECTION
========================= */

.pdf-products-section {
  padding: 70px 0;
  background: #ededed;
}

/* =========================
   GRID
========================= */

.pdf-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =========================
   CARD
========================= */

.pdf-product-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
}

.pdf-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--clr-primary);
}

/* =========================
   BOTTOM ACCENT LINE (OPTION 1)
========================= */

.pdf-product-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--clr-primary);
  transition: width 0.35s ease;
}

.pdf-product-card:hover::after {
  width: 100%;
}

/* =========================
   IMAGE
========================= */

.pdf-product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* IMAGE ZOOM (OPTION 2) */
.pdf-product-card:hover img {
  transform: scale(1.06);
}

/* =========================
   CONTENT
========================= */

.pdf-card-content {
  padding: 24px;
}

.pdf-card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.pdf-product-card:hover h3 {
  color: var(--clr-primary);
}

.pdf-card-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.pdf-card-content span {
  font-size: 14px;
  opacity: 0.8;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .pdf-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pdf-products-grid {
    grid-template-columns: 1fr;
  }

  .pdf-product-card img {
    height: 220px;
  }
}

/* SECTION */
.pdf-products-section {
  padding: 70px 0;
}

/* GRID */
.pdf-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.pdf-product-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.pdf-product-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-primary);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.pdf-product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* CONTENT */
.pdf-card-content {
  padding: 24px;
}

.pdf-card-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.pdf-product-card:hover h3 {
  color: var(--clr-primary);
}

.pdf-card-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.pdf-card-content span {
  font-size: 14px;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .pdf-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pdf-products-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
       STATS COUNTER SECTION STYLES
    ========================= */

.stats-counter-section {
  background:
    linear-gradient(
      135deg,
      rgba(10, 18, 30, 0.76) 0%,
      rgba(12, 25, 55, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 70px 80px;
  position: relative;
  overflow: hidden;
}

.stats-counter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--clr-primary) 50%,
    transparent 100%
  );
}

.stats-counter-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Stats Grid */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Stat Item */

.stat-item {
  text-align: center;
  position: relative;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--clr-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
  background: var(--clr-primary);
}

.stat-item:hover {
  color: var(--clr-primary);
  text-shadow: 0 0 20px rgba(34, 106, 214, 0.3);
}

.stat-number:hover {
  color: var(--clr-white);
}

.stat-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--clr-primary);
  transition: width 0.4s ease;
}

.stat-item:hover .stat-border {
  width: 100%;
}

/* Stat Icon */

.stat-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--clr-white);
  font-size: 32px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.stat-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover .stat-icon::after {
  opacity: 1;
}

/* Stat Content */

.stat-content {
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 60px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 10px;
  line-height: 1;
  transition: color 0.3s ease;
}

.stat-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
  text-transform: uppercase;
  /* letter-spacing: 1px; */
}

.stat-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.5;
}

/* Pattern Overlay */

.stats-counter-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(34, 76, 214, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 153, 214, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

/* =========================
       RESPONSIVE STYLES
    ========================= */

@media (max-width: 1200px) {
  .stats-counter-section {
    padding: 50px 60px;
  }

  .stats-grid {
    gap: 30px;
  }

  .stat-item {
    padding: 35px 15px;
  }

  .stat-number {
    font-size: 50px;
  }

  .stat-title {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .stats-counter-section {
    padding: 80px 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin-bottom: 20px;
  }

  .stat-number {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .stats-counter-section {
    padding: 70px 30px;
  }

  .stats-grid {
    gap: 25px;
  }

  .stat-item {
    padding: 30px 15px;
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-title {
    font-size: 18px;
  }

  .stat-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .stats-counter-section {
    padding: 60px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    padding: 30px;
  }

  .stat-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-title {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .stat-item {
    padding: 25px 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-title {
    font-size: 16px;
  }

  .stat-subtitle {
    font-size: 12px;
  }
}

/* =========================
       CLIENTS LOGO SECTION STYLES
    ========================= */

.clients-section {
  background: var(--clr-white);
  padding: 70px 80px;
  position: relative;
  overflow: hidden;
}

.clients-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section Header */

.clients-section .section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.clients-section .section-tag {
  color: var(--clr-primary);
  font-size: 14px;
  font-weight: 700;
  /* letter-spacing: 3px; */
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  position: relative;
}

.clients-section .section-tag::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--clr-primary);
}

.clients-section .section-title {
  font-size: 42px;
  color: var(--clr-dark-900);
  margin-bottom: 25px;
  line-height: 1.2;
}

.clients-section .section-subtitle {
  font-size: 18px;
  color: var(--clr-text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Logo Scroll Container */

.logo-scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Logo Scroll Track */

.logo-scroll-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollLeft 20s linear infinite;
  padding: 20px 0;
}

.logo-scroll-track.reverse {
  animation: scrollRight 18s linear infinite;
  margin-top: 40px;
}

/* Pause animation on hover */

.logo-scroll-container:hover .logo-scroll-track {
  animation-play-state: paused;
}

.logo-scroll-container:hover .logo-scroll-track.reverse {
  animation-play-state: paused;
}

/* Client Logo */

.client-logo {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  position: relative;
}

.logo-wrapper {
  width: 100%;
  height: 100%;
  background: var(--clr-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(7, 27, 58, 0.1);
  border: 1px solid #eef2f7;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.logo-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--clr-primary) 0%,
    var(--clr-primary-dark) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.client-logo:hover .logo-wrapper {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(7, 27, 58, 0.15);
  border-color: var(--clr-primary);
}

.client-logo:hover .logo-wrapper::before {
  opacity: 0.1;
}

.client-logo:hover .logo-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  filter: grayscale(0.3);
  opacity: 0.9;
}

.client-logo:hover .logo-img {
  filter: grayscale(0) brightness(1.1);
  opacity: 1;
}

/* Gradient Overlays */

.logo-scroll-container::before,
.logo-scroll-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.logo-scroll-container::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-white) 0%, transparent 100%);
}

.logo-scroll-container::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-white) 0%, transparent 100%);
}

/* Scroll Animations */

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-200px * 6 - 60px * 5));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-200px * 6 - 60px * 5));
  }

  100% {
    transform: translateX(0);
  }
}

/* Change in your CSS file */

.logo-scroll-track {
  animation: scrollLeft 35s linear infinite !important;
  /* Very fast */
}

.logo-scroll-track.reverse {
  animation: scrollRight 35s linear infinite !important;
  /* Very fast */
}

/* =========================
       RESPONSIVE STYLES
    ========================= */

@media (max-width: 1200px) {
  .clients-section {
    padding: 50px 60px;
  }

  .client-logo {
    width: 180px;
    height: 90px;
  }

  @keyframes scrollLeft {
    100% {
      transform: translateX(calc(-180px * 6 - 60px * 5));
    }
  }
}

@media (max-width: 992px) {
  .clients-section {
    padding: 80px 40px;
  }

  .clients-section .section-title {
    font-size: 36px;
  }

  .clients-section .section-subtitle {
    font-size: 16px;
  }

  .client-logo {
    width: 160px;
    height: 80px;
  }

  .logo-scroll-track {
    gap: 40px;
  }

  @keyframes scrollLeft {
    100% {
      transform: translateX(calc(-200px * 6 - 60px * 5));
    }
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 70px 30px;
  }

  .clients-section .section-header {
    margin-bottom: 30px;
  }

  .clients-section .section-title {
    font-size: 32px;
  }

  .client-logo {
    width: 140px;
    height: 70px;
  }

  .logo-wrapper {
    padding: 15px;
  }

  .logo-scroll-container::before,
  .logo-scroll-container::after {
    width: 80px;
  }
}

@media (max-width: 576px) {
  .clients-section {
    padding: 60px 20px;
  }

  .clients-section .section-tag {
    font-size: 12px;
    /* letter-spacing: 2px; */
  }

  .clients-section .section-title {
    font-size: 28px;
  }

  .client-logo {
    width: 120px;
    height: 60px;
  }

  .logo-scroll-track {
    gap: 30px;
  }

  .logo-scroll-container {
    padding: 30px 0;
  }

  .logo-wrapper {
    padding: 12px;
    border-radius: 8px;
  }
}

@media (max-width: 400px) {
  .client-logo {
    width: 110px;
    height: 55px;
  }

  .logo-scroll-track {
    gap: 25px;
  }
}

/* =========================
       FOOTER STYLES
    ========================= */

.main-footer {
  background: var(--clr-dark-900);
  color: var(--clr-text-light);
  position: relative;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--clr-primary) 50%,
    transparent 100%
  );
}

/* Footer Top */

.footer-top {
  padding: 70px 80px 50px;
  position: relative;
  z-index: 2;
}

.footer-top .container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Footer Grid */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
}

/* Footer Column */

.footer-col {
  padding: 20px 0;
}

/* Company Info */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-logo img {
  width: 140px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 5px;
  line-height: 1.3;
}

.logo-text p {
  font-size: 13px;
  color: var(--clr-white);
  font-weight: 600;
  /* letter-spacing: 1px; */
}

.company-description p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Social Links */

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--clr-white);
  transform: translateY(-5px);
  color: var(--clr-primary);
}

/* Footer Titles */

.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--clr-white);
}

/* Footer Links */

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--clr-white);
  padding-left: 5px;
}

.footer-links i {
  font-size: 10px;
  color: var(--clr-white);
  transition: transform 0.3s ease;
}

.footer-links a:hover i {
  transform: translateX(5px);
}

/* Contact Info */

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-details i {
  color: var(--clr-white);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  color: var(--clr-white);
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--clr-white);
}

/* Newsletter */

.newsletter {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter h4 {
  color: var(--clr-white);
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  gap: 5px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--clr-white);
  font-size: 14px;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--clr-primary);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  background: var(--clr-text-light);
  color: var(--clr-dark-900);
  border: none;
  width: 45px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form button:hover {
  background: var(--clr-white);
  transform: scale(1.05);
}

/* Footer Bottom */

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.footer-menu {
  display: flex;
  gap: 30px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--clr-white);
}

/* Pattern Overlay */

.footer-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/* =========================
       RESPONSIVE STYLES
    ========================= */

@media (max-width: 1200px) {
  .footer-top,
  .footer-bottom {
    padding-left: 60px;
    padding-right: 60px;
  }

  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .footer-top,
  .footer-bottom {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
  }

  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-logo img {
    width: 80px;
    height: 80px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-top,
  .footer-bottom {
    padding: 60px 30px 40px;
  }

  .footer-grid {
    gap: 40px;
  }

  .footer-title {
    font-size: 18px;
  }

  .social-links {
    justify-content: center;
  }

  .contact-details li {
    flex-direction: column;
    gap: 10px;
  }

  .contact-details i {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .footer-top,
  .footer-bottom {
    padding: 50px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .contact-details p {
    font-size: 12px;
  }

  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form button {
    width: 100%;
    padding: 12px;
  }
}

@media (max-width: 400px) {
  .footer-logo img {
    width: 70px;
    height: 70px;
  }

  .logo-text h3 {
    font-size: 18px;
  }

  .footer-menu {
    gap: 15px;
  }

  .footer-menu a {
    font-size: 12px;
  }
}

/* =========================
           GLOBAL RESPONSIVE MARGINS (320px - 1200px)
        ========================= */
@media (max-width: 1200px) {
  .top-bar,
  .main-header,
  .about-section,
  .pdf-products-section,
  .contact-page-section,
  .stats-counter-section,
  .clients-section,
  .main-footer {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

/* =========================
           CONTACT PAGE STYLES
        ========================= */

/* Page Banner */
.page-banner {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--clr-white);
}

.banner-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Section */
.contact-page-section {
  padding-bottom: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

/* Info Cards */
.info-card,
.form-card {
  background: var(--clr-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(7, 27, 58, 0.03);
  height: 100%;
}

.info-intro,
.form-intro {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-detail-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-detail-list li:last-child {
  margin-bottom: 0;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(32, 57, 102, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-detail-list li:hover .icon-circle {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: scale(1.05);
}

.detail-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-dark-900);
  margin-bottom: 5px;
}

.detail-text p,
.detail-text a {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  text-decoration: none;
  margin: 0;
}

.detail-text a:hover {
  color: var(--clr-primary);
}

/* Map */
.map-container {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.map-container iframe {
  display: block;
}

/* Form Controls */

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.form-group {
  margin-bottom: 22px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-dark-900);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group label .required {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: var(--clr-dark-900);
  background-color: var(--clr-white);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(32, 57, 102, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Dynamic field animation */
.dynamic-form-fields {
  transition: opacity 0.15s ease;
}

.dynamic-fade-in {
  animation: formFieldSlideIn 0.35s ease forwards;
}

@keyframes formFieldSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* reCAPTCHA Mockup */
.recaptcha-wrapper {
  margin: 25px 0;
}

.recaptcha-placeholder-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  max-width: 302px;
}

.recaptcha-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin: 0;
}

.recaptcha-checkbox-label input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.recaptcha-checkbox-label span {
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.recaptcha-logo-img {
  height: 32px;
  width: auto;
}

/* Submit Button */
.contact-submit-btn {
  background: var(--clr-primary);
  color: var(--clr-white);
  border: none;
  border-radius: 8px;
  padding: 16px 35px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(32, 57, 102, 0.2);
}

.contact-submit-btn:hover {
  background: var(--clr-dark-900);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(32, 57, 102, 0.3);
}

.contact-submit-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
  transform: translate(3px, -2px);
}

/* Contact Page Responsive Adjustments */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-title {
    font-size: 38px;
  }

  .page-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    padding: 70px 0;
  }

  .info-card,
  .form-card {
    padding: 30px 20px;
  }
}
@media (max-width: 576px) {
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Full Width Map Section */
.full-width-map-section {
  width: 100%;
  display: block;
  position: relative;
  background: #e2e8f0;
  overflow: hidden;
  line-height: 0;
}

.full-width-map-section iframe {
  width: 100%;
  height: 450px;
  filter: grayscale(10%) contrast(105%);
  transition: all 0.5s ease;
}

.full-width-map-section iframe:hover {
  filter: none;
}

@media (max-width: 768px) {
  .full-width-map-section iframe {
    height: 350px;
  }
}

/* ==========================================================================
           ABOUT PAGE STYLING
           ========================================================================== */

.about-section {
  padding: 70px 0;
  background: var(--clr-white);
}

.about-section:nth-of-type(even) {
  background: #f8fafc;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid.reverse-grid {
  grid-template-columns: 1fr 1.2fr;
}

@media (max-width: 992px) {
  .about-grid,
  .about-grid.reverse-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-grid.reverse-grid .about-img-col {
    order: 2;
  }
}

/* Image Wrapper & Responsive Images */
.about-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(7, 27, 58, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  line-height: 0;
}

.about-responsive-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-responsive-img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .about-responsive-img {
    height: 300px;
  }
}

/* Typography & Tags */
.about-tag {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.about-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  color: var(--clr-dark-900);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-subheading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.about-text-col p {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-text-col p:last-child {
  margin-bottom: 0;
}

/* Expertise Section */
.expertise-section {
  position: relative;
  background-image:
    linear-gradient(rgba(7, 27, 58, 0.88), rgba(7, 27, 58, 0.88)),
    url("../img/home/hero3.webp") !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 70px 0;
}

.expertise-section .about-heading {
  color: var(--clr-white) !important;
}

.expertise-section .about-tag {
  color: #38bdf8 !important;
}

.about-section-desc {
  max-width: 650px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.expertise-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 1200px) {
  .expertise-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .expertise-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .expertise-cards-grid {
    grid-template-columns: 1fr;
  }
}

.expertise-card {
  background: rgba(7, 27, 58, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.15) 0%,
    rgba(32, 57, 102, 0.4) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.expertise-card:hover::before {
  opacity: 1;
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 45px rgba(56, 189, 248, 0.15);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 28px;
  color: #38bdf8;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  position: relative;
}

.expertise-card:hover .card-icon {
  background: #38bdf8;
  color: #071b3a;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.expertise-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--clr-white);
  margin: 0;
  z-index: 1;
  position: relative;
  line-height: 1.4;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.expertise-card p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Recognition Road Timeline Theme */
.recognition-road-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 60px 0;
}

/* Horizontal Road Line */
.recognition-road-row::before {
  content: "";
  position: absolute;
  top: 27px; /* aligns with center of nodes */
  left: 5%;
  right: 5%;
  height: 4px;
  background: rgba(32, 57, 102, 0.08);
  border-radius: 2px;
  z-index: 0;
}

.recognition-road-item {
  position: relative;
  flex: 1;
  text-align: center;
  z-index: 1;
  padding: 0 15px;
  transition: all 0.3s ease;
}

.road-node {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 4px solid var(--clr-primary);
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 0 6px var(--clr-white);
}

.road-node i {
  font-size: 16px;
  color: var(--clr-primary);
  transition: all 0.4s ease;
}

.rec-tag {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.rec-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-dark-900);
  line-height: 1.4;
  margin: 0;
  transition: all 0.4s ease;
}

/* Hover animations */
.recognition-road-item:hover .road-node {
  border-color: #38bdf8;
  background: #38bdf8;
  box-shadow:
    0 0 0 8px var(--clr-white),
    0 8px 25px rgba(56, 189, 248, 0.35);
}

.recognition-road-item:hover .road-node i {
  color: var(--clr-white);
  transform: scale(1.1);
}

.recognition-road-item:hover .rec-title {
  color: var(--clr-primary);
}

/* Responsive overrides - Vertical Road timeline for tablets and mobiles */
@media (max-width: 992px) {
  .recognition-road-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding-left: 20px;
  }

  .recognition-road-row::before {
    top: 0;
    bottom: 0;
    left: 47px;
    width: 4px;
    height: 90%;
  }

  .recognition-road-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding: 0;
  }

  .road-node {
    margin: 0 20px 0 0;
    flex-shrink: 0;
  }

  .road-content {
    padding-top: 8px;
  }
}

.recognition-footer p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* Why Choose List */
.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  align-items: center;
  background: #f8fafc;
  padding: 10px 20px;
  border-radius: 14px;
  border-left: 4px solid transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-list li:hover {
  background: var(--clr-white);
  border-left-color: var(--clr-primary);
  box-shadow: 0 10px 30px rgba(7, 27, 58, 0.05);
  transform: translateX(6px);
}

.list-icon {
  font-size: 16px;
  color: var(--clr-primary);
  width: 38px;
  height: 38px;
  background: rgba(32, 57, 102, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-choose-list li:hover .list-icon {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: scale(1.1);
}

.why-choose-list h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-dark-900);
  margin: 0;
  line-height: 1.5;
}

.why-choose-list p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin: 0;
}

.why-highlight-card {
  background: linear-gradient(
    135deg,
    rgba(7, 27, 58, 0.96) 0%,
    rgba(32, 57, 102, 0.88) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 50px 40px;
  color: var(--clr-white);
  box-shadow: 0 25px 50px rgba(7, 27, 58, 0.25);
  position: sticky;
  top: 100px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-highlight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow:
    0 30px 60px rgba(7, 27, 58, 0.3),
    0 0 30px rgba(56, 189, 248, 0.15);
}

.card-glow-effect {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.22) 0%,
    rgba(56, 189, 248, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}

.why-badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #38bdf8;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.why-badge-icon .pulse-ring {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(56, 189, 248, 0.4);
  animation: pulseRing 2.2s infinite;
  z-index: -1;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.why-highlight-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 20px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.why-highlight-card h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #38bdf8;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.why-highlight-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.highlight-text {
  color: #38bdf8;
  font-weight: 600;
}

/* Banner Breadcrumbs */
.banner-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 6px 18px;
  margin: 15px 0 0 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.banner-breadcrumbs li {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
}

.banner-breadcrumbs li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.banner-breadcrumbs li a:hover {
  color: #38bdf8;
}

.banner-breadcrumbs li i {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}

.banner-breadcrumbs li.active {
  color: #38bdf8;
  font-weight: 600;
}

/* Facilities Tabs & Machinery Styling */
.facilities-tabs-container {
  display: inline-flex;
  gap: 15px;
  background: rgba(32, 57, 102, 0.05);
  padding: 8px;
  border-radius: 40px;
  border: 1px solid rgba(32, 57, 102, 0.1);
}

.facilities-tab-btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-navy);
  background: transparent;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
}

.facilities-tab-btn:hover {
  color: #38bdf8;
}

.facilities-tab-btn.active {
  background: var(--clr-navy);
  color: var(--clr-white);
  box-shadow: 0 10px 20px rgba(32, 57, 102, 0.2);
}

.facilities-tab-content {
  display: none;
  animation: tabFadeIn 0.5s ease forwards;
}

.facilities-tab-content.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.facilities-spec-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
}

.facilities-spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.facilities-spec-list li i {
  color: #38bdf8;
  font-size: 16px;
  margin-top: 3px;
  background: rgba(56, 189, 248, 0.1);
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

/* Support & Utility Infrastructure */
.utility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.utility-card {
  background: var(--clr-white);
  border: 1px solid rgba(32, 57, 102, 0.08);
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(7, 27, 58, 0.02);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.utility-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--clr-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.utility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(7, 27, 58, 0.08);
  border-color: rgba(32, 57, 102, 0.15);
}

.utility-card:hover::before {
  transform: scaleX(1);
}

.utility-icon {
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 20px;
  background: rgba(56, 189, 248, 0.08);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.utility-card:hover .utility-icon {
  background: var(--clr-navy);
  color: var(--clr-white);
  transform: rotate(360deg);
}

.utility-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 12px;
}

.utility-card p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .utility-grid {
    grid-template-columns: 1fr;
  }
  .facilities-tabs-container {
    flex-direction: column;
    border-radius: 20px;
    width: 100%;
  }
  .facilities-tab-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Workforce & Quality Certifications Section */
.workforce-badge-card {
  display: flex;
  align-items: center;
  gap: 25px;
  background: var(--clr-white);
  border: 1px solid rgba(32, 57, 102, 0.08);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(7, 27, 58, 0.02);
  transition: all 0.3s ease;
}

.workforce-badge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(7, 27, 58, 0.06);
  border-color: rgba(32, 57, 102, 0.15);
}

.workforce-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
  background: rgba(56, 189, 248, 0.08);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.workforce-badge-card:hover .workforce-number {
  background: var(--clr-navy);
  color: var(--clr-white);
}

.workforce-label strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  color: var(--clr-navy);
  display: block;
  margin-bottom: 6px;
}

.workforce-label p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.5;
  margin: 0;
}

.certifications-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--clr-white);
  border: 1px solid rgba(32, 57, 102, 0.08);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(7, 27, 58, 0.01);
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(7, 27, 58, 0.04);
  border-color: rgba(32, 57, 102, 0.12);
}

.cert-icon {
  font-size: 22px;
  color: #38bdf8;
  margin-top: 2px;
  background: rgba(56, 189, 248, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cert-item:hover .cert-icon {
  background: var(--clr-navy);
  color: var(--clr-white);
}

.cert-info h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 6px;
}

.cert-info p {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 991px) {
  .certifications-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .workforce-badge-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* Facility Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.highlight-item-card {
  background: var(--clr-white);
  border: 1px solid rgba(32, 57, 102, 0.08);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(7, 27, 58, 0.02);
  height: 100%;
}

.highlight-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(7, 27, 58, 0.06);
  border-color: rgba(32, 57, 102, 0.15);
}

.highlight-icon-box {
  font-size: 24px;
  color: #38bdf8;
  margin-bottom: 18px;
  background: rgba(56, 189, 248, 0.08);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.highlight-item-card:hover .highlight-icon-box {
  background: var(--clr-navy);
  color: var(--clr-white);
}

.highlight-item-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-navy);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

.corporate-identity-section {
  background: #c7e4ff !important;
}

/* Product Gallery Styles */
.product-gallery-wrapper {
  margin-bottom: 20px;
}
.product-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}
.thumb-item {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.thumb-item.active,
.thumb-item:hover {
  border-color: #38bdf8;
  opacity: 1;
}
.product-specs-box {
  background: rgba(7, 27, 58, 0.02);
  border: 1px solid rgba(7, 27, 58, 0.05);
  padding: 30px;
  border-radius: 16px;
  margin-top: 25px;
}

/* Infrastructure Custom Heading and Image Grid */
.infra-heading-accent {
  border-left: 4px solid #38bdf8;
  padding-left: 15px;
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-navy);
  text-align: left;
  margin-bottom: 15px;
  text-transform: none; /* Sentence case */
}
.infra-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}
.infra-grid-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.infra-grid-item img:hover {
  transform: translateY(-5px);
}
.infra-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--clr-text-muted);
  text-align: left;
  margin-top: 0;
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .infra-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .infra-image-grid {
    grid-template-columns: 1fr;
  }
  .infra-grid-item img {
    height: 200px;
  }
}

/* Below 993px: show only symbols in the top bar and align horizontally */
@media (max-width: 992px) {
  .top-bar-text {
    display: none !important;
  }
  .top-bar {
    padding: 10px 30px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 30px !important;
    align-items: center !important;
  }
  .top-bar-left,
  .top-bar-right {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    align-items: center !important;
  }
  .top-bar i {
    margin-right: 0 !important;
    font-size: 16px !important;
  }
}


/* changes made 20/6 */

@media (max-width: 576px) {

    .form-row {
        margin-left: 0;
        margin-right: 0;
    }

    .form-group {
        padding-left: 0;
        padding-right: 0;
    }

    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .info-card,
    .form-card {
        padding: 20px;
    }
}


@media (max-width: 400px) {
    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: left top;
    }

    .recaptcha-wrapper {
        overflow: hidden;
        min-height: 60px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav__logo img {
    width: 70px;
}

.logo-text h2 {
    font-size: 20px;
}



@media (max-width: 400px) {

    .main-header {
        padding: 10px 12px !important;
        gap: 10px;
    }

    .logo {
        gap: 8px;
        min-width: 0;
        flex: 1;
    }

    .nav__logo img {
        width: 50px !important;
    }

    .logo-text {
        min-width: 0;
    }

    .logo-text h2 {
        font-size: 12px !important;
        line-height: 1.2;
        word-break: break-word;
    }

    .logo-text span {
        display: none;
    }

    .hamburger {
        padding: 4px;
        flex-shrink: 0;
    }
}

@media (max-width: 400px) {
    html, body {
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }
}

@media (max-width: 400px) {

    .contact-page-section {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .info-card,
    .form-card {
        padding: 15px !important;
        width: 100%;
        max-width: 100%;
    }

    .form-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .form-group {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

.form-control,
textarea,
input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 400px) {

    .contact-form-panel,
    .form-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .form-group {
        width: 100% !important;
        min-width: 0 !important;
    }

    .form-control {
        width: 100% !important;
        max-width: 100% !important;
    }
}