:root {
  --primary-blue: #1565d6;
  --dark-blue: #0d47a1;
  --mid-blue: #1e88e5;
  --light-blue-bg: #e3f2fd;
  --bright-blue: #2196f3;
  --light-blue-icon: #64b5f6;
  --soft-blue-bg: #bbdefb;
  --orange-accent: #ffb74d;
  --light-orange-bg: #ffe0b2;
  --white: #ffffff;
  --light-grey-bg: #f5f7fa;
  --divider-grey: #e0e0e0;
  --muted-grey: #9e9e9e;
  --dark-text: #212121;
  --footer-bg: #0a0a0a;
  --footer-text: #bdbdbd;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Source Sans Pro",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Performance: Add containment for better rendering */
.service-card,
.industry-card,
.partner-logo {
  contain: layout style paint;
}

.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 575px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* Navbar */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
  height: 65px;
  transition: height 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  height: 55px;
}

.nav-link {
  color: var(--dark-text);
  font-weight: 600;
  padding: 0.5rem 1.2rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-blue);
}

@media (max-width: 991px) {
  .navbar-brand img {
    height: 50px;
  }

  .nav-link {
    padding: 0.75rem 0 !important;
    font-size: 0.95rem;
  }

  .navbar-collapse {
    padding-top: 1rem;
  }

  .navbar-nav .btn-primary-custom {
    width: 100%;
    margin-top: 1rem;
  }
}

.btn-primary-custom {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(21, 101, 214, 0.3);
  position: relative;
  z-index: 10;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary-custom:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 101, 214, 0.4);
}

@media (max-width: 767px) {
  .btn-primary-custom {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .btn-primary-custom {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* Hero Section */
.hero-section {
  background: var(--white);
  color: var(--dark-text);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  margin-top: 65px;
}

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

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

@media (max-width: 575px) {
  .hero-section {
    margin-top: 50px;
    padding: 40px 0 30px;
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

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

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h1 span {
  color: var(--primary-blue);
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-image {
  max-width: 520px;
  border-radius: 18px;
}

.hero-section .btn {
  margin: 0.5rem;
}

@media (max-width: 1199px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .hero-section {
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
  }

  .hero-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-image {
    max-width: 100%;
    margin-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
    line-height: 1.25;
  }

  .hero-section p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .hero-section .btn {
    margin: 0.4rem 0;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-image {
    max-height: 300px;
  }
}

@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .hero-section p {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }

  .hero-section .btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0.5rem auto;
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
  }

  .hero-image {
    max-height: 250px;
  }
}

.btn-outline-light-custom {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-white-custom {
  background: var(--white);
  color: var(--primary-blue);
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-white-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
  color: var(--dark-blue);
}

/* Trusted Partners Section */
.trusted-partners-section {
  padding: 60px 0;
  background: var(--light-grey-bg);
}

.partner-logo {
  max-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-height: 60px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.partner-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.partners-marquee {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners-marquee-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 1rem;
  height: 80px;
}

@media (max-width: 991px) {
  .trusted-partners-section {
    padding: 50px 0;
  }

  .partners-marquee {
    gap: 40px;
    animation: marquee 20s linear infinite;
  }

  .partners-marquee-wrapper {
    height: 70px;
  }

  .partner-logo img {
    max-height: 50px;
  }
}

@media (max-width: 767px) {
  .trusted-partners-section {
    padding: 40px 0;
  }

  .partners-marquee {
    gap: 32px;
    animation: marquee 18s linear infinite;
  }

  .partners-marquee-wrapper {
    height: 60px;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .partner-logo img {
    max-height: 40px;
  }
}

@media (max-width: 575px) {
  .partners-marquee {
    gap: 24px;
    animation: marquee 16s linear infinite;
  }

  .partners-marquee-wrapper {
    height: 50px;
    margin-top: 1rem;
  }

  .partner-logo img {
    max-height: 32px;
  }
}

/* Services Section */
.products-section {
  padding: 80px 0;
  background: var(--white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--muted-grey);
  margin-bottom: 3rem;
}

.service-card {
  background: var(--light-grey-bg);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.service-card:hover {
  background: var(--white);
  border-color: var(--primary-blue);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(21, 101, 214, 0.2);
}

.service-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
  line-height: 1.3;
}

.service-card p {
  color: var(--muted-grey);
  font-size: 1.1rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.learn-more-btn {
  width: 100%;
  max-width: 180px;
}

@media (max-width: 1199px) {
  .service-card {
    padding: 2rem 1.5rem;
    min-height: 380px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .products-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    min-height: 360px;
    padding: 2rem 1.5rem;
  }

  .service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .products-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .service-card {
    min-height: 340px;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  .service-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 1.25rem;
  }

  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .service-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .learn-more-btn {
    max-width: 160px;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }
}

@media (max-width: 575px) {
  .products-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .service-card {
    min-height: 300px;
    padding: 1.5rem 1rem;
  }

  .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .service-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .service-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .learn-more-btn {
    max-width: 140px;
    font-size: 0.85rem;
    padding: 0.55rem 1.2rem;
  }
}

/* Industries Section */
.industries-section {
  padding: 80px 0;
  background: var(--light-grey-bg);
}

.industries-header-image {
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
  max-height: 350px;
  object-fit: contain;
  padding-left: 50px !important;
}

/* Add bottom margin to the image to create separation from industries list */
.industries-section .row > .col-lg-3:nth-child(2) {
  margin-bottom: 3rem;
}


.industry-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(21, 101, 214, 0.15);
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--light-blue-bg) 100%
  );
}

.industry-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue-bg);
  border-radius: 50%;
  padding: 1.5rem;
  transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
  background: var(--primary-blue);
  transform: scale(1.1) rotate(5deg);
}

.industry-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.4s ease;
}

.industry-card:hover .industry-icon img {
  filter: brightness(0) invert(1);
}

.industry-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.industry-card p {
  color: var(--muted-grey);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.industries-header,
.partners-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.industries-header .section-subtitle {
  margin-bottom: 2rem;
}

.industries-label, .solutions-label {
  color: var(--primary-blue);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.products-label {
  color: var(--primary-blue);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Industries Cards with Inline Flex */
.d-flex.align-items-start {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.d-flex.align-items-start img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.d-flex.align-items-start > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.d-flex.align-items-start h5 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.d-flex.align-items-start p {
  margin-bottom: 0;
  font-size: 0.97rem;
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .industries-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .d-flex.align-items-start img {
    width: 50px;
    height: 50px;
    gap: 0.75rem;
  }

  .industries-header-image {
    max-height: 300px;
  }
}

@media (max-width: 991px) {
  .industries-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .industries-header {
    margin-bottom: 3rem;
  }

  .d-flex.align-items-start {
    margin-bottom: 2rem;
    gap: 0.75rem;
  }

  .d-flex.align-items-start img {
    width: 48px;
    height: 48px;
  }

  .d-flex.align-items-start h5 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .d-flex.align-items-start p {
    font-size: 0.9rem;
  }

  .industries-header-image {
    max-height: 280px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .industries-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.65rem;
    margin-bottom: 0.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .industries-header {
    margin-bottom: 2.5rem;
  }

  .industries-header-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    margin: 1.5rem 0;
  }

  .industry-card {
    padding: 2rem 1.5rem;
    min-height: 280px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
  }

  .industry-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 1.25rem;
  }

  .industry-card h4 {
    font-size: 1.1rem;
  }

  .industry-card p {
    font-size: 0.9rem;
  }

  .d-flex.align-items-start {
    margin-bottom: 1.5rem;
    gap: 0.75rem;
  }

  .d-flex.align-items-start img {
    width: 44px;
    height: 44px;
  }

  .d-flex.align-items-start h5 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    line-height: 1.3;
  }

  .d-flex.align-items-start p {
    font-size: 0.85rem;
  }

  /* Industries section columns on mobile */
  .industries-section > .container > .row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .industries-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .industries-header {
    margin-bottom: 2rem;
  }

  .industries-label {
    font-size: 0.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .industries-header-image {
    max-width: 100%;
    max-height: 300px;
    margin: 1.25rem 0;
  }

  .industry-card {
    padding: 1.5rem 1.25rem;
    min-height: 260px;
    margin-bottom: 1.25rem;
  }

  .industry-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .industry-card h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .industry-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .learn-more-btn {
    max-width: 140px;
    font-size: 0.85rem;
    padding: 0.55rem 1.2rem;
  }
}

/* Solutions Section */
.solutions-section {
  padding: 80px 0;
  background: var(--white);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
}

.feature-list li i {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.feature-list li span {
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .solutions-section {
    padding: 60px 0;
  }

  .solutions-section .row {
    flex-direction: column-reverse;
  }

  .feature-list li {
    margin-bottom: 1.25rem;
    padding: 0.4rem 0;
  }

  .feature-list li span {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .solutions-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .feature-list li {
    margin-bottom: 1.25rem;
  }

  .feature-list li i {
    font-size: 1.1rem;
    margin-right: 0.8rem;
  }

  .feature-list li span {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 575px) {
  .solutions-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .feature-list li {
    margin-bottom: 1.15rem;
    padding: 0.3rem 0;
  }

  .feature-list li i {
    font-size: 1rem;
    margin-right: 0.75rem;
  }

  .feature-list li span {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .btn-primary-custom {
    width: 100%;
    max-width: 240px;
    margin-top: 1.5rem;
  }
}

/* Modal Styles */
.modal-content {
  border: none;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(21, 101, 214, 0.2);
  overflow: hidden;
}

.modal-header-gradient {
  background: linear-gradient(135deg, #1565d6 0%, #1e88e5 100%);
  padding: 3rem 2.5rem 2rem;
  text-align: center;
}

.modal-header-gradient h2 {
  color: white;
  font-weight: 700;
  font-size: 2rem;
  margin: 0;
}

.modal-body-custom {
  padding: 2rem 2.5rem 3rem;
  text-align: left !important;
}

.modal-body-custom p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.modal-intro-text {
  margin-bottom: .5rem !important;
  line-height: 1.5 !important;
}

.contact-info-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #f5f7fa 100%);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 2rem;
  text-align: left !important;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: left !important;
  justify-content: flex-start;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

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

.contact-info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left !important;
}

.contact-info-label {
  color: #1565d6;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.5rem;
  text-align: left !important;
}

.contact-info-value {
  color: #212121;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
  text-align: left !important;
}

.contact-info-value:hover {
  color: var(--primary-blue);
}

.contact-info-value-address {
  color: #212121;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0.2rem 0;
  line-height: 1.5;
  text-align: left !important;
}

.close-btn-custom {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8) !important;
  border: none !important;
  opacity: 1 !important;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-btn-custom::after {
  content: "✕";
  color: #1565d6;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}

.close-btn-custom:hover {
  background: rgba(255, 255, 255, 1) !important;
}

@media (max-width: 767px) {
  .modal-content {
    border-radius: 20px;
  }

  .modal-header-gradient {
    padding: 2rem 1.5rem 1.5rem;
  }

  .modal-header-gradient h2 {
    font-size: 1.5rem;
  }

  .modal-body-custom {
    padding: 1.5rem 1.5rem 2rem;
  }

  .modal-body-custom p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .modal-intro-text {
    margin-bottom: 1.5rem !important;
  }

  .contact-info-box {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .contact-info-item {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-info-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .contact-info-label {
    font-size: 0.8rem;
  }

  .contact-info-value {
    font-size: 0.95rem;
  }

  .contact-info-value-address {
    font-size: 0.9rem;
  }

  .close-btn-custom {
    width: 32px;
    height: 32px;
    top: 1rem;
    right: 1rem;
  }

  .close-btn-custom::after {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .modal-dialog {
    margin: 1rem;
  }

  .modal-content {
    border-radius: 16px;
  }

  .modal-header-gradient {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .modal-header-gradient h2 {
    font-size: 1.25rem;
  }

  .modal-body-custom {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .modal-body-custom p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .modal-intro-text {
    margin-bottom: 1.25rem !important;
  }

  .contact-info-box {
    padding: 1.25rem;
    margin-top: 1rem;
    border-radius: 12px;
  }

  .contact-info-item {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

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

  .contact-info-label {
    font-size: 0.75rem;
  }

  .contact-info-value {
    font-size: 0.9rem;
  }

  .contact-info-value-address {
    font-size: 0.85rem;
  }
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 30px;
}

.footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer ul li {
  margin-bottom: 0.8rem;
}

.footer ul li a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer ul li a:hover {
  color: var(--white);
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer p {
  font-size: 0.97rem;
  line-height: 1.6;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 0.5rem;
  color: var(--footer-text);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .footer {
    padding: 50px 0 25px;
  }

  .footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .footer ul li a {
    font-size: 0.9rem;
  }

  .footer-logo {
    max-width: 150px;
  }

  .footer p {
    font-size: 0.9rem;
  }

  .footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-brand {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem !important;
  }

  .footer h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer ul li {
    margin-bottom: 0.6rem;
  }

  .footer ul li a {
    font-size: 0.85rem;
  }

  .footer-logo {
    max-width: 130px;
    margin-bottom: 1.25rem;
  }

  .footer p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .social-links a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    margin-right: 0.4rem;
  }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }

  .footer-bottom a {
    font-size: 0.8rem;
  }

  /* 2-column layout for footer links on tablet/mobile */
  .footer > .container > .row > div:not(.footer-brand) {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-brand {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem !important;
  }

  .footer h5 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .footer ul li {
    margin-bottom: 0.5rem;
  }

  .footer ul li a {
    font-size: 0.8rem;
  }

  .footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
  }

  .footer p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin-right: 0.3rem;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }

  .footer-bottom a {
    font-size: 0.75rem;
  }

  /* 2-column layout for footer links on mobile */
  .footer > .container > .row > div:not(.footer-brand) {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Privacy Page Styles */
.privacy-hero-section {
	background: var(--white);
	color: var(--dark-text);
	padding: 100px 0 80px;
	position: relative;
	overflow: hidden;
	margin-top: 65px;
}

.privacy-hero-section h1 {
	font-size: 3.2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	color: var(--primary-blue);
}

.privacy-hero-section p {
	font-size: 1.2rem;
	color: var(--muted-grey);
	opacity: 0.95;
	line-height: 1.6;
}

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

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

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

@media (max-width: 767px) {
	.privacy-hero-section {
		margin-top: 55px;
		padding: 50px 0 40px;
	}

	.privacy-hero-section h1 {
		font-size: 1.85rem;
	}

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

.privacy-content-section {
	padding: 80px 0;
	background: var(--white);
}

/* Sidebar Navigation */
.privacy-nav-sidebar {
	background: var(--light-grey-bg);
	border-radius: 12px;
	padding: 2rem 1.5rem;
	border-left: 4px solid var(--primary-blue);
}

.privacy-nav-title {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--primary-blue);
	margin-bottom: 1.5rem;
	letter-spacing: 0.5px;
}

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

.privacy-nav-list li {
	margin-bottom: 0.8rem;
}

.privacy-nav-list li a {
	color: var(--dark-text);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: block;
	padding: 0.4rem 0;
	border-left: 3px solid transparent;
	padding-left: 0.8rem;
}

.privacy-nav-list li a:hover {
	color: var(--primary-blue);
	border-left-color: var(--primary-blue);
}

/* Privacy Sections */
.privacy-section {
	margin-bottom: 3.5rem;
	scroll-margin-top: 120px;
	scroll-snap-margin-top: 120px; /* Safari fallback */
}

.privacy-section-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--light-blue-bg);
}

.privacy-section p {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--dark-text);
	margin-bottom: 1.2rem;
}

/* Info Boxes */
.privacy-info-box {
	background: var(--light-blue-bg);
	border-left: 4px solid var(--primary-blue);
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.privacy-box-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 0.8rem;
}

.privacy-info-box p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--dark-text);
	margin-bottom: 0;
}

/* Subsections */
.privacy-subsection {
	margin-bottom: 2rem;
	padding-left: 1rem;
}

.privacy-subsection h4 {
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--dark-text);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.privacy-subsection h4 i {
	color: var(--primary-blue);
	font-size: 1.1rem;
}

/* Privacy Lists */
.privacy-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.privacy-list li {
	padding-left: 2rem;
	margin-bottom: 0.8rem;
	position: relative;
	color: var(--dark-text);
	font-size: 0.95rem;
	line-height: 1.6;
}

.privacy-list li:before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--primary-blue);
	font-weight: bold;
	font-size: 1.3rem;
}

/* Alert Box */
.privacy-alert-box {
	background: linear-gradient(135deg, #e3f2fd 0%, #f5f7fa 100%);
	border-left: 4px solid var(--primary-blue);
	border-radius: 8px;
	padding: 1.5rem;
}

.privacy-alert-box h5 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.privacy-alert-box h5 i {
	font-size: 1.2rem;
}

.privacy-alert-box p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--dark-text);
	margin-bottom: 0;
}

/* Right Items */
.privacy-right-item {
	background: var(--light-grey-bg);
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.privacy-right-item:hover {
	box-shadow: 0 4px 15px rgba(21, 101, 214, 0.1);
	transform: translateY(-2px);
}

.privacy-right-item h5 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.privacy-right-item h5 i {
	font-size: 1.1rem;
}

.privacy-right-item p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--dark-text);
	margin-bottom: 0;
}

/* Contact Section */
.privacy-contact-section {
	background: var(--white);
	border: 2px solid var(--primary-blue);
	border-radius: 12px;
	padding: 3rem;
	color: var(--dark-text);
	margin-top: 4rem;
	text-align: center;
}

.privacy-contact-section h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary-blue);
}

.privacy-contact-section p {
	color: var(--dark-text);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.privacy-contact-info {
	background: var(--light-blue-bg);
	border-radius: 8px;
	padding: 1.5rem;
	margin: 2rem 0;
}

.privacy-contact-info p {
	margin-bottom: 0.8rem;
	font-size: 0.95rem;
	color: var(--dark-text);
}

.privacy-contact-info p:last-child {
	margin-bottom: 0;
}

.privacy-contact-info a {
	color: var(--primary-blue);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.privacy-contact-info a:hover {
	color: var(--dark-blue);
	text-decoration: underline;
}

.privacy-last-updated {
	color: var(--muted-grey);
	margin-top: 1.5rem;
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
	.privacy-content-section {
		padding: 60px 0;
	}

	.privacy-section-title {
		font-size: 1.6rem;
	}

	.privacy-contact-section {
		padding: 2rem;
	}

	.privacy-contact-section h3 {
		font-size: 1.4rem;
	}
}

@media (max-width: 767px) {
	.privacy-content-section {
		padding: 50px 0;
	}

	.privacy-section {
		margin-bottom: 2.5rem;
	}

	.privacy-section-title {
		font-size: 1.4rem;
		margin-bottom: 1.2rem;
		padding-bottom: 0.8rem;
	}

	.privacy-section p {
		font-size: 0.95rem;
		line-height: 1.6;
		margin-bottom: 1rem;
	}

	.privacy-subsection h4 {
		font-size: 1rem;
		margin-bottom: 0.8rem;
	}

	.privacy-list li {
		padding-left: 1.8rem;
		font-size: 0.9rem;
	}

	.privacy-info-box {
		padding: 1.2rem;
		margin-bottom: 1.2rem;
	}

	.privacy-right-item {
		padding: 1.2rem;
		margin-bottom: 1.2rem;
	}

	.privacy-nav-sidebar {
		padding: 1.5rem 1.2rem;
		margin-bottom: 2rem;
	}

	.privacy-contact-section {
		padding: 1.5rem;
		margin-top: 3rem;
	}

	.privacy-contact-section h3 {
		font-size: 1.2rem;
		margin-bottom: 0.8rem;
	}

	.privacy-contact-section p {
		font-size: 0.9rem;
	}

	.privacy-contact-info {
		padding: 1rem;
		margin: 1.5rem 0;
	}
}

@media (max-width: 575px) {
	.privacy-content-section {
		padding: 40px 0;
	}

	.privacy-section {
		margin-bottom: 2rem;
	}

	.privacy-section-title {
		font-size: 1.25rem;
		margin-bottom: 1rem;
		padding-bottom: 0.6rem;
	}

	.privacy-section p {
		font-size: 0.9rem;
		line-height: 1.5;
		margin-bottom: 0.8rem;
	}

	.privacy-subsection {
		padding-left: 0.5rem;
		margin-bottom: 1.5rem;
	}

	.privacy-subsection h4 {
		font-size: 0.95rem;
		margin-bottom: 0.6rem;
	}

	.privacy-list li {
		padding-left: 1.5rem;
		font-size: 0.85rem;
		margin-bottom: 0.6rem;
	}

	.privacy-info-box {
		padding: 1rem;
		margin-bottom: 1rem;
		border-radius: 6px;
	}

	.privacy-box-title {
		font-size: 1rem;
		margin-bottom: 0.6rem;
	}

	.privacy-info-box p {
		font-size: 0.9rem;
	}

	.privacy-right-item {
		padding: 1rem;
		margin-bottom: 1rem;
	}

	.privacy-right-item h5 {
		font-size: 0.95rem;
		margin-bottom: 0.6rem;
	}

	.privacy-right-item p {
		font-size: 0.9rem;
	}

	.privacy-alert-box {
		padding: 1rem;
		border-radius: 6px;
	}

	.privacy-alert-box h5 {
		font-size: 0.95rem;
		margin-bottom: 0.6rem;
	}

	.privacy-alert-box p {
		font-size: 0.9rem;
	}

	.privacy-contact-section {
		padding: 1.25rem;
		margin-top: 2rem;
		border-radius: 8px;
	}

	.privacy-contact-section h3 {
		font-size: 1.1rem;
		margin-bottom: 0.6rem;
	}

	.privacy-contact-section p {
		font-size: 0.85rem;
	}

	.privacy-contact-info {
		padding: 0.8rem;
		margin: 1.2rem 0;
		border-radius: 6px;
	}

	.privacy-contact-info p {
		margin-bottom: 0.6rem;
		font-size: 0.85rem;
	}
}
