/* =========================================
   UNIVERSAL WHITE FOOTER (ALL PAGES)
========================================= */
.site-footer, 
.brand-contact-section,
.contact-section {
  background-color: #ffffff !important; /* FORCES pure white background */
  color: #333333 !important; 
  font-family: 'Arial', sans-serif;
  padding: 60px 20px 20px !important;
  border-top: 1px solid #eaeaea; /* Optional soft line above footer */
}

/* Auto-arranges into columns */
.footer-top, 
.brand-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr; 
  gap: 40px;
  border-bottom: 1px solid #eaeaea; /* Soft grey separator line */
}

/* The Headings */
.footer-col h4, 
.brand-contact-info h2 {
  color: #1e6262 !important; /* Brand Teal */
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(30, 98, 98, 0.5) !important; 
  display: inline-block; 
  font-weight: 800;
}

/* Paragraph Text */
.about-col p, 
.brand-contact-info p {
  line-height: 1.8;
  font-size: 0.95rem;
  color: #444444 !important; /* Modern dark grey */
  margin-top: 20px; 
}

/* Lists styling */
.links-col ul, 
.contact-col ul, 
.contact-info, 
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-col li, .contact-details li { margin-bottom: 15px; }

.links-col a, .contact-details li {
  color: #444444 !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, font-weight 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Plus Icons */
.links-col a i, .contact-details li i {
  font-size: 0.8rem;
  color: #1e6262 !important; /* Teal icons */
}

.links-col a:hover { 
  color: #1e6262 !important; 
  font-weight: bold;
}

/* Contact Icons & Text */
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #444444 !important;
  line-height: 1.5;
}

.contact-info i {
  margin-top: 4px;
  color: #1e6262 !important; /* Teal icons */
}

/* Square Social Buttons */
.footer-socials, .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-socials a, .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #1e6262 !important; /* Dark Teal Box */
  color: #ffffff !important; /* White Icon inside */
  border-radius: 4px; 
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background-color 0.3s;
}

.footer-socials a:hover, .social-links a:hover {
  transform: translateY(-5px); 
  background-color: #1a1a1a !important; /* Turns black on hover */
}

/* Very bottom bar */
.footer-bottom {
  background-color: #ffffff !important; /* Forces pure white */
  text-align: center;
  padding: 25px;
  font-size: 0.9rem;
  color: #777777 !important; 
}

/* =========================================
       MOBILE RESPONSIVE (Fixed Navbar Format)
    ========================================= */
    @media (max-width: 992px) {
      /* ... other mobile code ... */
      .navbar { 
        position: relative; /* Stops the navbar from overlapping the image */
        background-color: #11676d; /* Solid teal background like the Projects page */
        padding: 15px 20px; 
      }
      
      /* Inside your @media (max-width: 992px) block... */

    .brand-container {
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: 75%; /* This acts as a wall, preventing the text from EVER touching the menu */
    }

    .logo {
      height: 45px; /* Shrunk slightly to make more room for the text */
      width: auto;
    }

    .brand-text { 
      color: #fce03b; 
      font-size: 0.9rem; /* Slightly smaller font */
      letter-spacing: 1px; /* Tighter letter spacing */
      text-shadow: none; 
      white-space: normal; /* Allows the text to safely wrap on super tiny screens */
      line-height: 1.2; /* Keeps the wrapped text looking like a neat, stacked logo */
    }
      
      .menu-toggle { display: flex; }
      
      .menu-toggle .bar {
        background-color: #fce03b; /* Turns the hamburger menu yellow */
      }
      
      .nav-links {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: -100%; 
        width: 100%; background-color: rgba(17, 103, 109, 0.98); text-align: center; 
        transition: 0.3s ease; padding: 2rem 0; box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        z-index: 999;
      }
      
      .nav-links.active { left: 0; }
      .nav-links li { margin: 15px 0; }

      .about-container { flex-direction: column; gap: 40px; }
      .about-content h2 { font-size: 2.2rem; }
      
      .about-hero {
        padding-top: 40px; /* Adjusts top spacing since navbar is no longer floating */
      }
    }
/* =========================================
   FIX: ABOUT US PAGE HERO (Parallax & Full Image)
========================================= */
.about-hero, 
.hero-section {
  /* 1. Makes the banner tall enough to show the whole building */
  min-height: 100vh !important; 
  padding: 6rem 2rem;
  
  /* 2. Sets the dark shadow and your image */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://i.ibb.co/fzGcbZwM/Whats-App-Image-2026-04-07-at-11-31-23.jpg') !important;
  
  /* 3. THE MAGIC: Creates the 3D scrolling animation! */
  background-attachment: fixed !important; 
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
}

/* Forcefully hides the old green overlay */
.about-hero::before, 
.hero-section::before {
  display: none !important; 
}
/* =========================================
   MOBILE RESPONSIVE SETTINGS (ABOUT US)
========================================= */
@media (max-width: 992px) {
  /* Navbar adjustments */
  .navbar { 
    position: relative; 
    background-color: #11676d; 
    padding: 15px 20px; 
  }
  .brand-container {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 75%; 
  }
  .logo {
    height: 45px; 
    width: auto;
  }
  .brand-text { 
    color: #fce03b; 
    font-size: 0.9rem; 
    letter-spacing: 1px; 
    text-shadow: none; 
    white-space: normal; 
    line-height: 1.2; 
  }
  
  /* Mobile Menu */
  .menu-toggle { display: flex; }
  .menu-toggle .bar { background-color: #fce03b; }
  
  .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: -100%; 
    width: 100%; background-color: rgba(17, 103, 109, 0.98); text-align: center; 
    transition: 0.3s ease; padding: 2rem 0; box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    z-index: 999;
  }
  .nav-links.active { left: 0; }
  .nav-links li { margin: 15px 0; }

  /* Body adjustments */
  .about-container { flex-direction: column; gap: 40px; }
  .about-content h2 { font-size: 2.2rem; }
  .about-hero { padding-top: 40px; }
}

/* =========================================
   MOBILE RESPONSIVE SETTINGS (ABOUT US)
========================================= */
@media (max-width: 992px) {
  /* Navbar adjustments */
  .navbar { 
    position: relative; 
    background-color: #11676d; 
    padding: 15px 20px; 
  }
  .brand-container {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 75%; 
  }
  .logo {
    height: 45px; 
    width: auto;
  }
  .brand-text { 
    color: #fce03b; 
    font-size: 0.9rem; 
    letter-spacing: 1px; 
    text-shadow: none; 
    white-space: normal; 
    line-height: 1.2; 
  }
  
  /* Mobile Menu */
  .menu-toggle { display: flex; }
  .menu-toggle .bar { background-color: #fce03b; }
  
  .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: -100%; 
    width: 100%; background-color: rgba(17, 103, 109, 0.98); text-align: center; 
    transition: 0.3s ease; padding: 2rem 0; box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    z-index: 999;
  }
  .nav-links.active { left: 0; }
  .nav-links li { margin: 15px 0; }

  /* Body adjustments */
  .about-container { flex-direction: column; gap: 40px; }
  .about-content h2 { font-size: 2.2rem; }
  .about-hero { padding-top: 40px; }
}

@media (max-width: 768px) {
  /* Hero Banner Cropping Fix */
  .about-hero {
    height: auto; 
    min-height: 50vh; 
    padding: 80px 20px 50px 20px; 
    /* Turns off parallax on mobile to stop extreme zooming */
    background-attachment: scroll; 
    background-position: center center;
  }
  .about-hero h1 { 
    font-size: 2.5rem; 
    margin-bottom: 15px;
  }
  .about-hero p { 
    font-size: 1.05rem; 
    padding: 0 10px; 
  }

  /* Stats Row */
  .about-stats-row { gap: 40px; padding-top: 30px; }
  .stat-box { width: 40%; } 
  .stat-box h4 { font-size: 2.5rem; }
  .stat-box span { font-size: 1.8rem; }
  
  /* Footer Stacking */
  .footer-top { flex-direction: column; }
}