
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}


body {
  margin: 0;
  padding: 0;
  padding-top: 77px; /* Adjust to your nav height */
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.nav-logo {
  max-height: 50px;
}
/* Hamburger icon hidden by default */
.nav-toggle {
  display: none;
  margin-right: 40px; /* push hamburger icon to the edge */
  font-size: 2rem;
  color: white;
}
/* Nav links styling */
.nav-links-container {
  display: flex;
  gap: 20px;
  margin-right: 30px;
}
.nav-links-container a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 14px;
  transition: color 0.3s ease, background-color 0.3s ease;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
'Helvetica Neue', sans-serif;
  font-size: 15px;
  display: inline-block;
  border-radius: 6px;
}
.nav-links-container a:hover {
  color: #f3f4f6;
  background-color: #374151;
}
/* Show hamburger ONLY on screens 768px and smaller */
@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-links-container {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: #1f2937;
  }
  .nav-links-container.active {
    display: flex;
  }
  .nav-links-container a {
    padding: 12px 20px;
    border-top: 1px solid #374151;
  }
}
/*ABOUT*/
.about-identity-section {
  background-color: #0C0908;
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}
.about-identity-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(images/home-what-is-imbalics.png);
  opacity: 0.7;
  mix-blend-mode: lighten;
  z-index: 0;
  pointer-events: none;
}
.intro-section {
  position: relative;
  z-index: 2;
  margin-top: 0px;
  /*background-image: url("images/I-Contracks Page/icontracks-what-it-does.png");*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f9f9f9;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .intro-section {
    background-size: contain; /* Ensures full image visibility */
    background-position: top center;
    padding: 60px 15px; /* Reduce padding for smaller screens */
    flex-direction: column; /* Stack content vertically if needed */
    text-align: center;
  }
}

.about-identity-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.about-text-block {
  flex: 1 1 500px;
  color: #f3f3f3;
}
.about-heading {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: #45B6F0;
  text-shadow: 0 2px 8px rgba(69,182,240,0.2);
}
.about-heading span {
  color: #ffffff;
}
.about-paragraph {
  font-size: 1.05rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
'Helvetica Neue', sans-serif;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.about-paragraph.animate {
  opacity: 1;
  transform: translateY(0);
}
.about-texture-logo {
  flex: 1 1 280px;
  text-align: center;
}
.about-texture-logo img {
  max-width: 200px;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 4px 12px rgba(69,182,240,0.2));
}
/*Image Panels*/
.panel-image {
      position: relative;
      width: 100%;
      height: 500px;
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center top;
      z-index: 1;
      will-change: background-position;
    }
    /* Mobile responsiveness */
@media (max-width: 768px) {
  .panel-image {
    background-attachment: scroll; /* Prevents fixed background issues on mobile */
    background-size: contain;      /* Ensures full image visibility */
    background-position: top center;
    height: auto;                  /* Allows height to adjust based on content */
    aspect-ratio: 16 / 9;          /* Maintains image proportions */
  }
}
/*WHY CHOOSE US ANIMATION*/
/* Fade-in left entrance for the entire stage */
.map-stage {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
/* Fade-in for the stage content specifically */
.stage-content {
  opacity: 0;
  transition: opacity 1s ease-in 0.4s;
}
/* Class toggled by JS on viewport entry */
.fade-in-left {
  opacity: 1 !important;
  transform: translateX(0px) !important;
}
.fade-in-opacity {
  opacity: 1 !important;
}

/*-------------------------------------------------------------
----------------------------*/
/*I-CONTRACKTS PAGE*/
.intro-section {
  position: relative;
  z-index: 2;
  margin-top: 0px; /* Positions this section after the fixed hero */
  /*background-image: url("images/I-Contracks Page/icontracks-what-it-does.png");*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f9f9f9; /* Light background to match the page theme */
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-wrapper {
  max-width: 850px;
  text-align: center;
  padding: 0px;
}
.intro-heading {
  font-size: 2.25rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: bold;
  color: #1f2937; /* Rich navy */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.intro-divider {
  width: 70px;
  height: 3px;
  background-color: #45B6F0; /* Light blue accent */
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}
.intro-paragraph {
  font-size: 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
    'Helvetica Neue', sans-serif;
  color: #4b5563;
  line-height: 1.75;
  text-align: justify; /* Aligns text evenly on both sides */
  margin: 0 auto;
  max-width: 800px; /* Keeps paragraphs from stretching too wide */
  padding: 0 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .intro-paragraph {
    font-size: 1rem; /* Slightly smaller for mobile readability */
    padding: 0 15px;
    text-align: justify;
  }
}

/*BENEFITS SECTION*/
.benefits-section {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle fill='%2345B6F0' cx='1' cy='1' r='1'/%3E%3C/svg%3E");
  padding: 120px 20px;
}
.benefits-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.benefits-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits-image img {
  max-width: 100%;
  border-radius: 12px;
  /* Floating shadow */
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.08),
    0 6px 6px rgba(0, 0, 0, 0.05);
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(-4px);
}
.benefits-text {
  flex: 1 1 50%;
  color: #1f2937;
}
.benefits-heading {
  font-size: 2.2rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #111827;
  letter-spacing: 1px;
  line-height: 1.3;
  border-bottom: 3px solid #45B6F0; /* Light blue line */
  display: inline-block; /* So the border fits the text width 
*/
  padding-bottom: 6px;
}
.benefits-text p {
  font-size: 1.05rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
'Helvetica Neue', sans-serif;
  line-height: 2;
  color: #4b5563;
  margin-bottom: 1.5rem;
  transform: translateX(-40px);
  transition: all 0.8s ease-out;
}
.benefits-text p.reveal {
  opacity: 1;
  transform: translateX(0);
}
/* Image stays hidden initially */
.benefits-image img {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s ease-out;
}
/* Reveal class added only after paragraphs finish */
.benefits-image img.reveal-img {
  opacity: 1;
  transform: translateX(0);
}
/*Benfits section*/
.org-benefits-section {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle fill='%2345B6F0' cx='1' cy='1' r='1'/%3E%3C/svg%3E");
  padding: 120px 20px;
}
.org-benefits-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.org-benefits-heading {
  font-size: 2.8rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-align: left;
  color: #111827;
  border-bottom: 4px solid #45B6F0;
  padding-bottom: 12px;
  margin-bottom: 60px;
}
.org-benefits-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.org-benefit-card {
  background-color: #f9fafb;
  box-shadow:
    0 12px 24px rgba(69, 182, 240, 0.15),
    0 6px 12px rgba(69, 182, 240, 0.08);
  padding: 28px 30px;
  border-radius: 12px;
  flex: 1 1 30%;
}
.org-benefit-card h3 {
  font-size: 1.4rem;
  color: #1f2937;
  margin-bottom: 1rem;
}
.org-benefit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.org-benefit-card li {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 20px;
}
.org-benefit-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #45B6F0;
  font-weight: bold;
}
/*CORE FUNCTIONALITIES*/
.core-functionality-section {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle fill='%2345B6F0' cx='1' cy='1' r='1'/%3E%3C/svg%3E");
  padding: 120px 20px;
}
.core-functionality-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.core-functionality-heading {
  font-size: 2.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1f2937;
  text-align: center;
  margin-bottom: 1rem;
  border-bottom: 4px solid #45B6F0;
  display: inline-block;
  padding-bottom: 10px;
}
.core-functionality-intro {
  font-size: 1.1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
'Helvetica Neue', sans-serif;
  font-weight: 400;
  color: #374151;
  text-align: center;
  margin: 0 auto 60px auto;
  max-width: 700px;
  line-height: 1.7;
}
.core-functionality-track {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.core-card {
  flex: 1 1 250px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow:
    0 12px 24px rgba(69, 182, 240, 0.15),
    0 6px 12px rgba(69, 182, 240, 0.08);
  transition: transform 0.3s ease;
}
.core-card:hover {
  transform: translateY(-4px);
}
.core-card h3 {
  font-size: 1.3rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
'Helvetica Neue', sans-serif;
  color: #1f2937;
  margin-bottom: 0.6rem;
}
.core-card p {
  color: #4b5563;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
'Helvetica Neue', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.core-card ul {
  list-style: none;
  padding: 0;
}
.core-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
'Helvetica Neue', sans-serif;
  color: #374151;
}
.core-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #45B6F0;
  font-weight: 700;
}
/*Governance*/
.role-governance-section {
  background-color: #f9fafb;
  padding: 100px 20px;
}
.role-governance-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.role-governance-heading {
  font-size: 2.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1f2937;
  margin-bottom: 1rem;
}
.role-governance-intro {
  font-size: 1.1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
'Helvetica Neue', sans-serif;
  color: #4b5563;
  max-width: 720px;
  margin: 0 auto 60px auto;
  line-height: 1.7;
}
.with-icontracks {
  color: #45B6F0;
  font-weight: 600;
}
.role-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.role-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(69, 182, 240, 0.08);
  text-align: center;
}
.role-icon {
  height: 30px;
  width: auto;
  margin-right: 6px;
  vertical-align: middle;
}
.role-card h3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
'Helvetica Neue', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.role-card p {
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
'Helvetica Neue', sans-serif;
  color: #374151;
  line-height: 1.5;
}
.doa-screenshot-section {
  background-color: #f9fafb;
  padding: 100px 20px;
}
.doa-screenshot-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.screenshot-heading {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}
.screenshot-subtext {
  font-size: 1.1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
'Helvetica Neue', sans-serif;
  color: #4b5563;
  max-width: 720px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}
.with-icontracks {
  color: #45B6F0;
  font-weight: 600;
}
.screenshot-frame {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(69, 182, 240, 0.12);
}
.screenshot-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
/*CLIENTS*/
.client-logo-showcase {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Textured overlay and logo background */
.client-logo-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    url('images/company-logo.png') center/400px no-repeat,
    repeating-linear-gradient(135deg, rgba(100, 100, 100, 0.1) 
0 2px, transparent 2px 40px),
    repeating-linear-gradient(45deg, rgba(80, 80, 80, 0.1) 0 
4px, transparent 4px 40px),
    #f8f8f3;
  opacity: 0.18;
  mix-blend-mode: lighten;
  z-index: 0;
  pointer-events: none;
}
/* Content stays above texture */
.client-logo-wrapper {
  position: relative;
  z-index: 1;
}
.client-heading {
  font-size: 2.4rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1f2937;
  text-transform: uppercase;
  margin-bottom: 50px;
  border-bottom: 3px solid #45B6F0;
  display: inline-block;
  padding-bottom: 10px;
}
.client-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  align-items: center;
}
.client-logo {
  max-height: 120px; /* 
 Increased from 80px to 120px */
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.client-logo:hover {
  opacity: 1;
}
/*DocData Tracker Page*/
/* Main section container */
.intro-docdata {
  background-color: #fff;
  padding: 80px 30px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-
serif;
  color: #1f2937;
}
/* Inner wrapper for text */
.intro-docdata-text {
  max-width: 1000px;
  margin: 0 auto;
}
/* Heading styles */
.intro-docdata h1 {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Times New Roman', Times, serif;
  margin-bottom: 20px;
  color: #1f2937; /* Brand-consistent dark blue */
  border-bottom: 2px solid #45B6F0; /* Sleek light blue accent 
*/
  display: inline-block;
  padding-bottom: 8px;
}
.intro-docdata h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1f2937;
}
/* Paragraph styles */
.intro-docdata p {
  font-size: 1.05rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
'Helvetica Neue', sans-serif;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #374151;
}
.docdata-security-section {
  background: linear-gradient(135deg, #e8f4fc, #ffffff);
  border-left: 6px solid #45B6F0;
  padding: 50px 30px;
  margin: 60px auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', sans-serif;
}
.docdata-security-content h2 {
  font-size: 2rem;
  font-family: 'Times New Roman', Times, serif;
  color: #1f2937;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #45B6F0;
  padding-bottom: 6px;
}
.docdata-security-content p {
  font-size: 1.05rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
'Helvetica Neue', sans-serif;
  color: #1f2937;
  line-height: 1.7;
}
.docdata-differentiators-section {
  background: transparent;
  padding: 50px 0;
  margin: 60px auto;
  max-width: 900px;
  font-family: 'Segoe UI', sans-serif;
}
.docdata-differentiators-content h2 {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 24px;
  text-transform: uppercase;
  border-bottom: 2px solid #45B6F0; /* Optional accent line */
  padding-bottom: 8px;
}
.docdata-differentiators-content ul {
  list-style-type: disc;
  padding-left: 20px;
}
.docdata-differentiators-content li {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 14px;
}
/*FOOTER*/
.site-footer {
  background: #1a1a1a;
  color: #f5f5f5;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 48px 0 24px 0;
  margin-top: 0;
  border-top: 4px solid #2e7ad3;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 24px;
}
.footer-logo-section {
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 24px;
}
.footer-logo {
  max-width: 140px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 1rem;
  color: #b3c6e0;
  margin: 0;
}
.footer-contact-section,
.footer-links-section,
.footer-social-section {
  flex: 1 1 180px;
  min-width: 180px;
  margin-bottom: 24px;
}
.footer-contact-section h4,
.footer-links-section h4,
.footer-social-section h4 {
  color: #2e7ad3;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.footer-contact-section ul,
.footer-links-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-section li,
.footer-links-section li {
  margin-bottom: 8px;
  font-size: 0.98rem;
}
.footer-contact-section a,
.footer-links-section a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-section a:hover,
.footer-links-section a:hover {
  color: #2e7ad3;
}
.footer-icon {
  vertical-align: middle;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  opacity: 0.85;
}
.footer-social-icons {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}
.footer-social-icons a img {
  width: 28px;
  height: 28px;
  filter: grayscale(1) brightness(1.2);
  transition: filter 0.2s;
}
.footer-social-icons a:hover img {
  filter: none;
}
.footer-microsoft-banner {
  margin-top: 32px;
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.footer-bottom {
  text-align: center;
  color: #b3c6e0;
  font-size: 0.95rem;
  margin-top: 32px;
  letter-spacing: 0.2px;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .footer-logo-section,
  .footer-contact-section,
  .footer-links-section,
  .footer-social-section {
    min-width: 0;
  }
}

.container {
  max-width: 100%;
  overflow-x: hidden;
}

.wrapper {
  max-width: 100%;
  overflow-x: hidden;
}

.section {
  max-width: 100%;
  overflow-x: hidden;
}

.intro-wrapper {
  max-width: 100%;
  overflow-x: hidden;
}

.footer-container {
  max-width: 100%;
  overflow-x: hidden;
}
