/* Loader styles */
#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;
  }
  
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
  }


:root {
  --blue: #0d0c38;
  --cream: #ecebdf;
  --gold-gradient: linear-gradient(45deg, #c08329, #edd089);
  --gold-gradients: linear-gradient(45deg, #edd089, #c08329);
  --hover-gold: #d4af37;
}

/* === 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);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 1;
  background: transparent; /* no background on desktop */
  width: auto;
  padding: 0;
}

/* === 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;
  }
}



.container-con {
  max-width: 800px;
  margin: 0rem auto;
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-subheading {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--blue);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}


form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 1.2rem;
  font-weight: bold;
  font-size: 15px;
}

input, select, textarea {
  margin-top: 0.4rem;
  padding: 0.9rem;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--hover-gold);
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

button {
  margin-top: 2rem;
  background: var(--gold-gradient);
  color: var(--blue);
  padding: 13px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: 600;
}

button:hover {
  background: var(--gold-gradients);
  color: var(--blue);
  transform: translateY(0px);
}


.containers{
  max-width: 1400px;
  margin:auto;
  padding: 0 20px; 
}
.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;
  }
}

@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: transparent !important; /* no gold background */
  border: none;
  color: white; /* makes the bars white */
  font-size: 28px; /* adjust size */
  cursor: pointer;
  z-index: 3;
  padding: 0.5rem; /* keeps tap area accessible */
  align-content: center;
}


/* 🧱 Mobile-specific styles */
@media (max-width: 768px) {
  .burger {
    display: block;
    margin-left: auto;
    color: white;
  }

  .nav-links,
  .consult-btn {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    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;
  }
}


/* 🔧 Mobile-only: compact blue box when collapsed, expands when open */
@media (max-width: 768px) {
  .site-header::after { content: none !important; } /* keep desktop shape off on mobile */

  .nav-wrapper {
    background: var(--blue);
    width: auto;              /* small box, not full width */
    min-height: 56px;         /* compact when collapsed */
    padding: 6px 10px;        /* tidy spacing */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;        /* let menu grow below */
  }

  /* When menu opens, it naturally grows; these keep full-width panel styling */
  .nav-links.show-menu,
  .consult-btn.show-menu {
    width: 100%;
    background: var(--blue);
  }

  /* Use the FA icon (no custom bars) and center it perfectly */
  .burger {
    background: transparent !important;
    border: 0;
    margin-left: auto;
    width: 40px;
    height: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .burger i {
    color: #fff;          /* white bars */
    font-size: 22px;      /* adjust if you want bigger/smaller */
    line-height: 1;
    display: block;
    margin-bottom: 25px;
  }
}

