#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* background matches your site */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  
  .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--blue);
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  /* Spinner animation */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Hide loader */
  #loader.hidden {
    opacity: 0;
    visibility: hidden;
  }
  

:root {
    --blue: #0d0c38;
    --gold-gradient: linear-gradient(45deg, #c08329, #edd089);
    --gold-gradients: linear-gradient(45deg,#edd089, #c08329); 
    --cream: #ecebdf;
    --hover-gold: #d4af37;
  }
  
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
  }
  
  /* === HEADER STYLES === */
.site-header {
  position: relative;
  background: var(--cream);
  z-index: 1000;
  padding: 0;
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 250px); 
  height: 100%;
  background: var(--blue);
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
  pointer-events: none;
}


/* Lock layout */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1; /* content sits above background */
  flex-wrap: nowrap;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Georgia', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-gradient);
  z-index: 1;
}


.logo-icon {
  height: auto;
  width: 210px;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  z-index: 1;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  left: 0;
  bottom: -4px;
  background-image: var(--gold-gradient);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--hover-gold);
}

/* BUTTON */
.consult-btn {
  background: var(--gold-gradient);
  color: var(--blue);
  padding: 0.6rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.consult-btn:hover {
  background: var(--gold-gradients);
  color: var(--blue);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .container {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
  }

@media (max-width: 768px) {
  .site-header::after {
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 10% 100%);
  }
}

  .navbar {
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    margin-left: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-end;
  }

.logo {
  flex: 0 0 170px; /* <-- locks cream area to fixed width */
}


  .consult-btn {
    margin-top: 1rem;
    align-self: flex-end;
  }
}

/* HERO */
.image-heroservice {
  background-image: url("img/stuart-frisby-asY9tvQa-aY-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cream);
  padding: 500px 20px 160px;
  position: relative;
  text-align: left;
}

.image-heroservice-overlay {
  background: rgba(13, 12, 56, 0.6); /* semi-transparent dark overlay */
  width: 96.6%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* aligns content to the left */
  padding: 0 2rem;
  position: absolute;
  top: 0;
  left: 0;
}

.image-heroservice h1 {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 700px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.services-hero-subtitle {
  font-size: 1rem;
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 30px;
  padding-left: 20px;
}

.services-btn-hero {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--blue);
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 20px;
}

.services-btn-hero:hover{
  background: var(--gold-gradients);
  color: var(--blue);
}




/* PILLARS OVERLAY */
.pillars-overlay {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -150px; /* Overlaps below hero */
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  z-index: 2;
}

.pillar {
  background-color: white;
  color: #333;
  flex: 1;
  padding: 30px 20px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.116);
}

.pillar img {
  height: 50px;
  margin-bottom: 15px;
}

.pillar h3 {
  color: var(--blue);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.pillar p {
  font-size: 0.95rem;
  line-height: 1.5;
}



@media (max-width: 768px) {
  .image-heroservice {
    padding: 250px 15px 60px; /* smaller hero for mobile */
    text-align: center;
  }

  .image-heroservice-overlay {
    justify-content: center;
    padding: 0 1rem;
  }

  .image-heroservice h1 {
    font-size: 1.8rem;
    padding-left: 0;
  }

  .services-hero-subtitle {
    font-size: 0.95rem;
    padding-left: 0;
    margin-bottom: 20px;
  }

  .services-btn-hero {
    margin-left: 0;
    padding: 10px 20px;
  }

  /* 🚫 Hide pillars on mobile */
  .pillars-overlay {
    display: none !important;
  }
}




.services {
  padding: 90px 20px 50px;
  background-color: white;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto; /* centers the section */
  margin-top: 90px;
}

.services h2 {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.services-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px;
}

.service-card {
  background-color: #f6f6f6;
  padding: 20px;
  border-radius: 5px;
  text-align: left;
  width: 300px;
}

.service-card h4 {
  color: var(--blue);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.service-card a {
  font-size: 0.9rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: bold;
}

/* existing code untouched */

/* Mobile adjustments */
@media (max-width: 600px) {
  .service-card {
    width: 100%;  /* let it scale naturally */
  }

  .services {
    padding: 60px 15px 30px; /* less padding for small screens */
    margin-top: 60px;
  }

  .services h2 {
    font-size: 1.6rem;
  }

  .services-subtitle {
    font-size: 0.95rem;
  }
}




















  
.containers{
  max-width: 1400px;
  margin:auto;
}
.roww {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  
}

.footerr-col {
  flex: 1 1 22%;
  min-width: 200px;
}

ul{
  list-style: none;
}
.footerr{
  background-color: var(--blue);
    padding: 60px 0;
}

.footerr-col h4{
  font-size: 18px;
  color: var(--cream);
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footerr-col h4::before{
  content: '';
  position: absolute;
  left:0;
  bottom: -10px;
  background-color: var(--hover-gold);
  height: 1px;
  box-sizing: border-box;
  width: 50px;
}

.footerr-col ul {
  padding: 0;
  margin: 0;
}

.footerr-col ul li {
  margin: 0;
  padding: 0;
}

.footerr-col ul li:not(:last-child){
  margin-bottom: 10px;
}
.footerr-col ul li a{
  font-size: 16px;
  text-transform: capitalize;
  color: var(--cream);
  text-decoration: none;
  font-weight: 300;
  display: block;
  line-height: 1.8;
  padding-left: 0;
  transition: all 0.3s ease;
}
.footerr-col ul li a:hover{
  color: var(--cream);
  padding-left: 8px;
}

.footerr-col.get-in-touch ul li a {
  text-transform: none;
}


.social-linkss {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-linkss a img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-linkss a:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .footerr-col {
    flex: 1 1 45%;
    min-width: 250px;
    padding-left: 10px;
  }
}

@media (max-width: 576px) {
  .roww {
    flex-direction: column;
    align-items: flex-start;
  }
  .footerr-col {
    flex: 1 1 100%;
    min-width: unset;
  }
}

.footer-separator {
  background-color: var(--cream);
  border-top: 1px solid var(--blue);
  text-align: center;
  padding: 25px 15px;
  color: var(--blue);
  font-size: 14px;
  margin-top: 0px;
}

.footer-separator strong {
  color: var(--blue);
}

.footer-separator .footer-images {
  margin-top: 12px;
}

.footer-separator .footer-images img {
  height: 35px;
  width: auto;
  margin: 0 8px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.footer-separator .footer-images img:hover {
  transform: scale(1.1);
}

/* 📱 Mobile adjustments */
@media (max-width: 480px) {
  .footer-separator {
    font-size: 12px; /* slightly smaller text */
    padding: 15px 8px;
  }

  .footer-separator .footer-images img {
    height: 28px; /* smaller icons for small devices */
    margin: 0;
  }
}


/* 🍔 Hide burger on desktop */
.burger {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
  z-index: 3;
}

/* 🧱 Mobile-specific styles */
@media (max-width: 768px) {
  .burger {
    display: block;
    margin-left: auto;
  }

  .nav-links,
  .consult-btn {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    background: var(--blue);
    padding: 1rem 0;
  }

  .nav-links.show-menu,
  .consult-btn.show-menu {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 2rem;
  }

  .consult-btn {
    margin: 1rem 2rem 0 0;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .consult-btn {
    display: none;
  }

  .nav-links.show-menu,
  .consult-btn.show-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--blue);
    width: 100%;
    padding: 1rem 2rem;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 1;
}


/* Disable angled blue for mobile */
@media (max-width: 768px) {
  .site-header::after {
    content: none; /* remove the background shape */
  }

  .nav-wrapper {
    background: var(--blue);
    width: 100%;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    align-content: flex-end;
  }

  .nav-links,
  .consult-btn {
    background: var(--blue); 
  }
}
