html {
    scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
    background-color: var(--black);
    color: var(--white);
}

body {
  position: relative;
  min-height: 100vh;
  background: transparent; 
}


body::before {
  content: "";
  position: fixed;         
  inset: 0;
  background-image: url(imgs/pexels-kartik-bhatare-2913616-4504471.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateZ(0); 
  z-index: -2;
   
  filter: blur(10px) brightness(0.75);
  will-change: filter;
  transform: scale(1.05);

  filter: brightness(1.50);
}


body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.329); 
  z-index: -1;
}

:root {
    --black: #363636;
    --soft-black: #151515;
    --gold: #2e885d;
    --gold-soft: #bfa24a;
    --white: #ffffff;
    --gray: #999;
}


.navbar {
    position: sticky;
    top: 0;
    background: var(--soft-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    z-index: 10;
     background: rgba(99, 99, 99, 0.277);
  backdrop-filter: blur(6px);
}

logo {
    font-size: 1.4rem;
    letter-spacing: 4px;
    color: var(--gold);
      display: flex;
  align-items: center;
}

.logo img {
  height: 70px;       
  width: auto;
  object-fit: contain;

 
  filter: brightness(1.1);
}

@media (max-width: 600px) {
  .logo img {
    height: 30px;
  }
}

.navbar nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar nav a:hover {
    color: var(--gold);
}

.about_image {
  width: 100%;
  max-width: 500px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.about_image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.text_section {
    padding: 5rem 5rem 3.5rem;
}

.text_glass {
 max-width: 1300px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;

  background: rgba(99, 99, 99, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  padding: 2.2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);

  text-align: justify;
}

.about_paragraph {
  max-width: 900px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.about_h2 {
    color: #2e885d;
    text-decoration: underline chocolate;
}

.list_wrapper {
  max-width: 700px;
  text-align: left; 
}

.list_wrapper h3 {
  margin-bottom: 1rem;
  text-align: justify;
  padding-top: 1.8rem;
}

.num_list {
  padding-left: 1.2rem;
}

.num_list li {
  padding-bottom: 0.9rem;
}

.package_h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.work_packages {
  padding: 2.5rem;
}

.package_screen {
  max-width: 700px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;

  background: rgba(99, 99, 99, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  padding: 2.2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);

  text-align: justify;
}

.package_text {
     max-width: 900px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  padding-bottom: 0.8rem;
}


/* ===============================
   FOOTER
================================ */

.footer {
  padding: 3rem 3rem 2rem;
  position: relative;
}


.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 1.5rem;

  border-radius: 20px;
  background: rgba(99, 99, 99, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.14);
  backdrop-filter: blur(10px);

  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}




.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  margin: 0 0 0.6rem 0;
}

.footer-text {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}


.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-column h4 {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a {
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--gold);
}

/* ===============================
   FOOTER LOGO ROW
================================ */

.footer-logos {
  margin: 2rem 0 1.5rem;
  padding-top: 1.5rem;

  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1rem;

  align-items: center;
  justify-items: center;

  border-top: 1px solid rgba(212, 175, 55, 0.12);
}


.footer-logos img {
  max-height: 60px;
  width: auto;
  max-width: 100%;

  object-fit: contain;
  opacity: 0.85;

  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

@media (max-width: 1000px) {
  .footer-logos {
    grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .footer-logos {
    grid-template-columns: repeat(2, 1fr); 
  }
}


.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: 1rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}


.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.4) 100%
  );
  pointer-events: none;
}


@media (max-width: 900px) {
  .footer {
    padding: 2.5rem 1.25rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}