/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
:root {
      --primary: #ffffff;
    --secondary: #121a2b;
    --dark: #000000;
    /* Add these for footer */
    --secondary-color: #000000;
    --primary-color: white;
    --accent-color: #4ecca3;
    --text-color: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
    --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-thin :200;
}


  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


body, html {
   min-height: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    background-color: #000000;
    color: white;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    display: none;             /* Chrome/Safari */
}




 /* Navbar */
        .custom-navbar {
    position: fixed; /* Changed from fixed to absolute */
    top: -9px;
    left: -9px;
    width: 100%;
    z-index: 1022;
    background: transparent !important; /* Always transparent */
     padding-left:5%;
    padding-right: 5%;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: none; /* Remove transition effects */
    
    padding-bottom: 0px;
}


        



.logo {
  font-size: 22px;
  font-weight: 700;
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar-logo {
  height: 75px;
  width: 115px;
  margin-right: 10px;
  vertical-align: middle;
  filter: invert(1);
  transition: filter 0.3s ease;
}

.hamburger-container {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  margin-left: 5px;
  margin-top: 4px;
}

.hamburger-container h5 {
  box-sizing: border-box;
  font-size: 1.25rem;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: rgb(255, 255, 255);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
  background-color: black;
}

.hamburger.active span:nth-child(2) {
  top: 9px;
  transform: rotate(-135deg);
  background-color: black;
}

.hamburger-container,
.hamburger,
.navbar {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: default;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger-container * {
  outline: none;
}

.menu-modal {
  position: fixed;
  top: 30px;
  right: 4%;
  z-index: 999;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  border-radius: 18px 18px 12px 12px;
  width: 320px;
  max-width: 100%;
  box-shadow: 0 12px 40px rgba(22, 14, 52, 0.25);
  padding: 28px 0px 0;
  color: #111;
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-modal::before {
  content: '';
  position: absolute;
  top: -10px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  z-index: 1000;
}

.modal-content {
  width: 100%;
  height: 100%;
  padding: 0px;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.menu-list {
  list-style: none;
  padding-left: 12px;
  margin: 0 0 24px 0;
}

.menu-list li {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 18px;
  cursor: pointer;
  user-select: none;
  color: #222;
  position: relative;
  transition: color 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
}

.menu-list li:last-child {
  margin-bottom: 0;
}

.menu-list li:hover,
.menu-list li:focus {
  opacity: 0.8;
  outline: none;
}

.menu-list li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #28282b;
  transition: width 0.3s ease;
}

.menu-list li:hover::after,
.menu-list li:focus::after {
  width: 80%;
}

.menu-list li a {
  text-decoration: none;
  color: inherit;
}

.divider {
  border-top: 1px solid #ddd;
  margin: 0 -28px 18px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 8px;
  padding: 0 2px;
  flex-wrap: wrap;
  background: #f3f3f3;
}

.footer-nav div {
  cursor: pointer;
  user-select: none;
  padding-left: 12px;
  transition: color 0.3s ease;
  position: relative;
}

.footer-nav div:hover,
.footer-nav div:focus {
  color: #464547;
  opacity: 0.8;
  outline: none;
}

.footer-nav div::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: #424244;
  transition: width 0.3s ease;
}

.footer-nav div:hover::after,
.footer-nav div:focus::after {
  width: 100%;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
}

.footer-right svg {
  width: 20px;
  height: 20px;
  stroke: #5e5a5a;
  stroke-width: 2;
  transition: stroke 0.3s ease;
  transform: rotate(325deg);
}

.footer-right:hover svg,
.footer-right:focus svg {
  stroke: #777;
}

.footer-container {
  background: #f3f3f3;
  border-radius: 0 0 18px 18px;
  padding: 8px 8px 10px;
  color: #777;
  font-size: 13px;
  user-select: none;
}

.social-links {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #302e2e;
  user-select: none;
  justify-content: space-evenly;
  align-items: stretch;
}

.social-links span {
  cursor: pointer;
  transition: color 0.3s ease;
  padding-left: 8px;
}

.social-links span a {
 text-decoration: none;
  color: inherit;
}

.social-links span:hover,
.social-links span:focus {
  color: rgba(0, 0, 0, 0.5);
  opacity: 0.6;
  transition: color 0.4s, opacity 0.4s;
}

@media (max-width: 480px) {
  .modal {
    width: 90vw;
    padding: 24px 24px 0;
  }

  .footer-container {
    padding: 16px 24px 24px;
    font-size: 12px;
  }
}


/* Contact Page */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: black;
  min-height: 100vh;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  width: 100%;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white
}

.contact-subtitle {
  color: white;
  margin-bottom: 40px;
  font-weight: 200;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 1px solid whitesmoke;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: var(--primary);
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: whitesmoke;
}
.contact-btn {
  display: inline-block;
  padding: 15px 40px;
  background: whitesmoke;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-btn:hover {
  background: #ffffff;
  transform: translateY(-3px);
}


/* White card behind contact form */
.contact-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

/* Dark text inside the card */
.contact-card input,
.contact-card textarea {
  color: #000;
  border: 1px solid #ddd;
  background: #f9f9f9;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #666;
}

.contact-card .contact-btn {
  background: black;
  color: #fff;
  font-weight: 600;
}

.contact-card .contact-btn:hover {
  background: #636363;
}
.contact-btn {
  display: block;
  margin: 20px auto 0 auto; /* auto left/right centers it */
}



  
.lets-footer {
  background: #f7f6f2;
  color: #181818;
  font-family: 'Inter', Arial, sans-serif;
  padding: 48px 0 24px 0;
  margin-top: 0px;
}
.lets-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 5vw;
  gap: 0;
}
.lets-footer-talk {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.lets-footer-logo img {
  height: 75px;
  width: 115px;
  margin-bottom: 8px;
}

.lets-footer-social {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}
.lets-footer-talk h2 {
  font-size: 2.8rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lets-footer-talk .arrow {
  font-size: 2.2rem;
  font-weight: 400;
  margin-left: 8px;
  font-size: 2.2rem;
    font-weight: 100;
    margin-left: 0px;
 display: inline-block;
    transform: scale(1.3);
    transform: rotate(325deg);
}

.lets-footer-talk .arrow svg {
    width: 100%;
    height: 100%;
  }

.lets-footer-divider {
  border: none;
  border-top: 1px solid #181818;
  margin-left:5vw;
  margin-right: 5vw; 
  margin-top: 2vw;
  margin-bottom: 2vw;
  width: 90%;
}
.lets-footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5rem;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 4vw;
}
.lets-footer-links a {
  color: #181818;
  text-decoration: none;
  font-size: 1.1rem;
  margin-right: 32px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.lets-footer-links a:last-child {
  margin-right: 0;
}
.lets-footer-links a:hover {
  color: #888;
}
.lets-footer-social a {
  color: #181818;
  font-size: 1.1rem;
  margin-right: 18px;
  transition: color 0.2s;
}
.lets-footer-social a:last-child {
  margin-right: 0;
}
.lets-footer-social a:hover {
  color: #888;
}
.lets-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 32px 5vw 0 5vw;
  font-size: 1rem;
  flex-wrap: wrap;
  gap: 16px;
}
.lets-footer-copy {
  color: #181818;
}
.lets-footer-address {
  color: #181818;
  text-align: center;
  font-size: 1rem;
}
.lets-footer-policy a {
  color: #181818;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.lets-footer-policy a:hover {
  color: #888;
}
@media (max-width: 900px) {
  .lets-footer-top, .lets-footer-links-row, .lets-footer-bottom {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
   
  }

  .lets-footer-links-row{
    padding-left: 0px;
  }
 
  .lets-footer-divider, .lets-footer-bottom {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 0vw;
  }
  .lets-footer-links {
    margin-bottom: 12px;
  }
   .lets-footer-social{
    margin-top: 30px;
  }

   .navbar-logo {
    height: 75px;
    width: 100px;
  }

  .lets-footer-top {
    padding:0 4vw;
}

.lets-footer-logo img {
       height: 75px;
    width: 100px;
  }

}



/*responsive*/
@media (max-width: 600px) {
  .lets-footer {
    padding: 32px 0 16px 0;
  }
.lets-footer-top {
    padding:0 4vw;
}
  .lets-footer-logo img {
    height: 65px;
    width: 90px;
  }

  .navbar-logo {
    height: 65px;
    width: 90px;
  }
  .lets-footer-talk h2 {
    font-size: 1.5rem;
  }
  .lets-footer-talk .arrow {
    font-size: 1.3rem;
  }
  .lets-footer-divider {
    margin: 24px 0 16px 0;
    width: 100%;
  }
  .lets-footer-links a {
    font-size: 1rem;
  }
  .lets-footer-bottom {
    font-size: 0.95rem;
    gap: 10px;
    padding-top: 18px;
  }
  .lets-footer-address {
    font-size: 0.95rem;
  }
  .lets-footer-social{
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .social-sidebar-video {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .lets-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 18px 5vw 0 5vw;
  }
  .lets-footer-copy,
  .lets-footer-address,
  .lets-footer-policy {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0.90rem;
  }
  .lets-footer-policy {
    margin-bottom: 6px;
  }
}
@media (max-width: 468px) {
    .lets-footer-links a {
        font-size: 0.8rem;
    }
}


  