@import url('skin.css'); 

/* Mecha Factory Theme Customizations (overrides from skin.css) */
body, .mecha-navbar, .mecha-hero-section, .mecha-cta-btn, .mecha-logo, .mecha-factory-title {
    font-family: 'Poppins', 'Roboto', Arial, sans-serif !important;
}

/* Horizontal Navbar Layout Fixes */
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list, .nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li, .nav li {
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.nav-link.active, .nav-link:hover {
  background: #0077B6;
  color: #fff !important;
}

/* Lightwire-style horizontal navbar with boxed menu items */
.mecha-navbar, .header-area.sticky-bar {
  width: 100vw;
  min-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  background: #222d38 !important; /* Consistent dark background */
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 4px 16px -4px rgba(0,0,0,0.10);
  padding: 0;
  z-index: 1000;
}
.menu-wrap, .navbar-content, .header-area .row.align-items-center {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.navbar-logo, .col-md-3, .col-md-6, .col-md-12, .col-sm-6, .col-xs-6, .col-xs-12 {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 80px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
  height: 80px;
}

.navbar-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 80px;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 80px;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0;
}

.navbar-nav > li {
  display: flex;
  align-items: center;
  border-left: 1px solid #ccc;
  height: 100%;
}

.navbar-nav > li:first-child {
  border-left: none;
}
.navbar-nav > li:last-child {
  border-right: none;
}

.navbar-nav > li > a,
.nav-link {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.08rem;
  color: #fff;
  background: transparent;
  border: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-radius 0.2s;
  text-decoration: none;
  border-radius: 30px !important;
}

.navbar-nav > li > a.active,
.navbar-nav > li > a:hover,
.nav-link.active,
.nav-link:hover {
  background: #fff;
  color: #222d38 !important;
}

.mecha-cta-btn {
  background: #1e3a8a !important;
  color: #fff !important;
  border: 2px solid #1e3a8a !important;
  border-radius: 30px !important;
  padding: 18px 38px !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mecha-cta-btn:hover, .mecha-cta-btn:focus, .mecha-cta-btn:active {
  background: #fff !important;
  color: #1e3a8a !important;
  border-color: #1e3a8a !important;
}

@media (max-width: 900px) {
  .navbar-content, .navbar-menu {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    width: 100vw;
    max-width: 100vw;
  }
  .navbar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    width: 100vw;
    height: auto;
    justify-content: flex-end;
    align-items: center;
  }
  .navbar-nav > li {
    width: auto;
    border-left: none;
    border-right: none;
    border-bottom: none;
    margin: 0 8px;
  }
  .navbar-nav > li:last-child {
    border-bottom: none;
  }
  .navbar-nav > li > a {
    padding: 12px 18px;
    width: auto;
    font-size: 1rem;
  }
  .mecha-cta-btn {
    margin-top: 12px;
    font-size: 1rem !important;
    padding: 12px 24px !important;
  }
}

/* HERO SECTION */
.mecha-hero-section {
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: #222d38;
    position: relative;
}
.mecha-hero-section:before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    background: rgba(173,216,230,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-top: 80px;
    padding-bottom: 80px;
}
.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0077B6;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #222d38;
    margin-bottom: 2rem;
    font-weight: 500;
}
.mecha-cta-btn, .btn-yellow {
  background: #fff !important;
  color: #1e3a8a !important;
  border: 2px solid #1e3a8a !important;
  border-radius: 999px !important;
  padding: 12px 36px !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mecha-cta-btn:hover, .mecha-cta-btn:focus, .mecha-cta-btn:active,
.btn-yellow:hover, .btn-yellow:focus, .btn-yellow:active {
  background: #e0e0e0 !important;
  color: #222d38 !important;
  border-color: #e0e0e0 !important;
}



.topbar {
  background: #333;
  color: #fff;
  font-size: 0.95rem;
  padding: 6px 0;
}
.topbar-content {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar-content i {
  margin-right: 6px;
  color: #1e3a8a;
}
@media (max-width: 767px) {
  .topbar-content {
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .navbar-content, .navbar-menu {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }
  .navbar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    width: 100vw;
    height: auto;
    justify-content: flex-end;
    align-items: center;
  }
  .navbar-nav > li {
    width: auto;
    border-left: none;
    border-right: none;
    border-bottom: none;
    margin: 0 8px;
  }
  .navbar-nav > li:last-child {
    border-bottom: none;
  }
  .navbar-nav > li > a {
    padding: 12px 18px;
    width: auto;
    font-size: 1rem;
  }
  .mecha-cta-btn {
    margin-top: 12px;
    font-size: 1rem !important;
    padding: 12px 24px !important;
  }
}

@media (max-width: 767px) {
    .mecha-hero-section {
        min-height: 40vh;
    }
    .hero-text h1 {
        font-size: 1.5rem;
    }
    .mecha-factory-title {
        font-size: 1rem;
    }
    .mecha-navbar .nav > li > a {
        font-size: 0.95rem;
    }
} 

.service-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  background-color: #fff;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 20px rgba(30,58,138,0.18);
  transform: translateY(-4px);
  border-color: #1e3a8a;
} 

.service-style-one {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.service-style-one:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(30,58,138,0.18);
  border-color: #1e3a8a;
}

.service-style-one .service-icon {
  font-size: 40px;
  color: #1e3a8a;
  margin-bottom: 1rem;
} 

/* Enhanced Lightwire Services Section Effects */
.service-area.bg-light {
  background: linear-gradient(135deg, #f6f6f6 0%, #f9fafb 100%);
}

.advs-box.boxed {
  background: #fff;
  border: 1.5px solid #ececec;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.advs-box.boxed:hover {
  box-shadow: 0 12px 32px rgba(30,58,138,0.13);
  border-color: #1e3a8a;
  transform: translateY(-8px) scale(1.03);
}

.advs-box-top-icon .icon-box .icon-box-cell i {
  font-size: 48px;
  color: #1e3a8a;
  margin-bottom: 1.2rem;
  transition: color 0.3s, text-shadow 0.3s;
  text-shadow: 0 2px 8px rgba(30,58,138,0.08);
}

.advs-box.boxed:hover .icon-box .icon-box-cell i {
  color: #1e3a8a;
  text-shadow: 0 4px 16px rgba(30,58,138,0.18);
}

.advs-box.boxed h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  margin-top: 0.5rem;
  color: #222d38;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.advs-box.boxed:hover h3 {
  color: #1e3a8a;
}

.advs-box.boxed p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0;
  margin-top: 0.5rem;
  line-height: 1.7;
  transition: color 0.3s;
}

@media (max-width: 991px) {
  .advs-box.boxed {
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
  .advs-box-top-icon .icon-box .icon-box-cell i {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .advs-box.boxed {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .advs-box-top-icon .icon-box .icon-box-cell i {
    font-size: 32px;
  }
} 

.services-scroll-row {
  display: flex;
  overflow-x: auto;
  gap: 32px;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.services-scroll-row::-webkit-scrollbar {
  display: none;
}

.advs-box.boxed[style*="min-width"] {
  flex: 0 0 auto;
} 

.services-arrow-left, .services-arrow-right {
  background: #1e3a8a !important;
  color: #fff !important;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.services-arrow-left:hover, .services-arrow-right:hover {
  background: #e0e0e0 !important;
  color: #222d38 !important;
  border: 2px solid #e0e0e0 !important;
}
.services-arrow-left i, .services-arrow-right i {
  color: #fff !important;
} 

/* Modern Service Card Style (inspired by screenshot) */
.service-card-modern {
  background: #fff;
  border: 1.5px solid #ececec;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 370px;
  margin: 0 auto;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.service-card-modern:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.13);
  transform: translateY(-8px) scale(1.03);
  border-top: 4px solid #1e3a8a;
  border-color: #1e3a8a;
}
.service-card-modern .service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-top: 4px solid #1e3a8a;
}
.service-card-modern .service-icon-box {
  position: absolute;
  top: 160px;
  left: 32px;
  background: #444;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border-top: 4px solid #1e3a8a;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card-modern:hover .service-icon-box {
  box-shadow: 0 8px 24px rgba(30,58,138,0.18);
  transform: scale(1.08);
}
.service-card-modern .service-icon-box i {
  color: #fff;
  font-size: 2rem;
}
.service-card-modern .service-body {
  padding: 48px 28px 28px 28px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-card-modern .service-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}
.service-card-modern .service-desc {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.service-card-modern .service-link {
  color: #888;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px dotted #bbb;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  font-weight: 500;
  letter-spacing: 0.5px;
  width: fit-content;
}
.service-card-modern .service-link:hover {
  color: #1e3a8a;
  border-color: #1e3a8a;
}

@media (max-width: 600px) {
  .service-card-modern {
    min-width: 240px;
    max-width: 100%;
  }
  .service-card-modern .service-img {
    height: 140px;
  }
  .service-card-modern .service-icon-box {
    top: 100px;
    left: 16px;
    width: 48px;
    height: 48px;
  }
  .service-card-modern .service-body {
    padding: 32px 12px 18px 12px;
  }
} 

/* Why Choose Us Section Modern Style */
.why-choose-section {
  background: #f6f6f6;
  padding: 0;
  min-height: 420px;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.why-choose-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,34,34,0.32);
  z-index: 1;
}
.why-choose-container {
  position: relative;
  z-index: 2;
}
.why-choose-box {
  background: #fff;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  border-radius: 0 0 0 0;
  padding: 48px 48px 18px 48px;
  max-width: 540px;
  min-width: 340px;
  position: relative;
  z-index: 3;
  margin: 48px auto;
}
.why-choose-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #222d38;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.why-choose-desc {
  color: #555;
  font-size: 1.08rem;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.why-choose-stats {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  margin-top: 24px;
}
.why-choose-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}
.why-choose-icon {
  color: #1e3a8a;
  font-size: 2rem;
  margin-bottom: 0.2rem;
  display: block;
}
.why-choose-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #222d38;
  margin-bottom: 0.1rem;
}
.why-choose-label {
  color: #888;
  font-size: 1rem;
  margin-top: 0.1rem;
  text-align: center;
}
@media (max-width: 1100px) {
  .why-choose-container {
    flex-direction: column;
    padding: 32px 0;
  }
  .why-choose-box {
    margin-bottom: 32px;
    max-width: 98vw;
    padding: 32px 18px 24px 18px;
  }
}
@media (max-width: 600px) {
  .why-choose-box {
    padding: 18px 6vw 18px 6vw;
    min-width: 0;
  }
  .why-choose-title {
    font-size: 1.2rem;
  }
  .why-choose-stats {
    gap: 18px;
  }
} 

.why-choose-features {
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.why-choose-feature-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #222d38;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  letter-spacing: 0.2px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  border-radius: 4px;
  padding: 2px 6px;
}
.why-choose-feature-title:hover {
  color: inherit;
  background: none;
  box-shadow: none;
  transform: none;
}
.why-choose-feature-desc {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .why-choose-features {
    gap: 0.7rem;
  }
  .why-choose-feature-title {
    font-size: 0.98rem;
  }
  .why-choose-feature-desc {
    font-size: 0.95rem;
  }
} 

.section-main-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #222d38;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  text-align: center;
  line-height: 1.1;
  position: relative;
  display: block;
}
.section-main-title::after {
  content: '';
  display: block;
  margin: 18px auto 0 auto;
  width: 48px;
  height: 3px;
  background: #1e3a8a;
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s, height 0.3s;
}
.section-main-title:hover::after,
.section-main-title:focus::after {
  width: 80px !important;
  background: #e0e0e0 !important;
  height: 3px !important;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s, height 0.3s !important;
}
/* Remove any custom margin overrides for section-main-title underline */
.footer-social .section-main-title::after,
.section-main-title.why-choose-title::after,
.about-content .section-main-title::after {
  margin: 18px auto 0 auto !important;
  width: 48px !important;
  height: 3px !important;
  background: #1e3a8a !important;
  border-radius: 2px !important;
  display: block !important;
}
@media (max-width: 600px) {
  .section-main-title {
    font-size: 1.5rem;
  }
  .section-main-title::after {
    width: 32px;
    height: 2px;
    margin-top: 12px;
  }
  .section-main-title:hover::after,
  .section-main-title:focus::after {
    width: 56px;
  }
} 

/* Remove image styles for background version */
.why-choose-image, .why-choose-image-wrap { display: none !important; } 

.service-area {
  margin-bottom: 64px;
  margin-top: 32px;
}
.why-choose-section {
  margin-bottom: 64px;
  margin-top: 32px;
}
@media (max-width: 600px) {
  .service-area, .why-choose-section {
    margin-bottom: 32px;
    margin-top: 18px;
  }
} 

.footer-contact .contact-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #222d38;
  text-transform: uppercase;
  margin-right: 16px;
  min-width: 120px;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
}
.contact-icon {
  color: #1e3a8a;
  font-size: 1.2rem;
  min-width: 28px;
  text-align: left;
  margin-right: 8px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-contact .contact-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer-contact .contact-row i {
  color: #1e3a8a;
  font-size: 1.2rem;
  margin-top: 2px;
  min-width: 22px;
  text-align: center;
}
.footer-contact .contact-row a {
  color: #0077B6;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact .contact-row a:hover {
  color: #1e3a8a;
}
.footer-contact .contact-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
} 

.footer-content, .footer-contact {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.footer-contact .contact-row {
  justify-content: flex-start;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
} 

.footer-contact-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-contact-col {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 420px;
  text-align: left;
  margin-bottom: 18px;
}
.footer-contact-col:last-child {
  text-align: center;
}
.footer-map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.contact-now-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 38px;
  background: #1e3a8a;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 8px rgba(30,58,138,0.10);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-width: 180px;
  text-align: center;
}
.contact-now-btn:hover, .contact-now-btn:focus {
  background: #1e3a8a;
  color: #fff;
  box-shadow: 0 10px 32px rgba(30,58,138,0.18);
  transform: translateY(-2px) scale(1.06);
  outline: none;
}
@media (max-width: 900px) {
  .footer-contact-row {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-contact-col {
    max-width: 100%;
    margin-bottom: 0;
  }
} 

.footer-social {
  margin-top: 48px;
  margin-bottom: 36px;
}
.footer-social .section-main-title {
  margin-bottom: 12px !important;
}
.footer-social .section-main-title::after {
  margin-top: 18px !important;
  margin-bottom: 28px !important;
}
.footer-social .social-links {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: #222d38;
  background: #f6f6f6;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin: 0 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.footer-social .social-link:hover {
  color: #1e3a8a;
  background: #fff;
  box-shadow: 0 4px 16px rgba(30,58,138,0.13);
  transform: scale(1.13);
}
.footer-social .social-link i {
  font-size: 2.1rem;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
}
.footer-social .social-link:hover i {
  color: #1e3a8a;
  transform: scale(1.18);
} 

.navbar-brand,
.navbar-brand:visited,
.navbar-brand:hover,
.navbar-brand:focus,
.navbar-brand:active,
.navbar-brand span,
.navbar-brand span:visited,
.navbar-brand span:hover,
.navbar-brand span:focus,
.navbar-brand span:active,
.mecha-cta-btn,
.mecha-cta-btn:visited,
.mecha-cta-btn:hover,
.mecha-cta-btn:focus,
.mecha-cta-btn:active,
.btn-yellow,
.btn-yellow:visited,
.btn-yellow:hover,
.btn-yellow:focus,
.btn-yellow:active,
.theme-btn,
.theme-btn:visited,
.theme-btn:hover,
.theme-btn:focus,
.theme-btn:active,
.service-link,
.service-link:visited,
.service-link:hover,
.service-link:focus,
.service-link:active,
.nav-link,
.nav-link:visited,
.nav-link:hover,
.nav-link:focus,
.nav-link:active,
.navbar-nav > li > a,
.navbar-nav > li > a:visited,
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > li > a:active {
  text-decoration: none !important;
  border-bottom: none !important;
  outline: none !important;
} 

.mecha-cta-btn {
  background: transparent !important;
  color: #1e3a8a !important;
  border: 2px solid #1e3a8a !important;
  border-radius: 0 !important;
  padding: 18px 38px !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mecha-cta-btn:hover, .mecha-cta-btn:focus, .mecha-cta-btn:active {
  background: #1e3a8a !important;
  color: #fff !important;
  border-color: #1e3a8a !important;
} 

.about-content {
  max-width: 520px;
  margin-right: auto;
  text-align: left;
}
.about-content .section-main-title,
.about-content .about-subtitle,
.about-content p,
.about-content .about-highlights {
  text-align: left;
}
.about-highlights {
  padding-left: 0;
}
/* Add a wrapper for centering the highlights row */
.about-highlights-row-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.about-highlights-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  justify-items: center;
  align-items: stretch;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.about-highlight-card {
  width: 100%;
  max-width: 320px;
  min-width: 220px;
  min-height: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #1e3a8a;
  box-shadow: 0 2px 16px rgba(30,58,138,0.08);
  color: #222d38;
  font-family: 'Rajdhani', 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
  padding: 0 32px;
}
.about-highlight-card i {
  color: #1e3a8a;
  font-size: 1.2rem;
  margin-right: 14px;
}
.about-highlight-card:hover {
  border-color: #1e3a8a;
  box-shadow: 0 8px 32px 0 rgba(30,58,138,0.18), 0 0 32px 8px rgba(0,0,0,0.10);
}
@media (max-width: 1200px) {
  .about-highlights-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}
@media (max-width: 991px) {
  .about-highlights-row {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 98vw;
  }
  .about-highlight-card {
    font-size: 1rem;
    padding: 18px 12px;
    min-height: 0;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .about-content {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
} 

.about-area .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.about-area .row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.about-content {
  max-width: 520px;
  margin-right: 0;
  text-align: left;
  order: 1;
  padding-top: 32px;
  padding-bottom: 32px;
}
.about-highlights-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  min-width: 280px;
  max-width: 340px;
  width: 100%;
  order: 2;
  margin-left: 48px;
}
.about-highlights-row.about-highlights-vertical {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 340px;
}
.about-highlight-card {
  width: 100%;
  max-width: 320px;
  min-width: 220px;
  min-height: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}
.about-highlights-row.about-highlights-vertical {
  width: 100%;
  max-width: 320px;
}
@media (max-width: 991px) {
  .about-highlight-card {
    max-width: 320px;
    min-width: 180px;
    min-height: 56px;
    height: 56px;
  }
  .about-highlights-row.about-highlights-vertical {
    max-width: 100%;
  }
} 

.about-highlights-col {
  align-self: flex-start;
  margin-top: 48px;
}
@media (max-width: 991px) {
  .about-highlights-col {
    align-self: center;
    margin-top: 0;
  }
} 

.why-choose-title.section-main-title,
.footer-social .section-main-title {
  position: relative;
  cursor: pointer;
}
.why-choose-title.section-main-title::after,
.footer-social .section-main-title::after {
  content: '';
  display: block;
  margin: 18px auto 0 auto;
  width: 48px;
  height: 3px;
  background: #1e3a8a;
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s;
}
.why-choose-title.section-main-title:hover::after,
.why-choose-title.section-main-title:focus::after,
.footer-social .section-main-title:hover::after,
.footer-social .section-main-title:focus::after {
  width: 80px !important;
  background: #e0e0e0 !important;
  height: 3px !important;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s, height 0.3s !important;
}
@media (max-width: 600px) {
  .footer-social .section-main-title:hover::after,
  .footer-social .section-main-title:focus::after,
  .why-choose-title.section-main-title:hover::after,
  .why-choose-title.section-main-title:focus::after {
    width: 56px !important;
    height: 2.5px !important;
  }
} 

.service-area .section-main-title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.service-area .section-main-title::after {
  margin: 18px auto 0 auto !important;
  width: 48px;
  height: 3px;
  background: #1e3a8a;
  border-radius: 2px;
  display: block;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s, height 0.3s;
} 
.service-area .section-main-title:hover::after,
.service-area .section-main-title:focus::after {
  width: 80px;
  background: #ffd84a;
  height: 3px;
}
@media (max-width: 600px) {
  .service-area .section-main-title:hover::after,
  .service-area .section-main-title:focus::after {
    width: 56px;
    height: 2.5px;
  }
} 

@media (max-width: 767px) {
  .section-main-title {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    padding-left: 8px;
    padding-right: 8px;
  }
  .section-main-title::after {
    width: 32px;
    height: 2px;
    margin-top: 10px;
  }
  .about-area .container,
  .service-area .container,
  .why-choose-section .why-choose-container,
  .footer-content {
    padding-left: 8px !important;
    padding-right: 8px !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  .about-area .row,
  .service-area .row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }
  .about-content,
  .about-highlights-col {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .about-highlights-row.about-highlights-vertical {
    max-width: 100% !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .about-highlight-card {
    max-width: 98vw !important;
    min-width: 0 !important;
    font-size: 0.95rem !important;
    padding: 8px 8px !important;
    height: auto !important;
    min-height: 40px !important;
  }
  .mecha-cta-btn {
    background: transparent !important;
    color: #1e3a8a !important;
    border: 2px solid #1e3a8a !important;
    border-radius: 0 !important;
    padding: 18px 38px !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .mecha-cta-btn:hover, .mecha-cta-btn:focus, .mecha-cta-btn:active {
    background: #1e3a8a !important;
    color: #fff !important;
    border-color: #1e3a8a !important;
  }
  .header-area .btn-yellow,
  .header-area .mecha-cta-btn,
  .header-area .theme-btn {
    padding: 3px 14px !important;
    font-size: 0.92rem !important;
    height: 30px !important;
    min-width: 0 !important;
    margin-right: 8px !important;
  }
  .footer-social .section-main-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem !important;
  }
  .footer-social .section-main-title::after {
    margin-top: 10px !important;
    margin-bottom: 18px !important;
  }
  .footer-social .social-links {
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer-social .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  .why-choose-section .why-choose-box {
    max-width: 98vw !important;
    padding: 12px 4vw 12px 4vw !important;
  }
} 

.accordion-button {
  font-weight: 600;
  color: #333;
  background-color: #f9f9f9;
}
.accordion-button:not(.collapsed) {
  background-color: #1e3a8a;
  color: #000;
}
.accordion-body {
  background-color: #fff;
  font-size: 1rem;
  color: #555;
} 

.booking-subtitle {
  margin-top: 0.7rem;
  margin-bottom: 2.5rem;
  font-size: 1.18rem;
  color: #444;
  font-weight: 500;
  text-align: center;
} 

.booking-form-section {
  padding-top: 32px;
  padding-bottom: 64px;
}

#bookingForm .form-label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #222d38;
  letter-spacing: 0.2px;
}

#bookingForm .form-control,
#bookingForm .form-select {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  margin-bottom: 12px;
  font-size: 1.08rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#bookingForm .form-control:focus,
#bookingForm .form-select:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 2px rgba(30,58,138,0.12);
}

#bookingForm .col-md-6,
#bookingForm .col-md-12 {
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  #bookingForm .row.g-3 {
    column-gap: 32px;
  }
}

#bookingForm {
  margin-top: 24px;
  margin-bottom: 24px;
}

#bookingForm .mecha-cta-btn {
  margin-top: 12px;
  margin-bottom: 8px;
} 
button.mecha-cta-btn,
button.mecha-cta-btn:focus,
button.mecha-cta-btn:active {
  color: #1e3a8a !important;
  background: #fff !important;
  border: 2px solid #1e3a8a !important;
}
button.mecha-cta-btn:hover {
  color: #fff !important;
  background: #1e3a8a !important;
  border: 2px solid #1e3a8a !important;
} 
button.mecha-cta-btn,
a.mecha-cta-btn,
button.btn-yellow,
a.btn-yellow {
  color: #1e3a8a !important;
  background: #fff !important;
  border: 2px solid #1e3a8a !important;
}

button.mecha-cta-btn:hover,
a.mecha-cta-btn:hover,
button.mecha-cta-btn:focus,
a.mecha-cta-btn:focus,
button.mecha-cta-btn:active,
a.mecha-cta-btn:active,
button.btn-yellow:hover,
a.btn-yellow:hover,
button.btn-yellow:focus,
a.btn-yellow:focus,
button.btn-yellow:active,
a.btn-yellow:active {
  color: #fff !important;
  background: #1e3a8a !important;
  border: 2px solid #1e3a8a !important;
} 

/* --- Navbar logo and button spacing tweaks --- */
.header-area .navbar-brand {
  margin-left: 32px !important;
}
.header-area .btn-yellow,
.header-area .mecha-cta-btn,
.header-area .theme-btn {
  margin-right: 32px !important;
}

@media (max-width: 900px) {
  .header-area .navbar-brand {
    margin-left: 12px !important;
  }
  .header-area .btn-yellow,
  .header-area .mecha-cta-btn,
  .header-area .theme-btn {
    margin-right: 8px !important;
  }
} 

.mecha-cta-btn:visited,
.btn-yellow:visited,
.theme-btn:visited,
.service-link:visited,
.navbar-nav > li > a:visited,
.nav-link:visited {
  text-decoration: none !important;
  border-bottom: none !important;
} 

/* 1. Make BOOK NOW button fixed and movable bottom-right */
.floating-book-btn {
  position: fixed !important;
  right: 32px !important;
  bottom: 32px !important;
  z-index: 2000 !important;
  background: #1e3a8a !important;
  color: #fff !important;
  border: none !important;
  border-radius: 32px !important;
  padding: 18px 38px !important;
  font-size: 1.18rem !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
}
.floating-book-btn:hover, .floating-book-btn:focus {
  background: #ffd84a !important;
  color: #222d38 !important;
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 10px 32px rgba(30,58,138,0.18) !important;
  outline: none !important;
  text-decoration: none !important;
}
@media (max-width: 600px) {
  .floating-book-btn {
    right: 12px !important;
    bottom: 12px !important;
    padding: 12px 22px !important;
    font-size: 1rem !important;
    border-radius: 22px !important;
  }
}

/* 2. Shift footer logo more left, center above social icons */
.footer-modern-col.about-col {
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  margin-left: 0 !important;
}
.footer-logo {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}
.footer-social-icons {
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-content: flex-start !important;
}

/* 3. Shift links section a bit to the right */
.footer-modern-col.links-col {
  margin-left: 32px !important;
}

/* 4. Reduce newsletter input and button size */
.footer-newsletter-form {
  max-width: 180px !important;
}
.footer-newsletter-input {
  padding: 4px 6px !important;
  font-size: 0.91rem !important;
  height: 28px !important;
}
.footer-newsletter-btn {
  padding: 5px 0 !important;
  font-size: 0.93rem !important;
  height: 30px !important;
  min-width: 90px !important;
}

/* 5. Further reduce copyright section height */
.footer-modern-bottom {
  padding: 0 !important;
  font-size: 0.85rem !important;
  line-height: 1.1 !important;
}

.view-services-btn {
  background: #fff !important;
  color: #1e3a8a !important;
  border: 2px solid #1e3a8a !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  box-shadow: none !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.view-services-btn:hover, .view-services-btn:focus, .view-services-btn:active {
  background: #1e3a8a !important;
  color: #fff !important;
  border-color: #1e3a8a !important;
} 

.get-in-touch-btn {
  background: #1e3a8a !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.get-in-touch-btn:hover, .get-in-touch-btn:focus, .get-in-touch-btn:active {
  background: #e0e0e0 !important;
  color: #222d38 !important;
  border: 2px solid #e0e0e0 !important;
  box-shadow: 0 4px 16px rgba(30,58,138,0.18) !important;
} 

/* --- FORCE GET IN TOUCH BUTTON STYLE --- */
.btn.get-in-touch-btn,
.btn-yellow.get-in-touch-btn,
.theme-btn.get-in-touch-btn,
.mecha-cta-btn.get-in-touch-btn,
.get-in-touch-btn {
  background: #1e3a8a !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s !important;
  padding: 10px 38px !important;
  display: flex !important;
  align-items: center !important;
  height: 48px !important;
  margin: auto 0 !important;
  text-decoration: none !important;
  border-bottom: none !important;
}
.btn.get-in-touch-btn:hover,
.btn-yellow.get-in-touch-btn:hover,
.theme-btn.get-in-touch-btn:hover,
.mecha-cta-btn.get-in-touch-btn:hover,
.get-in-touch-btn:hover,
.btn.get-in-touch-btn:focus,
.btn-yellow.get-in-touch-btn:focus,
.theme-btn.get-in-touch-btn:focus,
.mecha-cta-btn.get-in-touch-btn:focus,
.get-in-touch-btn:focus {
  background: #ffd84a !important;
  color: #222d38 !important;
  box-shadow: 0 4px 16px rgba(30,58,138,0.18) !important;
} 

/* --- ISOLATED ACCORDION CTA BUTTON STYLE (ACCORDION ONLY) --- */
.accordion-cta-btn {
  background: #1e3a8a !important;
  color: #fff !important;
  border: none !important;
  border-radius: 32px !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 32px rgba(30,58,138,0.18) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s !important;
  padding: 18px 38px !important;
  font-size: 1.18rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px;
  cursor: pointer;
  text-decoration: none !important;
  min-width: 180px;
  text-align: center !important;
  margin-top: 10px !important;
  box-sizing: border-box !important;
}
.accordion-cta-btn:hover, .accordion-cta-btn:focus, .accordion-cta-btn:active {
  background: #ffd84a !important;
  color: #222d38 !important;
  box-shadow: 0 10px 32px rgba(30,58,138,0.18) !important;
  transform: translateY(-2px) scale(1.04);
} 

/* --- UNIVERSAL BUTTON VISIBILITY & HOVER FIX --- */
.btn-yellow,
.mecha-cta-btn,
.theme-btn,
.accordion-cta-btn {
  color: #fff !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: none !important;
}
.btn-yellow:hover, .btn-yellow:focus, .btn-yellow:active,
.mecha-cta-btn:hover, .mecha-cta-btn:focus, .mecha-cta-btn:active,
.theme-btn:hover, .theme-btn:focus, .theme-btn:active,
.accordion-cta-btn:hover, .accordion-cta-btn:focus, .accordion-cta-btn:active {
  background: #ffd84a !important;
  color: #222d38 !important;
  border-color: #ffd84a !important;
  text-shadow: none !important;
} 

.about-header {
  background-color: #f8f9fa;
  padding: 64px 0 48px 0;
  background: linear-gradient(180deg, #f8f9fa 80%, #fff 100%);
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #222d38;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  text-align: center;
  line-height: 1.1;
  position: relative;
  display: block;
}

.about-header .about-subtitle,
.about-header > div {
  font-size: 1.25rem;
  color: #444;
  font-weight: 500;
  margin: 0 auto 0 auto;
  max-width: 700px;
  text-align: center;
  margin-top: 0.7rem;
}

.consultant-card {
  border: 1px solid #eaeaea;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1.5px 6px rgba(30,58,138,0.08);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.consultant-card:hover, .consultant-card:focus {
  border-color: #1e3a8a;
  box-shadow: 0 12px 48px rgba(30,58,138,0.18), 0 2px 16px rgba(0,0,0,0.10);
  transform: translateY(-6px) scale(1.025);
}
.consultant-card h4 {
  font-weight: 500;
  margin-top: 1.2rem;
  color: #222d38;
  font-size: 2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
}
.consultant-card p {
  margin: 0.3rem 0;
  color: #444;
  font-size: 1.13rem;
}
.consultant-card .consultant-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  color: #fff;
  margin: 0 auto 18px auto;
  box-shadow: 0 2px 12px rgba(30,58,138,0.13);
  transition: box-shadow 0.3s, transform 0.3s;
}
.consultant-card:hover .consultant-icon {
  color: #1e3a8a;
  box-shadow: 0 8px 32px rgba(30,58,138,0.22);
  transform: scale(1.07);
} 

.about-overview {
  font-size: 1.18rem;
  color: #222d38;
  line-height: 1.8;
  font-family: 'Poppins', 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
}
.about-overview p {
  margin-bottom: 1.3em;
  margin-top: 0;
}
.about-overview b {
  color: #222d38;
  font-weight: 700;
  letter-spacing: 0.5px;
} 

/* About Gallery Carousel Styles */
.about-gallery-carousel-section {
  width: 100vw;
  background: #fff;
  padding: 32px 0 32px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.about-gallery-carousel {
  width: 100vw;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  max-width: 100vw;
}
.about-gallery-track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: about-gallery-scroll 32s linear infinite;
  will-change: transform;
}
.about-gallery-card {
  flex: 0 0 260px;
  height: 180px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.about-gallery-card:hover {
  border-color: #1e3a8a;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: scale(1.04);
}
@keyframes about-gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Responsive adjustments */
@media (max-width: 900px) {
  .about-gallery-card { flex: 0 0 180px; height: 120px; }
  .about-gallery-track { gap: 18px; }
}
@media (max-width: 600px) {
  .about-gallery-card { flex: 0 0 120px; height: 80px; }
  .about-gallery-track { gap: 10px; }
  .about-gallery-carousel-section { padding: 18px 0; }
}
.about-gallery-carousel::-webkit-scrollbar, .about-gallery-track::-webkit-scrollbar { display: none; } 

/* About page quote styling */
.about-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: #555;
  margin-bottom: 24px;
  border-left: 4px solid #bbb;
  padding-left: 18px;
}
.about-quote::after {
  content: '';
  display: block;
  margin: 0.5rem auto 0 auto;
  width: 80%;
  max-width: 220px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1e3a8a 60%, #fffbe6 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(.4,1.6,.6,1);
}
.about-quote:hover::after {
  transform: scaleX(1);
}
@keyframes about-quote-fadein {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .about-quote { font-size: 1.05rem; }
  .about-quote::after { max-width: 120px; height: 3px; }
} 

/* Contact page quote styling */
.contact-quote {
  font-size: 1.18rem;
  color: #555;
  font-style: italic;
  font-weight: 500;
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
  text-align: center;
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: about-quote-fadein 1.2s ease 0.2s forwards;
}
.contact-quote::after {
  content: '';
  display: block;
  margin: 0.5rem auto 0 auto;
  width: 80%;
  max-width: 180px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1e3a8a 60%, #fffbe6 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(.4,1.6,.6,1);
}
.contact-quote:hover::after {
  transform: scaleX(1);
}
@media (max-width: 600px) {
  .contact-quote { font-size: 1.01rem; }
  .contact-quote::after { max-width: 90px; height: 2px; }
} 

/* Reusable fade-in effect for headings and sections */
.fadein-effect {
  opacity: 0;
  animation: about-quote-fadein 1.2s ease 0.2s forwards;
} 

/* Contact form card styling */
.contact-form-card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  margin-bottom: 32px;
  margin-top: 0;
}
@media (max-width: 900px) {
  .contact-form-card { padding: 1.5rem 0.7rem; }
}
.contact-form-card .form-label {
  font-weight: 600;
  color: #222d38;
  margin-bottom: 0.4rem;
  letter-spacing: 0.2px;
}
.contact-form-card .form-control, .contact-form-card textarea.form-control {
  border-radius: 10px;
  border: 1.5px solid #eaeaea;
  font-size: 1.08rem;
  padding: 0.7rem 1.1rem;
  margin-bottom: 0.7rem;
  box-shadow: none;
  transition: border-color 0.2s;
}
.contact-form-card .form-control:focus, .contact-form-card textarea.form-control:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 2px #fffbe6;
}
.contact-form-card .mecha-cta-btn {
  margin-top: 10px;
  min-width: 180px;
} 

/* --- FORCE GREY HOVER FOR ALL ACCENT BUTTONS --- */
button.mecha-cta-btn:hover,
a.mecha-cta-btn:hover,
button.mecha-cta-btn:focus,
a.mecha-cta-btn:focus,
button.mecha-cta-btn:active,
a.mecha-cta-btn:active,
button.btn-yellow:hover,
a.btn-yellow:hover,
button.btn-yellow:focus,
a.btn-yellow:focus,
button.btn-yellow:active,
a.btn-yellow:active,
button.get-in-touch-btn:hover,
a.get-in-touch-btn:hover,
button.get-in-touch-btn:focus,
a.get-in-touch-btn:focus,
button.get-in-touch-btn:active,
a.get-in-touch-btn:active,
button.accordion-cta-btn:hover,
a.accordion-cta-btn:hover,
button.accordion-cta-btn:focus,
a.accordion-cta-btn:focus,
button.accordion-cta-btn:active,
a.accordion-cta-btn:active,
.floating-book-btn:hover,
.floating-book-btn:focus,
.view-services-btn:hover,
.view-services-btn:focus,
.view-services-btn:active {
  background: #e0e0e0 !important;
  color: #222d38 !important;
  border: 2px solid #e0e0e0 !important;
} 

/* --- FORCE GREY HOVER FOR GET IN TOUCH BUTTON --- */
button.get-in-touch-btn:hover,
a.get-in-touch-btn:hover,
button.get-in-touch-btn:focus,
a.get-in-touch-btn:focus,
button.get-in-touch-btn:active,
a.get-in-touch-btn:active {
  background: #e0e0e0 !important;
  color: #222d38 !important;
  border: 2px solid #e0e0e0 !important;
  box-shadow: 0 4px 16px rgba(30,58,138,0.18) !important;
} 

/* --- ABSOLUTE OVERRIDE: FORCE GREY HOVER FOR GET IN TOUCH BUTTON --- */
a.get-in-touch-btn:hover,
a.get-in-touch-btn:focus,
a.get-in-touch-btn:active,
button.get-in-touch-btn:hover,
button.get-in-touch-btn:focus,
button.get-in-touch-btn:active,
.btn.get-in-touch-btn:hover,
.btn.get-in-touch-btn:focus,
.btn.get-in-touch-btn:active,
.btn-yellow.get-in-touch-btn:hover,
.btn-yellow.get-in-touch-btn:focus,
.btn-yellow.get-in-touch-btn:active,
.theme-btn.get-in-touch-btn:hover,
.theme-btn.get-in-touch-btn:focus,
.theme-btn.get-in-touch-btn:active,
.mecha-cta-btn.get-in-touch-btn:hover,
.mecha-cta-btn.get-in-touch-btn:focus,
.mecha-cta-btn.get-in-touch-btn:active {
  background: #e0e0e0 !important;
  color: #222d38 !important;
  border: 2px solid #e0e0e0 !important;
  box-shadow: 0 4px 16px rgba(30,58,138,0.18) !important;
} 

/* Service Section Content Alignment Improvements */
.service-content-box {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px 32px 32px 24px;
  min-height: 260px;
}
.service-content-box h3,
.service-content-box .lead {
  text-align: center;
  width: 100%;
}
.service-content-box .btn {
  margin-top: 8px;
  font-size: 1.08rem;
  padding: 10px 32px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(30,58,138,0.08);
  background: #1e3a8a;
  color: #fff;
  border: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.service-content-box-left {
  align-items: flex-start !important;
  text-align: left !important;
  padding-left: 32px !important;
}
@media (max-width: 991px) {
  .service-content-box-left {
    padding-left: 8px !important;
    text-align: center !important;
    align-items: center !important;
  }
}
.service-section .row {
  align-items: center !important;
}
@media (max-width: 991px) {
  .service-content-box {
    padding: 24px 12px 24px 12px;
    min-height: unset;
    align-items: center;
    text-align: center;
  }
  .service-content-box h3 {
    font-size: 1.5rem;
  }
  .service-content-box .lead {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .service-content-box {
    padding: 18px 0 18px 0;
    align-items: center;
    text-align: center;
  }
  .service-content-box h3 {
    margin-bottom: 10px;
  }
  .service-content-box .btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
} 

.service-img-scrollspy {
  height: 180px;
  width: 320px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,58,138,0.08);
  margin-bottom: 18px;
  display: block;
}
.service-content-box {
  min-height: 180px;
}
@media (max-width: 991px) {
  .service-img-scrollspy {
    height: 120px;
    width: 100%;
    max-width: 100%;
  }
  .service-content-box {
    min-height: unset;
  }
}
.service-section {
  padding: 24px 0;
}
.service-section:not(:last-child) {
  margin-bottom: 18px;
}
.service-section .col-lg-6:first-child, .service-section .col-lg-6.order-lg-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
} 

 

/* Increase space between ScrollSpy and text */
@media (min-width: 992px) {
  .services-content {
    margin-left: 32px;
  }
}
/* Reduce space between text and image */
.service-content-box {
  padding: 32px 8px 32px 8px;
}
@media (max-width: 991px) {
  .services-content {
    margin-left: 0;
  }
  .service-content-box {
    padding: 24px 4px 24px 4px;
  }
} 

#services-nav {
  /* min-height: 100vh; */
  height: 100%;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 270px;
  box-shadow: 0 4px 24px rgba(30,58,138,0.10);
  border-radius: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  border: 1px solid #dee2e6;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  z-index: 10;
}
@media (max-width: 991px) {
  #services-nav {
    min-height: unset;
    position: relative;
    top: unset;
    left: unset;
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(30,58,138,0.08);
  }
} 
.service-area .row {
  align-items: stretch !important;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 2rem 0;
  gap: 2rem;
}
.service-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: left;
}
.service-text h3 {
  font-weight: 700;
  color: #112b6c;
}
.service-text p {
  font-size: 1.1rem;
  color: #6c757d;
}
.service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
@media (max-width: 991px) {
  .service-row {
    flex-direction: column;
    min-height: unset;
    gap: 1.5rem;
    padding: 1.2rem 0;
  }
  .service-text {
    text-align: center;
    align-items: center;
  }
}

.service-image-3dprinting img {
  max-height: 320px;
  object-fit: cover;
  margin: auto;
  width: 100%;
  display: block;
}
@media (max-width: 991px) {
  .service-image-3dprinting img {
    max-height: 180px;
  }
}

.scrollspy-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  transition: background 0.3s ease, color 0.3s ease;
  border-left: 4px solid transparent;
  cursor: pointer;
  font-weight: 500;
  color: #333;
}
.scrollspy-item:hover {
  background-color: #e6f0ff;
  border-left: 4px solid #112b6c;
  color: #112b6c;
}
.scrollspy-item i {
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.scrollspy-item:hover i {
  transform: scale(1.15);
  color: #112b6c;
}
.scrollspy-item.active {
  background-color: #112b6c;
  color: #fff;
  border-left: 4px solid #f5bf23;
}

.scrollspy-item.hover-active:not(.active) {
  background-color: #e6f0ff;
  color: #112b6c;
  border-left: 4px solid #112b6c;
}
.scrollspy-item.hover-active:not(.active) i {
  color: #112b6c;
  transform: scale(1.15);
}

.service-row.flex-row-reverse .service-image {
  margin-right: 0;
  padding-right: 2.5rem;
}
@media (max-width: 991px) {
  .service-row.flex-row-reverse .service-image {
    padding-right: 1rem;
  }
}

#services-nav .scrollspy-item.hover-active:not(.active),
#services-nav .scrollspy-item.hover-active:not(.active):hover {
  background-color: #e6f0ff !important;
  color: #112b6c !important;
  border-left: 4px solid #112b6c !important;
}
#services-nav .scrollspy-item.hover-active:not(.active) i {
  color: #112b6c !important;
  transform: scale(1.15);
}

.service-row.flex-row-reverse .service-image-inner {
  padding-right: 2.5rem;
}
@media (max-width: 991px) {
  .service-row.flex-row-reverse .service-image-inner {
    padding-right: 1rem;
  }
}

.service-knowmore-btn,
.service-card-mobile-btn {
  padding: 7px 18px;
  border-radius: 6px;
  min-width: unset;
  width: auto;
  font-size: 1rem;
  font-weight: 600;
  background: #1e3a8a;
  color: #fff;
  box-shadow: 0 2px 8px rgba(30,58,138,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
}
.service-knowmore-btn:hover,
.service-card-mobile-btn:hover {
  background: #18336d;
  color: #fff;
  transform: scale(1.04);
  text-decoration: none !important;
}

/* Add this at the end of the file to override previous styles */
.main-navbar .main-menu .nav {
  margin-left: 18px !important;
}
@media (max-width: 900px) {
  .main-navbar .main-menu .nav {
    margin-left: 0 !important;
  }
}

/* Remove previous margin-left override */
.main-navbar .main-menu .nav {
  margin-left: 0 !important;
}
/* Add margin-left to the menu container to move the menu closer to the logo */
.main-navbar .main-menu {
  margin-left: 8px !important;
}
@media (max-width: 900px) {
  .main-navbar .main-menu {
    margin-left: 0 !important;
  }
}

/* Center the navbar menu between logo and right buttons */
.main-navbar .menu-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-navbar .main-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-left: 0 !important;
}
@media (max-width: 900px) {
  .main-navbar .main-menu {
    justify-content: flex-start;
  }
}

/* More precise centering of the navbar menu */
.main-navbar .menu-wrap {
  position: relative;
}
.main-navbar .main-menu {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0 !important;
}
@media (max-width: 900px) {
  .main-navbar .main-menu {
    position: static;
    left: unset;
    top: unset;
    transform: none;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Visually appealing, modern About Us section styles */
.about-row-flex {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
}
@media (max-width: 900px) {
  .about-row-flex {
    flex-direction: column;
    gap: 0;
  }
}
/* Keep all other advanced About Us section styles */

/* Center the About Us section horizontally and vertically */
.about-section-outer {
  position: relative;
  background: linear-gradient(120deg, #f4f7fb 0%, #e9eefa 100%);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-row-flex {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-glass-box {
  background: #fff !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: 0 8px 32px rgba(30,58,138,0.10) !important;
  padding: 2.8rem 2.5rem 2.5rem 2.5rem !important;
  max-width: 820px !important;
  width: 100% !important;
  margin: 0 auto !important;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.about-glass-box::before {
  display: none !important;
}
@media (max-width: 900px) {
  .about-section-outer {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .about-glass-box {
    padding: 1.1rem 0.7rem 1.1rem 0.7rem;
    max-width: 99vw;
  }
}

/* Remove underline/accent bar from about-quote */
.about-quote::after, .about-quote-underline, .about-quote-accent {
  display: none !important;
}

/* Our Products Section Styles */
.products-section {
  background: #f8f9fa;
  padding-top: 64px;
  padding-bottom: 64px;
}
.products-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
}
.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(30,58,138,0.10);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
  border: none;
  overflow: hidden;
  position: relative;
}
.product-card:hover {
  box-shadow: 0 12px 32px rgba(30,58,138,0.16);
  transform: translateY(-6px) scale(1.03);
}
.product-image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e9eefa 0%, #f8f9fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card-body {
  padding: 1.5rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-items: flex-start;
  justify-content: flex-start;
}
.product-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #112b6c;
  margin-bottom: 0.7rem;
}
.product-desc {
  font-size: 1.02rem;
  color: #444;
  margin-bottom: 1.2rem;
  flex: 1 1 auto;
}
.product-btn {
  background: #112b6c;
  color: #fff;
  font-weight: 600;
  padding: 0.65rem 1.7rem;
  border-radius: 30px;
  font-size: 1.05rem;
  border: none;
  box-shadow: 0 2px 8px rgba(30,58,138,0.10);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
}
.product-btn:hover,
.product-btn:focus {
  background: #ffd84a;
  color: #112b6c;
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(30,58,138,0.16);
}
@media (max-width: 991px) {
  .products-row {
    gap: 1.5rem 0;
  }
  .product-card {
    border-radius: 14px;
  }
  .product-card-body {
    padding: 1.1rem 0.7rem 1.1rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .products-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .product-card {
    border-radius: 10px;
  }
  .product-title {
    font-size: 1.05rem;
  }
  .product-desc {
    font-size: 0.97rem;
  }
}

/* Gallery Section Styles */
.gallery-section {
  background: #f8f9fa;
  padding-top: 64px;
  padding-bottom: 64px;
}
.gallery-carousel {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(30,58,138,0.10);
  overflow: hidden;
  background: #fff;
}
.gallery-image {
  border-radius: 12px !important;
  width: 98%;
  height: 340px;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 24px rgba(30,58,138,0.10);
}
@media (max-width: 991px) {
  .gallery-image {
    height: 180px;
    width: 100%;
  }
}
.carousel-item.active .gallery-image,
.carousel-item .gallery-image:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(30,58,138,0.13);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #112b6c;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  background-size: 60% 60%;
  box-shadow: 0 2px 8px rgba(30,58,138,0.10);
}
.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}
@media (max-width: 900px) {
  .gallery-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .gallery-carousel {
    max-width: 98vw;
    border-radius: 10px;
  }
  .gallery-image {
    height: 220px;
    border-radius: 0;
  }
}

/* Partners & Collaborators Section */
.partners-section {
  background: #f8f9fa;
  padding-top: 56px;
  padding-bottom: 56px;
}
.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 0;
  justify-content: center;
  align-items: center;
}
.partner-logo-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(30,58,138,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 100px;
  min-width: 100px;
  max-width: 160px;
  margin: 0 auto;
}
.partner-logo-card:hover {
  box-shadow: 0 8px 32px rgba(30,58,138,0.16);
  transform: translateY(-4px) scale(1.04);
}
.partner-logo-img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(0.2) brightness(0.98);
  transition: filter 0.2s, transform 0.2s;
}
.partner-logo-card:hover .partner-logo-img {
  filter: grayscale(0) brightness(1.08);
  transform: scale(1.07);
}
@media (max-width: 991px) {
  .partners-row {
    gap: 18px 0;
  }
  .partner-logo-card {
    min-width: 80px;
    max-width: 120px;
    padding: 14px 6px;
  }
  .partner-logo-img {
    max-height: 48px;
  }
}
@media (max-width: 600px) {
  .partners-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .partner-logo-card {
    min-width: 60px;
    max-width: 90px;
    padding: 8px 2px;
  }
  .partner-logo-img {
    max-height: 32px;
  }
}

/* Blogs Section */
.blogs-section {
  background: #f6f8fc;
  padding-top: 56px;
  padding-bottom: 56px;
}
.blogs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 0;
  justify-content: center;
  align-items: stretch;
}
.blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(30,58,138,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(30,58,138,0.16);
  transform: translateY(-4px) scale(1.03);
}
.blog-image-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #e9eefa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s;
}
.blog-card:hover .blog-image {
  transform: scale(1.06);
}
.blog-card-body {
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.blog-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.blog-excerpt {
  color: #444;
  font-size: 1.01rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
  flex: 1 1 auto;
}
.blog-btn {
  background: #112b6c;
  color: #fff;
  padding: 0.5rem 1.3rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.01rem;
  border: none;
  box-shadow: 0 2px 8px rgba(17,43,108,0.08);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
  align-self: flex-start;
}
.blog-btn:hover,
.blog-btn:focus {
  background: #0d1e4a;
  color: #fff;
  transform: scale(1.06);
}
@media (max-width: 991px) {
  .blogs-row {
    gap: 18px 0;
  }
  .blog-image-wrap {
    height: 140px;
  }
  .blog-card-body {
    padding: 18px 10px 14px 10px;
  }
}
@media (max-width: 600px) {
  .blogs-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .blog-image-wrap {
    height: 90px;
  }
  .blog-title {
    font-size: 1.01rem;
  }
  .blog-excerpt {
    font-size: 0.97rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: #f8f9fa;
  padding-top: 56px;
  padding-bottom: 56px;
}
.testimonials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 0;
  justify-content: center;
  align-items: stretch;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(30,58,138,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 24px 24px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(30,58,138,0.16);
  transform: translateY(-4px) scale(1.03);
}
.testimonial-quote {
  font-size: 1.08rem;
  font-style: italic;
  color: #1e3a8a;
  margin-bottom: 2.2rem;
  line-height: 1.7;
  position: relative;
  padding-left: 18px;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 2.5rem;
  color: #e0eefa;
  position: absolute;
  left: 0;
  top: -10px;
  font-family: serif;
}
.testimonial-client {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-client-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(30,58,138,0.10);
  border: 2px solid #e0eefa;
}
.testimonial-client-info {
  display: flex;
  flex-direction: column;
}
.testimonial-client-name {
  font-weight: 700;
  color: #222d38;
  font-size: 1.05rem;
}
.testimonial-client-role {
  color: #888;
  font-size: 0.97rem;
}
@media (max-width: 991px) {
  .testimonials-row {
    gap: 18px 0;
  }
  .testimonial-card {
    padding: 22px 10px 16px 10px;
  }
  .testimonial-quote {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    padding-left: 12px;
  }
  .testimonial-client-img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 600px) {
  .testimonials-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .testimonial-card {
    padding: 14px 4px 10px 4px;
  }
  .testimonial-quote {
    font-size: 0.97rem;
    padding-left: 8px;
  }
}

/* Ensure navbar logo is sized and aligned like the home page */
.main-navbar .navbar-brand img {
  max-height: 72px;
  height: 72px;
  width: auto;
  display: block;
  margin-right: 8px;
}
@media (max-width: 900px) {
  .main-navbar .navbar-brand img {
    max-height: 56px;
    height: 56px;
  }
}

/* Fix for navbar logo alignment on all pages */
.main-navbar .logo-col {
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .main-navbar .logo-col {
    margin-left: 0.5rem;
  }
}

.service-area, .service-area .container-fluid {
  border: none !important;
}

.main-navbar .main-menu .nav > li > a {
  font-size: 1rem;
  padding: 0.18rem 1.5rem 0.18rem 1.5rem;
  font-weight: 600;
}

/* Modern Footer Redesign (GITCS style) */
.footer-modern {
  background: linear-gradient(120deg, #1e3a8a 0%, #112b6c 100%) !important;
  color: #fff;
  padding: 0;
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
}
.footer-modern-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 16px 8px 16px !important;
  gap: 18px !important;
}
.footer-modern-col.about-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-right: 32px;
}
.footer-modern-col.links-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 220px;
  max-width: 260px;
}
.footer-modern-col.newsletter-col {
  background: #12244a;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,58,138,0.10);
  padding: 36px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  max-width: 420px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .footer-modern-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 8px;
  }
  .footer-modern-col.about-col,
  .footer-modern-col.links-col,
  .footer-modern-col.newsletter-col {
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: unset;
    max-width: 100%;
  }
}
.footer-logo img {
  max-height: 180px !important;
  height: 180px !important;
}
.footer-about-text {
  color: #e0e6f6;
  font-size: 0.68rem;
  line-height: 1.18;
  margin-bottom: 10px;
  font-family: 'Poppins', 'Roboto', Arial, sans-serif;
  text-align: justify;
  text-justify: inter-word;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  word-spacing: 0.2px;
}
.footer-modern-col .footer-col-title {
  text-align: center;
  font-size: 1.08rem !important;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: 0.5px;
}
.footer-modern-col .footer-newsletter-text {
  color: #e0e6f6;
  font-size: 1.01rem;
  margin-bottom: 18px;
  text-align: center;
}
.footer-modern-col .footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  align-items: center;
}
.footer-modern-col .footer-newsletter-input {
  padding: 16px 18px;
  border-radius: 10px;
  border: 1.5px solid #2a3e6e;
  background: #192c54;
  color: #fff;
  font-size: 1.08rem;
  outline: none;
  margin-bottom: 0;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(30,58,138,0.06);
}
.footer-modern-col .footer-newsletter-input:focus {
  border-color: #ffd84a;
  box-shadow: 0 4px 16px rgba(30,58,138,0.13);
}
.footer-modern-col .footer-newsletter-btn {
  background: linear-gradient(90deg, #2563eb 0%, #1e3a8a 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px 0;
  font-size: 1.13rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(30,58,138,0.10);
}
.footer-modern-col .footer-newsletter-btn:hover, .footer-modern-col .footer-newsletter-btn:focus {
  background: #fff !important;
  color: #1e3a8a !important;
  transform: scale(1.03);
}
.footer-modern-bottom {
  width: 100vw;
  background: rgba(17,43,108,0.98);
  padding: 6px 0 4px 0 !important;
  margin-top: 0;
  text-align: center;
  font-size: 1.01rem;
}
@media (max-width: 1100px) {
  .footer-modern-container {
    flex-direction: column;
    gap: 0;
    padding: 0 8px;
  }
  .footer-modern-col {
    max-width: 100%;
    padding: 0 0 12px 0;
    border: none;
  }
  .footer-modern-col.links-col,
  .footer-modern-col.contact-col {
    margin-left: 0;
  }
  .footer-modern-col:not(:last-child)::after {
    display: none;
  }
}

/* Project Cards Grid */
#projects-card-grid {
  margin-top: 0;
  margin-bottom: 0;
  row-gap: 2.2rem;
  column-gap: 2.2rem;
}
.project-card {
  display: flex;
  flex-direction: column;
}
.project-card .card {
  border-radius: 18px;
  overflow: hidden;
  background: #232b3a; /* lighter than #181c23 */
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  box-shadow: 0 2px 16px rgba(30,58,138,0.08);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.project-card .card:hover {
  box-shadow: 0 8px 32px rgba(30,58,138,0.18);
  transform: translateY(-4px) scale(1.02);
  background: #2d3650;
}
@media (min-width: 992px) {
  /* 2 cards per row on large screens */
  #projects-card-grid > .project-card {
    flex: 0 0 48%;
    max-width: 48%;
  }
}
@media (max-width: 991px) and (min-width: 600px) {
  /* 1 card per row on tablets */
  #projects-card-grid > .project-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  #projects-card-grid > .project-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1.5rem !important;
  }
  .project-card .card {
    border-radius: 14px;
  }
  .project-img-wrap img {
    max-height: 90px;
  }
  .card-title {
    font-size: 1.05rem;
  }
  .card-body {
    padding: 0.8rem 0.5rem 0.8rem 0.5rem;
  }
}

/* --- Compact Bootstrap Navbar Custom Styles (Ultra compact + enhanced hover) --- */
.mecha-navbar-compact {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: none;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
}
.mecha-navbar-compact .navbar-brand {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  height: 70px;
}
.mecha-navbar-compact .navbar-brand img {
  height: 50px !important;
  max-height: 50px !important;
  width: auto !important;
  margin-right: 12px;
  display: block;
}
.mecha-navbar-brand-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1;
}
.mecha-navbar-btn {
  font-size: 0.8rem;
  min-height: 28px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}
.mecha-navbar-nav .nav-link {
  padding-top: 0;
  padding-bottom: 0;
  height: 56px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .mecha-navbar-compact {
    height: 60px;
  }
  .mecha-navbar-compact .navbar-brand {
    height: 60px;
  }
  .mecha-navbar-compact .navbar-brand img {
    height: 42px !important;
    max-height: 42px !important;
  }
  .mecha-navbar-brand-text {
    font-size: 0.7rem;
  }
  .mecha-navbar-btn {
    font-size: 0.7rem;
    min-height: 20px;
  }
  .mecha-navbar-nav .nav-link {
    height: 60px;
  }
}
@media (max-width: 600px) {
  .mecha-navbar-compact {
    height: 28px;
  }
  .mecha-navbar-compact .navbar-brand {
    height: 28px;
  }
  .mecha-navbar-compact .navbar-brand img {
    height: 18px !important;
    max-height: 18px !important;
  }
  .mecha-navbar-brand-text {
    font-size: 0.5rem;
  }
  .mecha-navbar-btn {
    font-size: 0.6rem;
    min-height: 16px;
  }
  .mecha-navbar-nav .nav-link {
    height: 28px;
  }
}

/* Hide desktop navigation on mobile devices */
@media (max-width: 991px) {
  .mecha-navbar-compact {
    display: none !important;
  }
}

/* Mobile navigation styles */
.mecha-navbar-mobile {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: none;
  z-index: 1000;
  height: 65px;
  display: flex;
  align-items: center;
}

.mecha-navbar-mobile .navbar-brand {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  height: 65px;
}

.mecha-navbar-mobile .navbar-brand img {
  height: 45px !important;
  max-height: 45px !important;
  width: auto !important;
  margin-right: 12px;
  display: block;
}

.mecha-navbar-mobile .mecha-navbar-brand-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1;
}

/* Mobile navbar collapse styling */
.mecha-navbar-mobile .navbar-collapse {
  background-color: #000000;
  margin-top: 0;
  border-top: 1px solid #333;
}

.mecha-navbar-mobile .navbar-collapse.show {
  background-color: #000000;
}

/* Ensure all text in mobile dropdown is white */
.mecha-navbar-mobile .navbar-collapse * {
  color: #ffffff !important;
}

.mecha-navbar-mobile .navbar-collapse .nav-link {
  color: #ffffff !important;
}

.mecha-navbar-mobile .navbar-collapse .nav-item {
  color: #ffffff !important;
}

.mecha-navbar-mobile .navbar-collapse .navbar-nav {
  color: #ffffff !important;
}

.mecha-navbar-btn-mobile {
  font-size: 0.9rem;
  min-height: 32px;
  padding: 10px 20px;
  margin: 15px 20px;
  display: block;
  width: calc(100% - 40px);
  text-align: center;
  background-color: #1e3a8a;
  border-color: #1e3a8a;
  color: #ffffff;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mecha-navbar-btn-mobile:hover {
  background-color: #152a6b;
  border-color: #152a6b;
  color: #ffffff;
  transform: translateY(-1px);
}

.mecha-navbar-nav-mobile {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #000000;
}

.mecha-navbar-nav-mobile .nav-item {
  width: 100%;
  border-bottom: 1px solid #333;
}

.mecha-navbar-nav-mobile .nav-link {
  padding: 15px 20px;
  height: auto;
  display: block;
  text-align: left;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
}

.mecha-navbar-nav-mobile .nav-link:hover {
  background-color: #333333;
  color: #ffffff;
}

.mecha-navbar-nav-mobile .nav-link.active {
  background-color: #1e3a8a;
  color: white;
}

@media (max-width: 600px) {
  .mecha-navbar-mobile {
    height: 55px;
  }
  
  .mecha-navbar-mobile .navbar-brand {
    height: 55px;
  }
  
  .mecha-navbar-mobile .navbar-brand img {
    height: 38px !important;
    max-height: 38px !important;
  }
  
  .mecha-navbar-mobile .mecha-navbar-brand-text {
    font-size: 0.7rem;
  }
  
  .mecha-navbar-btn-mobile {
    font-size: 0.7rem;
    min-height: 24px;
    padding: 4px 10px;
  }
}

/* --- Navbar: Remove Vertical Lines Between Links --- */
.mecha-navbar-nav .nav-link {
  font-size: 0.93rem;
  font-weight: 500;
  color: #222d38;
  padding: 0 1.2rem;
  border-right: none !important;
  border-radius: 0;
  background: transparent;
  position: relative;
  transition: color 0.18s, background 0.18s;
  line-height: 1.1;
  height: 56px;
  display: flex;
  align-items: center;
  box-shadow: none;
  overflow: visible;
}
.mecha-navbar-nav .nav-link:last-child {
  border-right: none;
}
.mecha-navbar-nav .nav-link:hover, .mecha-navbar-nav .nav-link.active {
  color: #fff !important;
  background: #3b82f6 !important;
  box-shadow: none !important;
}

/* Remove any pill/curve effect from nav links */
.mecha-navbar-nav .nav-link, .mecha-navbar-nav .nav-link:before, .mecha-navbar-nav .nav-link:after {
  border-radius: 0 !important;
}

/* Responsive adjustments for nav link height */
@media (max-width: 991px) {
  .mecha-navbar-nav .nav-link {
    height: 40px;
    padding: 0 0.7rem;
    font-size: 0.91rem;
  }
}
@media (max-width: 600px) {
  .mecha-navbar-nav .nav-link {
    height: 28px;
    padding: 0 0.5rem;
    font-size: 0.8rem;
  }
}

/* --- Force Remove All Vertical Lines Between Navbar Links --- */
.mecha-navbar-nav .nav-link,
.navbar-nav > li > a,
.navbar-nav > li {
  border-right: none !important;
  border-left: none !important;
  box-shadow: none !important;
}

/* --- Parallelogram Card: Keep Images Horizontal --- */
.parallelogram {
  position: relative;
  width: 240px;
  height: 400px; /* Increased from 300px to 400px for more vertical length */
  background-size: cover;
  background-position: center;
  transform: skew(-18deg);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(30,58,138,0.10);
  border-radius: 10px; /* Reduced from 18px to 10px */
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  margin-bottom: 12px;
}
.parallelogram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skew(18deg);
  border-radius: 18px;
  display: block;
}
.parallelogram-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
@media (max-width: 1100px) {
  .parallelogram {
    width: 180px;
    height: 300px; /* Increased from 200px to 300px */
    border-radius: 8px; /* Reduced from 18px to 8px */
  }
}
@media (max-width: 700px) {
  .parallelogram {
    width: 98vw;
    max-width: 340px;
    height: 200px; /* Increased from 140px to 200px */
    margin: 0 auto 10px auto;
    border-radius: 6px; /* Reduced from 18px to 6px */
  }
}

/* --- Enhanced About Us Section Styles --- */
.about-section-outer {
  background: linear-gradient(120deg, #f4f7fb 0%, #e9eefa 100%);
  padding: 64px 0 64px 0;
  position: relative;
  overflow: hidden;
}
.about-row-flex.about-enhanced {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-image-col {
  flex: 1 1 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-main-img {
  max-width: 90%;
  height: auto;
  max-height: 340px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.about-text-col {
  flex: 1 1 480px;
  min-width: 320px;
}
.about-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: #555;
  margin-bottom: 24px;
  border-left: 4px solid #bbb;
  padding-left: 18px;
}
@media (max-width: 900px) {
  .about-row-flex.about-enhanced {
    flex-direction: column;
    gap: 16px;
  }
  .about-main-img {
    width: 90vw;
    height: 220px;
    border-radius: 18px;
  }
}

/* --- Left align for services nav --- */
.services-nav-leftalign {
  align-items: flex-start !important;
}
.services-nav-leftalign .nav-link {
  text-align: left !important;
  justify-content: flex-start !important;
  padding-left: 18px !important;
}
.services-nav-leftalign .nav-link:hover,
.services-nav-leftalign .nav-link:focus,
.services-nav-leftalign .nav-link.active {
  color: #fff !important;
  background: #1e3a8a !important;
}
.services-nav-leftalign .nav-link:hover i,
.services-nav-leftalign .nav-link:focus i,
.services-nav-leftalign .nav-link.active i {
  color: #fff !important;
}

/* Consistent size for all service images in services section */
.service-image img,
.service-image-inner img {
  width: 320px;
  height: 180px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
@media (max-width: 600px) {
  .service-image img,
  .service-image-inner img {
    width: 100%;
    height: 140px;
    max-width: 100vw;
  }
}

/* Reduce vertical gap between service sections */
.service-block {
  margin-bottom: 18px;
}
.service-row {
  padding: 1.2rem 0;
  gap: 1.2rem;
  min-height: unset;
}
@media (max-width: 991px) {
  .service-row {
    gap: 0.7rem;
    padding: 0.7rem 0;
  }
}

/* Reduce left gap in gallery section, keep small margin */
.gallery-section-outer .container {
  max-width: 98vw;
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.gallery-section .row.align-items-center.justify-content-center {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.carousel.slide.gallery-carousel {
  margin-left: 0 !important;
}
.gallery-image {
  margin-left: 0 !important;
}

/* Make footer nearly half height, compact newsletter */
.footer-modern-container {
  padding: 12px 6px 4px 6px !important;
  gap: 8px !important;
  min-height: unset;
}
.footer-modern-col {
  margin-bottom: 2px !important;
  gap: 4px !important;
}
.footer-logo img {
  max-height: 90px !important;
  height: 90px !important;
}
.footer-modern-col.links-col {
  min-width: 180px !important;
  max-width: 220px !important;
}
.footer-modern-col.newsletter-col {
  min-width: 220px !important;
  max-width: 320px !important;
  padding: 12px 8px !important;
}
.footer-newsletter-form {
  gap: 6px !important;
  margin-top: 4px !important;
}
.footer-newsletter-input {
  padding: 8px 10px !important;
  font-size: 0.98rem !important;
}
.footer-newsletter-btn {
  padding: 8px 0 !important;
  font-size: 1rem !important;
}
@media (max-width: 991px) {
  .footer-modern-container {
    padding: 8px 1vw 2px 1vw !important;
    gap: 4px !important;
  }
  .footer-modern-col {
    margin-bottom: 2px !important;
    gap: 2px !important;
  }
  .footer-logo img {
    max-height: 60px !important;
    height: 60px !important;
  }
}

.footer-newsletter-form {
  max-width: 260px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.footer-newsletter-input {
  padding: 6px 8px !important;
  font-size: 0.95rem !important;
  height: 34px !important;
  max-width: 100% !important;
}
.footer-newsletter-btn {
  padding: 7px 0 !important;
  font-size: 0.98rem !important;
  height: 38px !important;
  min-width: 120px !important;
  max-width: 100% !important;
}

.footer-modern-container {
  align-items: flex-start !important;
  padding-top: 32px !important;
}
.footer-modern-col.about-col {
  padding-top: 18px !important;
}
.footer-modern-col.links-col {
  padding-top: 18px !important;
}
.footer-modern-col.newsletter-col {
  padding-top: 8px !important;
}
.footer-modern-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.footer-newsletter-text {
  font-size: 0.93rem !important;
}
.footer-newsletter-input::placeholder {
  font-size: 0.91rem !important;
}

.footer-modern-col.newsletter-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
.footer-modern-col.newsletter-col * {
  text-align: center !important;
}
.footer-newsletter-form {
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.footer-modern-col.newsletter-col .footer-col-title {
  padding-top: 18px !important;
  font-size: 1.13rem !important;
}

.footer-social-icons {
  gap: 10px !important;
  margin-top: 0 !important;
}
.footer-modern-col.about-col {
  justify-content: flex-end !important;
}
.footer-logo {
  margin-bottom: 0 !important;
  align-items: flex-end !important;
}

.footer-links li a {
  font-size: 0.91em !important;
}
.footer-col-title {
  font-size: 1.01rem !important;
}

.footer-modern-col.about-col {
  padding-left: 32px !important;
}

.project-card .card .project-img-wrap {
  background: #fff6e3 !important; /* very light orange */
}
.project-card .card .card-body {
  background: #e9eefa !important; /* light grey */
  color: #232b3a !important;
}

#hero-categories {
  width: 100vw;
  left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;
  background: #b6d0f7; /* Darker blue background */
  padding: 36px 0 24px 0;
  position: relative;
  z-index: 2;
}
