@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --primary-blue: #1e5075;
  --primary-yellow: #f7d40a;
  --secondary-blue: #153c5a;
  --light-bg: #f8f9fa;
  --dark-text: #212529;
  --light-text: #6c757d;
  --white: #ffffff;
  --black: #000000;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-alt: 'Inter', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --shadow-sm: 0 2px 4px rgba(30, 80, 117, 0.05);
  --shadow-md: 0 4px 6px rgba(30, 80, 117, 0.1);
  --shadow-lg: 0 10px 15px rgba(30, 80, 117, 0.1);
  --shadow-hover: 0 15px 30px rgba(30, 80, 117, 0.15);
}

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

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  line-height: 1.5;
  font-size: 15px;
  overflow-x: hidden;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utilities */
.text-center {
  text-align: center;
}

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

.text-yellow {
  color: var(--primary-yellow);
}

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

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

.section-padding {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after,
.animated-underline::after,
.heading-line {
  display: none !important;
}

.section-title p {
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
  font-size: 14px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: var(--transition-normal);
  z-index: -1;
}

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

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

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

.btn-yellow {
  background-color: var(--primary-yellow);
  color: var(--primary-blue);
}

.btn-yellow:hover {
  background-color: #e0c008;
  color: var(--primary-blue);
}

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

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

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 15px rgba(30, 80, 117, 0.08);
  transition: all 0.3s ease;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 70px;
  transform: scale(2);
  transform-origin: center center;
  margin-top: 6px;
  transition: all 0.3s ease;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-2px);
}

.phone-icon {
  font-size: 28px;
  color: var(--primary-yellow);
}

.contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.call-now {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.phone-number {
  font-size: 17px;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
}

.quote-btn {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  background-color: var(--primary-yellow);
  color: var(--primary-blue);
}

.quote-btn i {
  font-size: 18px;
  color: #25D366;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.sticky {
  box-shadow: 0 5px 20px rgba(30, 80, 117, 0.12);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 100%;
  padding: 0;
}

.nav-links a {
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-yellow);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--primary-blue);
  font-size: 26px;
  transition: color 0.3s ease;
}

.hamburger:hover {
  color: var(--primary-yellow);
}

/* Hero Section */
.hero {
  height: 700px;
  margin-top: 70px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 80, 117, 0.92) 0%, rgba(10, 20, 30, 0.85) 100%);
  z-index: 1;
}



.mouse-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247, 212, 10, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeInRight 1s ease 0.5s forwards;
}

.hero-tagline::before {
  content: '';
  width: 30px;
  height: 1px;
  background-color: var(--primary-yellow);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

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

.hero-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #fff;
  text-shadow: none;
  /* Removed heavy shadow */
}

.hero-subtext {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  /* Softer white */
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}

.hero-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  padding: 14px 28px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Floating Stats Grid - 2x2 Layout */
.floating-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 420px;
}

.stat-float {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 22px 15px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: floatAnim 4s ease-in-out infinite;
}

.neon-border-blue {
  border: 1px solid rgba(30, 80, 117, 0.3);
}

.neon-border-yellow {
  border: 1px solid rgba(247, 212, 10, 0.3);
}

.stat-float:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.neon-border-blue:hover {
  border-color: rgba(30, 80, 117, 0.8);
  box-shadow: 0 0 20px rgba(30, 80, 117, 0.3);
}

.neon-border-yellow:hover {
  border-color: rgba(247, 212, 10, 0.8);
  box-shadow: 0 0 20px rgba(247, 212, 10, 0.3);
}

.stat-float:nth-child(even) {
  animation-delay: 2s;
}

@keyframes floatAnim {

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

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

.icon-circle {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  /* Reduced from 32px */
  color: var(--primary-yellow);
  transition: all 0.3s ease;
  margin-bottom: 3px;
}

.stat-content h3 {
  font-size: 24px;
  /* Reduced from 28px */
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}

.stat-content p {
  font-size: 10px;
  /* Reduced from 11px */
  color: rgba(255, 255, 255, 0.7);
}

.stat-float:hover .icon-circle {
  transform: scale(1.1) rotate(10deg);
  filter: drop-shadow(0 0 8px var(--primary-yellow));
}

/* Button Glows */
.btn-glow:hover {
  box-shadow: 0 0 25px rgba(247, 212, 10, 0.5);
  transform: scale(1.05);
}

.btn-glow-white:hover {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.hero-content p {
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 450px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 30px;
}

/* Premium Page Hero */
.page-hero {
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 70px;
  overflow: visible;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 80, 117, 0.9) 0%, rgba(21, 60, 90, 0.95) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(247, 212, 10, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: moveParticles 20s linear infinite;
  z-index: 2;
  opacity: 0.5;
}

@keyframes moveParticles {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100px 100px;
  }
}

.page-hero-content {
  position: relative;
  z-index: 10;
  color: var(--white);
}

.page-hero-content h1 {
  font-size: 36px;
  color: var(--primary-yellow);
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

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

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  animation: fadeUp 1s ease 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.breadcrumb a {
  color: var(--white);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-yellow);
}

.wave-divider {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.wave-divider svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 40px;
}

.wave-divider path {
  fill: #ffffff;
  stroke: none !important;
  stroke-width: 0 !important;
}

/* ==========================================================================
   PREMIUM CTA & FOOTER SYSTEM
   ========================================================================== */

/* CTA Section */
.cta-premium-section {
  background: linear-gradient(rgba(30, 80, 117, 0.92), rgba(30, 80, 117, 0.92)), url('../images/service_engineering.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-premium-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-premium-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.cta-premium-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-buttons-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-premium-cta {
  padding: 16px 35px;
  font-size: 15px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.btn-premium-cta-yellow {
  background: var(--primary-yellow);
  color: var(--primary-blue);
  border: 2px solid var(--primary-yellow);
  box-shadow: 0 10px 20px rgba(247, 212, 10, 0.2);
}

.btn-premium-cta-yellow:hover {
  background: transparent;
  color: var(--primary-yellow);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(247, 212, 10, 0.4);
}

.btn-premium-cta-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-premium-cta-outline:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Enhanced Footer */
footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 80px 0 0;
  border-top: 5px solid var(--primary-yellow);
  position: relative;
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-col h3 {
  font-size: 20px;
  color: var(--primary-yellow);
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-yellow);
}

.footer-logo-box {
  display: inline-block;
  margin-bottom: 25px;
}

.footer-logo-box img {
  height: 120px;
  display: block;
}

.footer-col p {
  color: rgba(209, 213, 222, 0.8);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
}

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

.footer-social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-links a:hover {
  background: var(--primary-yellow);
  color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(247, 212, 10, 0.3);
  border-color: var(--primary-yellow);
}

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

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

.footer-links-list a {
  color: rgba(209, 213, 222, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links-list a i {
  font-size: 10px;
  color: var(--primary-yellow);
  transition: transform 0.3s ease;
}

.footer-links-list a:hover {
  color: var(--primary-yellow);
  transform: translateX(5px);
}

.footer-links-list a:hover i {
  transform: scale(1.5);
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact-item i {
  font-size: 18px;
  color: var(--primary-yellow);
  margin-top: 4px;
}

.footer-contact-item div span {
  display: block;
  color: rgba(209, 213, 222, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-item div strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  margin-top: 2px;
}

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

.working-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: rgba(209, 213, 222, 0.8);
}

.working-hours-list li:last-child {
  border-bottom: none;
  color: var(--primary-yellow);
  font-weight: 700;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  text-align: center;
}

.footer-bottom-bar p {
  margin: 0;
  font-size: 13px;
  color: rgba(209, 213, 222, 0.5);
}




.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition-normal);
}

.social-icons a:hover {
  background-color: var(--primary-yellow);
  color: var(--primary-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #9ca3af;
}

/* Scroll to top */
#scrollToTop {
  position: fixed;
  bottom: 100px;
  right: 35px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-yellow);
  color: var(--primary-blue);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}

#scrollToTop:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1);
}

/* Cards & Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

/* Feature Card */
.feature-card {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border-bottom: 4px solid transparent;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--primary-yellow);
}

.feature-icon {
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.feature-card:hover .feature-icon {
  color: var(--primary-blue);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--light-text);
  font-size: 13.5px;
}

/* Responsive */


/* Custom Page Styles */
/* Home - About Section */
.about-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid var(--primary-yellow);
  transform: translate(20px, 20px);
  z-index: -1;
  border-radius: 8px;
}

/* Counters */
.counter-section {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 60px 0;
}

.counter-box {
  text-align: center;
}

.counter-number {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-yellow);
  margin-bottom: 10px;
}

/* Contact Page */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-blue);
  color: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 80, 117, 0.1);
}

/* Services Page */
.service-card-advanced {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
}

.service-card-advanced:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(247, 212, 10, 0.15);
}

.service-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card-advanced:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
  position: relative;
}

.service-icon-float {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

/* Gallery */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition-normal);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.masonry-gallery {
  column-count: 3;
  column-gap: 20px;
}



.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 80, 117, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay h3 {
  color: var(--primary-yellow);
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

/* Loading Animation */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-blue);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(247, 212, 10, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-yellow);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Progress bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
  box-shadow: 0 0 10px var(--primary-yellow);
  z-index: 1001;
  width: 0%;
  border-radius: 0 2px 2px 0;
  transition: width 0.1s ease-out;
}

/* =========================================
   CONSTRUCTION BUILDER HELMET & HAMMER CURSOR
   ========================================= */

#cursor-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: normal;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Primary Safety Hard Hat (Gold construction helmet) */
.custom-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-yellow);
  /* Yellow hard hat! */
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  transition: color 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-cursor i {
  display: inline-block;
  transition: transform 0.2s ease;
  transform-origin: bottom center;
}

/* Trailing construction hammer speed ghost (Navy blue tool) */
.custom-cursor-follower {
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  /* Navy blue hammer! */
  font-size: 20px;
  opacity: 0.8;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  transition: opacity 0.3s ease, color 0.3s ease;
}

.custom-cursor-follower i {
  display: inline-block;
  transition: transform 0.2s ease;
  transform-origin: center center;
}

/* ACTIVE CONSTRUCTING ANIMATIONS (Hammering and Helmet tilting) */
@keyframes helmetTilt {

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

  50% {
    transform: translateY(-2px) rotate(18deg);
    /* Helmet bobs as you build */
  }
}

@keyframes hammeringAction {

  0%,
  100% {
    transform: translate(-10px, 10px) rotate(-15deg);
  }

  50% {
    transform: translate(-5px, 5px) rotate(25deg);
    /* Active hammering swings! */
  }
}

.custom-cursor.is-building i {
  animation: helmetTilt 0.3s infinite ease-in-out;
}

.custom-cursor-follower.is-building i {
  animation: hammeringAction 0.2s infinite ease-in-out;
}

/* Hover States (Safety helmet lights up, hammer spins!) */
#cursor-container.cursor-hover .custom-cursor {
  color: var(--primary-blue);
  transform: translate(-50%, -50%) scale(1.3) rotate(-15deg);
}

#cursor-container.cursor-hover .custom-cursor i {
  animation: none !important;
}

#cursor-container.cursor-hover .custom-cursor-follower {
  color: var(--primary-yellow);
  transform: translate(-50%, -50%) scale(1.1) rotate(45deg);
  opacity: 1;
}

#cursor-container.cursor-hover .custom-cursor-follower i {
  animation: none !important;
}

/* Navbar Scrolled State */
header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-bar-wrapper {
  background-color: rgba(247, 212, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Hero Section Updates */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 80, 117, 0.9) 0%, rgba(10, 20, 30, 0.8) 100%);
  z-index: 0;
}

/* Staggered Text Reveal */
.stagger-text .line {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 5px;
}

.stagger-text .word {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.stagger-text .word.reveal {
  transform: translateY(0);
  opacity: 1;
}

.glow-text {
  color: var(--primary-yellow);
  text-shadow: 0 0 15px rgba(247, 212, 10, 0.4);
  position: relative;
}

.glow-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-yellow);
  box-shadow: 0 0 10px var(--primary-yellow);
  transform: scaleX(0);
  transform-origin: left;
  animation: glowLine 1s ease 1.5s forwards;
}

@keyframes glowLine {
  to {
    transform: scaleX(1);
  }
}

/* Fade In Up Elements */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpAnim 1s ease 1s forwards;
}

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

/* Magnetic Buttons */
.magnetic-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform-style: preserve-3d;
}

.magnetic-btn span,
.magnetic-btn i {
  position: relative;
  z-index: 2;
  transition: transform 0.1s ease;
  pointer-events: none;
}

.magnetic-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  z-index: 1;
}

.magnetic-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.btn-yellow.magnetic-btn:hover {
  box-shadow: 0 0 20px rgba(247, 212, 10, 0.5);
}

.btn-outline.magnetic-btn:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.icon-slide {
  transition: transform 0.3s ease;
}

.btn:hover .icon-slide {
  transform: translateX(5px);
}

/* About Section Enhancements */
.about-img-container {
  position: relative;
}

.about-img {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img img {
  transition: transform 0.7s ease;
}

.about-img-container:hover .about-img img {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(30, 80, 117, 0.25);
  animation: float 4s ease-in-out infinite;
  border-left: 4px solid var(--primary-yellow);
}

.floating-card h3 {
  font-size: 28px;
  color: var(--primary-yellow);
  margin-bottom: 2px;
}

.floating-card p {
  font-size: 12px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.animated-list li {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.animated-list li:hover {
  transform: translateX(10px);
  color: var(--primary-blue);
}

/* Industry Card Specifics */
.industry-card {
  padding: 15px !important;
  text-align: center;
}

.industry-card i {
  font-size: 24px !important;
  margin-bottom: 8px !important;
}

.industry-card h4 {
  font-size: 14px !important;
  font-weight: 700;
  margin: 0;
}

/* Glassmorphism Stat Cards */
.counter-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #113047 100%);
  position: relative;
  overflow: hidden;
}

.counter-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(247, 212, 10, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(30, 80, 117, 0.4) 0%, transparent 50%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-yellow);
}

.stat-icon {
  font-size: 32px;
  color: var(--primary-yellow);
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.5s ease;
}

.glass-card:hover .stat-icon {
  transform: rotateY(360deg);
}

.counter-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.glass-card p {
  color: #ccc;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Feature Cards Enhanced Hover */
.feature-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, rgba(30, 80, 117, 0.05) 0%, rgba(247, 212, 10, 0.05) 100%);
  transition: height 0.4s ease;
  z-index: -1;
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(30, 80, 117, 0.1);
  border-bottom: 4px solid var(--primary-yellow);
}

.feature-card:hover .feature-icon,
.feature-card:hover .text-yellow {
  animation: pulseIcon 1s infinite;
}

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

  50% {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(247, 212, 10, 0.5);
  }

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

/* About Section Enhancements */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  padding: 10px 18px;
  /* Reduced from 12px 20px */
  border-radius: 8px;
  border-left: 3px solid var(--primary-yellow);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item i {
  color: var(--primary-blue);
  font-size: 16px;
}

.feature-item span {
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 13px;
  /* Reduced from 14px */
}

.about-section .container.grid-2 {
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 80px;
}

.about-img-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  /* Reduced from default */
  margin-left: auto;
}

.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  aspect-ratio: 1/1;
  /* Square shape */
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 80, 117, 0.3), transparent);
  pointer-events: none;
}

.floating-info-card {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: 190px;
  max-width: 230px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 8px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.floating-info-card:hover {
  transform: translateX(-50%) translateY(-5px);
  background: rgba(255, 255, 255, 1.0);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  border-color: var(--primary-yellow);
}

.icon-yellow {
  width: 36px;
  height: 36px;
  background: var(--primary-yellow);
  color: var(--primary-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.card-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1;
  transition: color 0.4s ease;
}

.floating-info-card:hover .card-text h3 {
  color: #222222;
}

.card-text p {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  font-weight: 600;
  transition: color 0.4s ease;
}

.floating-info-card:hover .card-text p {
  color: #666666;
}

/* Footer Link Hover */
.footer-links a {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-yellow) !important;
  transform: translateX(5px);
}

/* Responsive Overrides for new elements */


.heading-line {
  width: 80px;
  height: 4px;
  background: var(--primary-yellow);
  margin: 15px auto 25px;
  border-radius: 2px;
}

/* Premium About Page Styles */
.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(30, 80, 117, 0.4), rgba(30, 80, 117, 0.7));
  z-index: 1;
}

.glow-text-title {
  text-shadow: 0 0 20px rgba(247, 212, 10, 0.3);
  font-weight: 800;
  letter-spacing: 2px;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 2;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.hero-wave .shape-fill {
  fill: #FFFFFF;
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--primary-yellow);
}

.breadcrumb-sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.5);
}

.title-with-border {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.title-with-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-yellow);
}

.premium-p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-box-premium {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
}

.feature-box-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 80, 117, 0.1);
  border-color: var(--primary-yellow);
}

.icon-circle-bg {
  width: 60px;
  height: 60px;
  background: rgba(247, 212, 10, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.feature-box-premium:hover .icon-circle-bg {
  background: var(--primary-yellow);
  color: var(--primary-blue);
  transform: scale(1.1);
}

.feature-box-premium h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.feature-box-premium p {
  font-size: 13px;
  color: #777;
}

/* Leadership Card */
.leadership-card-premium {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.leader-img-wrapper {
  flex: 0 0 40%;
  overflow: hidden;
}

.leader-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.leadership-card-premium:hover .leader-img-wrapper img {
  transform: scale(1.05);
}

.leader-content-glass {
  flex: 1;
  padding: 50px;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
}

.quote-icon-float {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 50px;
  color: rgba(247, 212, 10, 0.1);
}

.leader-meta {
  display: block;
  font-weight: 600;
  color: var(--primary-yellow);
  margin-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leader-content-glass p {
  margin-bottom: 20px;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.leader-socials {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.leader-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(30, 80, 117, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.leader-socials a:hover {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  transform: translateY(-5px);
}

.pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary-blue) 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  opacity: 0.03;
  z-index: 1;
}

/* Vision Mission */
.vision-mission-bg {
  background-image: linear-gradient(rgba(30, 80, 117, 0.85), rgba(30, 80, 117, 0.95)), url('../images/service_construction_1778575776401.png');
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.particles-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/stardust.png');
  opacity: 0.2;
}

.glass-box-modern {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.glass-box-modern:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  border-color: var(--primary-yellow);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.icon-glow-container {
  width: 80px;
  height: 80px;
  background: rgba(247, 212, 10, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: var(--primary-yellow);
  box-shadow: 0 0 20px rgba(247, 212, 10, 0.1);
}

.glass-box-modern h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 15px;
}

.glass-box-modern p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
}

/* Timeline */
.modern-timeline {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
  padding: 20px 0;
}

.timeline-glow-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(30, 80, 117, 0.1);
  transform: translateX(-50%);
}

.timeline-glow-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary-yellow);
  box-shadow: 0 0 10px var(--primary-yellow);
  animation: growLine 5s linear infinite;
}

@keyframes growLine {
  0% {
    height: 0;
    top: 0;
  }

  50% {
    height: 100%;
    top: 0;
  }

  100% {
    height: 0;
    top: 100%;
  }
}

.timeline-row {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 50px;
}

.timeline-item-modern {
  width: 45%;
  position: relative;
}

.timeline-item-modern.left {
  padding-right: 50px;
  text-align: right;
}

.timeline-item-modern.right {
  padding-left: 50px;
  text-align: left;
  margin-left: 50%;
}

.timeline-content-premium {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.timeline-item-modern:hover .timeline-content-premium {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--primary-yellow);
}

.year-badge {
  display: inline-block;
  padding: 5px 15px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-pulse {
  position: absolute;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--primary-yellow);
  border-radius: 50%;
  z-index: 5;
}

.left .timeline-pulse {
  right: -8px;
}

.right .timeline-pulse {
  left: -58px;
}

.timeline-pulse::after {
  display: none;
}

@keyframes pulseNode {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* =========================================
   MASTER RESPONSIVE SYSTEM
   ========================================= */

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

/* Tablet Landscape / Small Desktop (1024px) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 36px;
  }

  .about-section .container.grid-2 {
    gap: 40px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry-gallery {
    column-count: 2;
  }
}

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

  /* Header & Navigation */
  header {
    height: auto !important;
  }

  .top-bar {
    padding: 0 20px;
    height: 70px;
  }

  .logo img {
    height: 50px;
    transform: scale(1.4);
  }

  .contact-info,
  .quote-btn {
    display: none !important;
  }

  .hamburger {
    display: block !important;
    z-index: 10001;
    position: relative;
  }

  header.sticky {
    transform: none !important;
  }



  /* Side Slide Menu (Right) */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start off-screen right */
    width: 280px;
    height: 100vh;
    background: var(--primary-blue);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 30px;
    gap: 15px;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    pointer-events: all;
  }

  .nav-links.active {
    right: 0;
    transform: translateX(0);
  }

  /* Overlay */
  .menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    color: var(--white);
    font-size: 16px;
    width: 100%;
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links a::after {
    display: none;
  }

  /* Hero Section */
  .hero {
    height: auto;
    padding: 120px 0 60px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 40px;
  }

  .hero-tagline {
    justify-content: flex-start;
    font-size: 10px;
  }

  .hero-title {
    font-size: 28px !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    max-width: 100%;
    margin: 0 0 20px;
  }

  .hero-subtext {
    margin: 0 0 30px;
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 0;
    /* Left align per previous request */
  }

  .hero-buttons .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    box-sizing: border-box;
    white-space: nowrap;
  }

  /* Grids & Layouts */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .about-section .container.grid-2 {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* About Page Elements */
  .about-img-container {
    max-width: 100%;
    margin-top: 20px;
  }

  .leadership-card-premium {
    flex-direction: column;
  }

  .leader-img-wrapper {
    height: 350px;
    flex: none;
  }

  .leader-content-glass {
    padding: 30px;
    flex: none;
  }

  /* Timeline */
  .timeline-glow-line {
    left: 30px;
  }

  .timeline-item-modern {
    width: 100%;
    margin-left: 0 !important;
    padding-left: 60px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .left .timeline-pulse,
  .right .timeline-pulse {
    left: 22px;
  }

  .timeline-row {
    margin-bottom: 30px;
  }

  /* Gallery */
  .masonry-gallery {
    column-count: 1;
  }

  /* Contact Page */
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  /* Hide custom cursor on mobile */
  .custom-cursor,
  .custom-cursor-follower {
    display: none !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
    padding-bottom: 20px;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-box {
    margin: 0 auto 30px;
  }

  .footer-logo-box img {
    height: 100px !important;
    /* Slightly smaller for mobile neatness */
  }

  .footer-social-links,
  .footer-links-list,
  .working-hours-list {
    justify-content: center;
  }

  .footer-links-list {
    display: inline-block;
    text-align: left;
  }

  .footer-links-list a {
    justify-content: flex-start;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-bottom-bar {
    padding: 20px 0;
    margin-top: 30px;
  }

  .cta-buttons-wrapper {
    flex-direction: column !important;
    align-items: center;
    gap: 15px;
  }

  .btn-premium-cta {
    font-size: 12.5px !important;
    padding: 12px 24px !important;
    gap: 8px !important;
    white-space: nowrap !important;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Mobile Devices (480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 26px !important;
  }

  .hero-tagline {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .cta-premium-title {
    font-size: 22px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .cta-buttons-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}

/* =========================================
   MOBILE BOTTOM NAVIGATION
   ========================================= */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(30, 80, 117, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 3px solid var(--primary-yellow);
  z-index: 10002;
  padding: 12px 0 10px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  border-radius: 20px 20px 0 0;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  body {
    padding-bottom: 70px !important;
  }

  #scrollToTop {
    bottom: 155px !important;
    /* Move above bottom nav and WhatsApp */
    right: 35px !important;
  }

  .whatsapp-float {
    bottom: 85px !important;
    /* Move above bottom nav */
    right: 30px !important;
  }
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 5px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex: 1;
}

.nav-item i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.nav-item.active {
  color: var(--primary-yellow);
}

.nav-item.active i {
  transform: translateY(-3px) scale(1.1);
  text-shadow: 0 0 10px rgba(247, 212, 10, 0.5);
}

.nav-item:active {
  transform: scale(0.9);
}

/* =========================================
   HOMEPAGE PREMIUM SECTIONS
   ========================================= */

/* Industry Grid */
.industry-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.industry-item {
  position: relative;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  cursor: pointer;
}

.industry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-item:hover img {
  transform: scale(1.1);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 80, 117, 0.95), transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: #fff;
}

/* Service Summary */
.service-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-summary-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  transition: all 0.4s ease;
  border-bottom: 4px solid transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-summary-card p {
  flex: 1;
}

.service-summary-card .learn-more {
  margin-top: 20px;
}

.service-summary-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary-yellow);
}

/* Project Preview */
.project-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-preview-item {
  position: relative;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.project-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Premium Stats */
.stats-row-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.stat-card-mini {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(30, 80, 117, 0.05);
  transition: all 0.4s ease;
}

.cta-premium {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #153c5a 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 24px;
  padding: 80px 40px;
  margin: 60px 0;
  text-align: center;
}

/* Responsive Overrides for Homepage Sections */
@media (max-width: 1024px) {
  .project-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-summary-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .stats-row-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-summary-card {
    padding: 28px 18px;
  }
}

@media (max-width: 768px) {

  .service-summary-grid,
  .project-preview-grid,
  .stats-row-premium,
  .industry-grid-premium {
    grid-template-columns: 1fr;
  }

  .cta-premium {
    padding: 50px 20px !important;
    margin: 40px 0 !important;
  }

  .service-summary-card {
    padding: 30px 20px;
  }

  .industry-item,
  .project-preview-item {
    height: 280px;
  }
}

/* Testimonials */
.testimonial-section {
  background: var(--light-bg);
  padding: 100px 0;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 10px 40px rgba(30, 80, 117, 0.08);
  margin: 20px 0;
  border-left: 5px solid var(--primary-yellow);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  color: var(--primary-blue);
  margin-bottom: 25px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
    text-align: left;
    /* Keep left aligned as per usual premium style unless requested centered */
  }

  .testimonial-text {
    font-size: 14px;
  }
}