/* --- GLOBAL UI STYLE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  color: #ffffff;
  overflow-x: hidden;
  background: #050505;
  background-image: radial-gradient(circle at 50% 50%, rgba(30, 30, 40, 1) 0%, rgba(5, 5, 5, 1) 100%);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  background-image:
    radial-gradient(2px 2px at 20px 30px, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 165, 0, 0.8), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 50px 160px, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 40px, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 130px 80px, rgba(255, 165, 0, 0.5), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 160px 120px, #ffffff, rgba(0, 0, 0, 0));
  background-size: 200px 200px;
  animation: bg-particles 100s linear infinite;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes bg-particles {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-200px);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

@keyframes float-navbar {
  0% {
    transform: translateX(-50%) translateY(0px);
  }

  50% {
    transform: translateX(-50%) translateY(-5px);
  }

  100% {
    transform: translateX(-50%) translateY(0px);
  }
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

/* Hide scrollbar for a clean look */
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1400px),
(max-height: 900px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 1100px),
(max-height: 750px) {
  html {
    font-size: 12px;
  }
}

/* Global UI Rules */
.section-overlay-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Preloader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #050505;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loader-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #FFA500;
}

.progress-bar-container {
  width: 300px;
  height: 4px;
  background: #222;
  border-radius: 4px;
  overflow: hidden;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: #FFA500;
  transition: width 0.1s linear;
}

/* Canvas */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  background: #000;
}

canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay System base */
#content-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
}

.section-ui {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 9999;
  background: rgba(20, 20, 25, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.15);
  border-radius: 50px;
  padding: 12px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: float-navbar 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

.navbar:hover {
  background: rgba(30, 30, 35, 0.6);
  box-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.nav-right {
  font-size: 18px;
  color: #ffffff;
  display: flex;
  gap: 22px;
  font-weight: 700;
}

/* --- SECTION 1: HERO --- */
#ui-hero .section-overlay-content {
  padding-top: 80px;
}

.hero-heading {
  font-family: 'Orelega One', serif;
  color: #FFA500;
  font-size: 40px;
  font-weight: normal;
  text-align: center;
  text-shadow: 4px 4px 0px rgb(0, 0, 0);
}

.hero-btn {
  background: #FFA500;
  color: #000;
  border-radius: 30px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 24px;
  display: inline-block;
}

/* --- SECTION 2: BANNER --- */
#ui-banner .section-overlay-content {
  justify-content: center;
}

.banner-logo-box {
  display: none;
}

.banner-logo-sub {
  color: gray;
  font-size: 11px;
  margin-top: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.banner-dark-strip {
  width: 100%;
  background: rgba(60, 60, 60, 0.75);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-heading {
  font-family: 'Orelega One', serif;
  color: #FFA500;
  font-size: 33px;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.1;
  max-width: 1300px;
  font-weight: normal;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.7);
}

.banner-subtext {
  color: #f5f4f1;
  font-size: 16px;
  text-align: center;
  max-width: 1000px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: -10px;
}

.banner-pill {
  background: #FFA500;
  color: #000000;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 40px;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 24px;
}

/* --- SECTION 3: ABOUT US --- */
#ui-about .section-overlay-content {
  justify-content: center;
  padding: 100px 5% 40px 5%;
}

.about-heading {
  font-family: 'Orelega One', serif;
  color: #FFA500;
  font-size: 56px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 4px 4px 0px rgb(0, 0, 0);
}

.about-card {
  position: relative;
  background: rgba(205, 205, 205, 0.8);
  border: 1px solid rgba(255, 165, 0, 0.3);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
  animation: float 7s ease-in-out infinite;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 8s infinite;
  pointer-events: none;
  border-radius: inherit;
  clip-path: inset(0 round 20px);
}

.about-icon-tr {
  position: absolute;
  top: -50px;
  right: -30px;
  width: 90px;
  height: auto;
  z-index: 15;
}

.about-icon-bl {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 95px;
  height: auto;
  z-index: 15;
}

.about-card p {
  color: #000000;
  text-align: justify;
  font-size: 13.5px;
  line-height: 1.6;
}

.about-lines {
  text-align: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  margin-top: 24px;
  line-height: 1.8;
  max-width: 600px;

  /* Enquiry-left styling */
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(255, 165, 0, 0.3);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.1);
  border-radius: 16px;
  padding: 16px 24px;
  position: relative;
  animation: float 7s ease-in-out infinite;
  overflow: hidden;
  box-sizing: border-box;
}

.about-lines::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 8s infinite;
  pointer-events: none;
}

@media (max-width: 768px) {
  .about-lines {
    padding: 12px 16px;
    font-size: 11px;
    margin-top: 16px;
  }
}

/* --- SECTION 4: FOUNDER (REDESIGN) --- */
#ui-founder .section-overlay-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  width: 90%;
  margin: 0;
  padding: 40px;
  background: transparent;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}

.founder-left-card {
  position: relative;
  background: rgba(20, 20, 25, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 165, 0, 0.1);
  border-radius: 20px;
  padding: 20px 24px;
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  max-width: 450px;
  animation: float 6.5s ease-in-out infinite reverse;
  overflow: hidden;
}

.founder-left-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 9s infinite;
  pointer-events: none;
}

.founder-name {
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 2px;
  font-family: 'Montserrat', sans-serif;
}

.founder-designation {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.founder-bio {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.founder-main-heading {
  color: #FFA500;
  font-size: 36px;
  font-weight: 900;
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.2;
}

.founder-photo-container {
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
  border-radius: 12px;
  display: inline-block;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.founder-photo-img {
  width: 100%;
  max-width: 280px;
  border-radius: 6px;
  display: block;
}

@media (max-width: 768px) {
  #ui-founder .section-overlay-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 95%;
  }

  .founder-left-card {
    order: 1;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 18px;
  }

  .founder-right-media {
    order: 2;
    width: 100%;
    text-align: left;
  }

  .founder-main-heading {
    font-size: 50px !important;
    margin-bottom: 18px;
  }

  .founder-photo-container {
    padding: 12px;
    margin: 0 auto;
    display: inline-block;
  }

  .founder-photo-img {
    max-width: 240px;
  }
}

/* --- SECTION 5: SERVICES (REDESIGN) --- */
.services-redesign-container {
  padding: 100px 5% 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.cinematic-heading-main {
  font-family: 'Orelega One', serif;
  color: #FFA500;
  font-size: 38px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 165, 0, 0.4);
}

.new-services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.new-service-pill {
  position: relative;
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(255, 165, 0, 0.3);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.1);
  border-radius: 18px;
  padding: 6px 18px;
  text-align: center;
  animation: float 8s ease-in-out infinite;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-service-pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 8s infinite;
  pointer-events: none;
}

.new-service-pill:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 165, 0, 0.3);
}

.new-service-pill-title {
  color: #FFA500;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 165, 0, 0.4);
}

.new-service-pill-text {
  color: #ffffff;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  .new-service-pill {
    border-radius: 13px;
    padding: 5px 12px;
  }

  .new-service-pill-title {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .new-service-pill-text {
    font-size: 9px;
    line-height: 1.4;
  }
}

/* --- SECTION 6: WHAT WE BRING ON TABLE --- */
#ui-whattable .section-overlay-content {
  padding: 0 5%;
  /* Removed vertical padding to let right column hit edges */
  justify-content: center;
}

.services-layout {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1100px;
  gap: 40px;
  align-items: center;
  justify-content: center;
  height: auto;
}

.services-left {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-heading {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-pill-btn {
  background: #FFA500;
  color: #000;
  border-radius: 50px;
  padding: 6px 30px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.service-pill-btn:hover {
  transform: scale(1.05);
}

.service-pill-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 8s infinite;
  pointer-events: none;
}

.service-pill-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 165, 0, 0.5);
}

.services-right {
  width: 32%;
  aspect-ratio: 1 / 1;
  background: rgba(20, 20, 25, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-right p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

.services-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 8s infinite;
  pointer-events: none;
}

.services-right p {
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  line-height: 1.7;
  margin-top: 0;
  /* Greatly increased margin to push text down */
  /* Adds space matching the heading's line height */
  /* Removed margin since box padding handles spacing */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  /* Minor shadow for extra legibility */
}

.content-bone-box {
  border: 1px solid #ffffff;
  padding: 14px 28px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* --- SECTION 8: RESULTS --- */
#ui-results .section-overlay-content {
  padding: 80px 5%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.results-card {
  position: relative;
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(255, 165, 0, 0.3);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  animation: float 7.5s ease-in-out infinite;
  overflow: hidden;
}

.results-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 10s infinite;
  pointer-events: none;
}

.results-heading {
  color: #FFA500;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.results-paragraph {
  color: #ffffff;
  font-size: 14.5px;
  text-align: center;
  line-height: 1.8;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/* --- PAGE FOOTER (Normal Flow) --- */
.page-footer {
  background: #FFA500;
  width: 100%;
  padding: 28px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  z-index: 20;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-box {
  background: #ffffff;
  padding: 6px;
  border-radius: 8px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  object-fit: contain;
  width: 100%;
  height: 100% !important;
}

.footer-logo-text {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.footer-copyright {
  position: absolute;
  bottom: 8px;
  left: 15px;
  font-size: 10px;
  font-weight: 400;
  color: #1a1a1a;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-contact-info {
  text-align: right;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  font-family: 'Montserrat', sans-serif;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
  border-radius: 8px;
}

.social-icon-btn:hover {
  transform: translateY(-3px);
}

.social-icon-btn.icon-whatsapp,
.social-icon-btn.icon-gmail,
.social-icon-btn.icon-linkedin,
.social-icon-btn.icon-instagram {
  width: 55px !important;
  height: 55px !important;
  background: none !important;
  padding: 0 !important;
}

.social-icon-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* --- SECTION 7: ENQUIRY FORM --- */
#ui-7 .section-overlay-content {
  padding: 60px 5%;
  justify-content: flex-start;
}

.enquiry-layout {
  display: flex;
  width: 100%;
  max-width: 1100px;
  /* Increased to allow wider boxes */
  gap: 60px;
  /* Increased back to keep spacing balanced */
  align-items: center;
  /* Keep both columns vertically centered */
  justify-content: center;
  margin: auto;
  height: 100%;
  /* Stretch to full overlay height */
}

.enquiry-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(255, 165, 0, 0.3);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
  margin-top: 40px;
  position: relative;
  animation: float 7s ease-in-out infinite;
  overflow: hidden;
}

.enquiry-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 8s infinite;
  pointer-events: none;
}

.enquiry-heading-main {
  color: #FFA500;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
}

.enquiry-text-line {
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 4px;
  text-align: center;
  line-height: 1.8;
  width: 100%;
}

.enquiry-subheading {
  color: #FFA500;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 12px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
}

.enquiry-paragraph {
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  margin-bottom: 15px;
}

.enquiry-right {
  width: 40%;
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(255, 165, 0, 0.3);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.1);
  border-radius: 20px;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin-top: 100px;
  position: relative;
  animation: float 6.5s ease-in-out infinite reverse;
  overflow: hidden;
}

#reset-form-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  z-index: 20;
}

#reset-form-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

#reset-form-btn:active {
  background: #FFA500 !important;
  border-color: #FFA500 !important;
  color: #000000 !important;
  transform: scale(0.9);
}

.enquiry-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 9s infinite;
  pointer-events: none;
}

.enquiry-form-heading {
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 10px;
  font-family: 'Orelega One', serif;
}

.enquiry-subtitle {
  color: #e0e0e0;
  font-size: 13px;
  text-align: center;
  margin-bottom: 8px;
  /* Reduced from 20px */
}

.enquiry-form-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px;
  backdrop-filter: blur(5px);
}

.enquiry-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.enquiry-label {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  width: 35%;
}

.enquiry-input {
  width: 65%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 4px 8px;
  color: #ffffff;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
  font-size: 12px;
  transition: all 0.3s ease;
}

.enquiry-input:focus {
  border-color: #FFA500;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

textarea.enquiry-input {
  resize: vertical;
}

.enquiry-submit-btn {
  background: #FFA500;
  color: #000000;
  font-size: 16px;
  /* Reduced from 20px */
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 0;
  /* Reduced from 14px */
  width: 50%;
  /* Shrunk the button horizontally from 100% */
  margin: 12px auto 0 auto;
  /* Centered the button horizontally */
  display: block;
  /* Required for auto margin to work */
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s ease;
}

.enquiry-submit-btn:hover {
  background: #ffb833;
}

/* Responsiveness */
@media (max-width: 900px) {

  #ui-founder .section-overlay-content,
  .services-layout,
  .enquiry-layout,
  .page-footer,
  .footer-left,
  .footer-right {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-right {
    gap: 16px;
    width: 100%;
  }

  .footer-contact-info {
    text-align: center;
  }

  .founder-left,
  .founder-right,
  .service-column,
  .services-right,
  .services-left,
  .enquiry-left,
  .enquiry-right {
    width: 100%;
    margin-top: 20px;
    /* Reset margin for mobile stacking */
  }

  .hero-heading {
    font-size: 48px;
  }

  .banner-heading {
    font-size: 28px;
  }

  .about-heading {
    font-size: 40px;
  }
}

#scroll-container {
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .services-wrapper {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .services-redesign-container {
    padding: 80px 5% 0 5% !important;
    justify-content: flex-start;
  }

  .services-wrapper {
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
  }

  .service-box {
    padding: 20px 12px;
    width: 85%;
    max-width: 340px;
    margin: 0 auto 15px auto;
  }

  .service-main-heading {
    font-size: 1.5rem !important;
    margin-bottom: 6px;
  }

  .service-sub-heading {
    font-size: 0.9rem !important;
    margin-bottom: 15px;
  }

  .service-items p {
    font-size: 0.9rem !important;
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .services-bottom-banner {
    width: 85%;
    padding: 10px 8px;
    margin-top: 25px;
    border-radius: 10px;
  }

  .banner-title {
    font-size: 1.1rem !important;
  }

  .banner-text {
    font-size: 0.75rem !important;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    width: 95% !important;
    padding: 8px 12px !important;
    border-radius: 20px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .nav-logo-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .nav-logo-text {
    font-size: 13px !important;
  }

  .nav-right {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 14px !important;
    gap: 10px !important;
    white-space: nowrap !important;
  }

  .hamburger-menu {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: center;
    z-index: 10001;
  }

  .hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #FFC300;
    border-radius: 2px;
    transition: 0.3s;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* ALL SECTIONS */
  .section-ui {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .section-overlay-content {
    height: auto !important;
    min-height: 100vh !important;
    padding-top: 30px !important;
    padding-bottom: 50px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    justify-content: flex-start !important;
    overflow: visible !important;
  }

  /* HERO */
  #ui-hero .section-overlay-content {
    justify-content: center !important;
    align-items: center !important;
    margin-top: 0px !important;
  }

  .hero-heading {
    font-size: 35px !important;
    font-weight: normal !important;
    color: #FFA500 !important;
    text-align: center !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
  }

  .hero-btn {
    font-size: 15px !important;
    padding: 13px 28px !important;
    margin-top: 20px !important;
  }

  /* BANNER/SEED */
  #ui-banner .section-overlay-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding-top: 70px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .banner-dark-strip {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: rgba(60, 60, 60, 0.75) !important;
    padding: 20px 15px !important;
    margin: 0 !important;
  }

  .banner-logo-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
  }

  .banner-logo-box img {
    width: 120px !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .banner-logo-title {
    font-size: 13px !important;
    color: #000 !important;
    font-weight: 700 !important;
    text-align: center !important;
  }

  .banner-logo-sub {
    font-size: 9px !important;
    color: gray !important;
    text-align: center !important;
  }

  #ui-banner .section-overlay-content {
    justify-content: flex-start !important;
    padding-top: 215px !important;
  }

  .banner-dark-strip {
    padding: 18px 14px !important;
    width: 100% !important;
  }

  .banner-heading {
    font-size: 32px !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
    text-align: center !important;
  }

  .banner-pill {
    font-size: 10px !important;
    padding: 8px 12px !important;
    letter-spacing: 0 !important;
    text-align: center !important;
  }

  /* ABOUT US */
  #ui-about .section-overlay-content {
    align-items: flex-start !important;
    padding-top: 150px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .about-heading {
    font-size: 10px !important;
    text-align: left !important;
    align-self: flex-start !important;
    margin-bottom: 0px !important;
    width: auto !important;
  }

  .about-card {
    width: 70% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 4px !important;
    border-radius: 4px !important;
  }

  .about-card p {
    font-size: 6px !important;
    line-height: 1.02 !important;
    text-align: justify !important;
  }

  .about-lines {
    font-size: 8px !important;
    text-align: center !important;
    margin-top: 4px !important;
    padding: 8px 12px !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    display: block !important;
  }

  /* Removed recent mobile enquiry form redesign to revert to original state */

  /* FOUNDER */
  #ui-founder {
    min-height: unset !important;
    height: auto !important;
    overflow: hidden !important;
    width: 100% !important;
    margin-top: 80px !important;
  }

  #ui-founder .section-overlay-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 230px 12px 10px 12px !important;
    /* Section padding kam karo */
    grid: none !important;
    grid-template-columns: none !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    top: 0 !important;
    overflow: hidden !important;
    justify-content: flex-start !important;
  }



  #ui-founder .founder-left-card {
    display: none !important;
  }

  #ui-founder .founder-right-media {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
    left: 0 !important;
    transform: none !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 1 !important;
  }

  /* Show duplicated mobile content */
  .mobile-founder-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    margin-top: 0 !important;
  }

  /* Heading chota karo */
  .founder-main-heading {
    color: #FFA500 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-align: center !important;
    /* Centered as requested */
    white-space: normal !important;
    overflow: visible !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
  }

  /* Photo choti karo */
  .founder-photo-container {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    width: 100px !important;
    height: 100px !important;
    margin: 8px auto !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .founder-photo-img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    background: none !important;
    box-shadow: none !important;
  }

  /* Name */
  .founder-name {
    text-align: center !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    margin-left: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    margin-bottom: 2px !important;
  }

  /* Designation */
  .founder-designation {
    text-align: center !important;
    color: #ffffff !important;
    font-weight: 400 !important;
    font-size: 11px !important;
    margin-left: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    margin-bottom: 6px !important;
  }

  /* Bio chota karo */
  .founder-bio {
    text-align: justify !important;
    /* Justified as requested */
    color: #ffffff !important;
    width: 100% !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    /* Slightly increased for justified readability */
    padding: 0 16px 12px 16px !important;
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
  }

  /* 5. SERVICES MOBILE REDESIGN (Refined for 767px) */
  @media (max-width: 767px) {
    #ui-service .section-overlay-content {
      display: flex !important;
      flex-direction: column !important;
      padding: 90px 16px 20px 16px !important;
      align-items: center !important;
      justify-content: flex-start !important;
      margin-top: 30px !important;
    }

    .services-wrapper {
      width: 80% !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 0px !important;
      align-items: center !important;
      align-content: flex-start !important;
      background: rgba(0, 0, 0, 0.70) !important;
      border-radius: 12px !important;
      padding: 6px 8px !important;
      border: none !important;
      backdrop-filter: none !important;
    }

    .service-box {
      display: contents !important;
    }

    .service-main-heading {
      color: orange !important;
      font-size: 11px !important;
      font-weight: 600 !important;
      text-align: center !important;
      margin-top: 8px !important;
      margin-bottom: 4px !important;
      padding: 0 !important;
    }

    .service-sub-heading {
      display: none !important;
    }

    .service-items {
      min-height: auto !important;
      margin: 0 !important;
      padding: 0 !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
    }

    .service-items p {
      color: #ffffff !important;
      font-size: 8px !important;
      line-height: 1.2 !important;
      margin: 0 !important;
      margin-bottom: 2px !important;
      padding: 0 !important;
      text-align: center !important;
    }

    /* Why Choose box — solid orange */
    .services-bottom-banner {
      background: orange !important;
      border-radius: 12px !important;
      padding: 8px 10px !important;
      width: 75% !important;
      text-align: center !important;
      margin-top: 0 !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }

    .banner-title {
      color: #1a1a1a !important;
      font-size: 12px !important;
      font-weight: 800 !important;
      margin-bottom: 4px !important;
      text-align: center !important;
    }

    .banner-list {
      list-style: none !important;
      padding: 0 !important;
      text-align: center !important;
      margin: 0 !important;
    }

    .banner-text {
      color: #1a1a1a !important;
      font-weight: 600 !important;
      font-size: 8px !important;
      line-height: 1.2 !important;
      margin-bottom: 2px !important;
      text-align: center !important;
    }
  }




  /* Cleaning up old unused enquiry styles */

  /* RESULTS SECTION */
  .results-card {
    margin-top: 130px !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 16px !important;
    width: 100% !important;
  }

  .results-heading {
    font-size: 15px !important;
    text-align: center !important;
    margin-bottom: 12px !important;
  }

  .results-paragraph {
    font-size: 11px !important;
    line-height: 1.6 !important;
    text-align: center !important;
  }

  /* WHAT WE BRING SECTION */
  #ui-whattable .section-overlay-content {
    padding: 10px 15px 20px 15px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    overflow-y: auto !important;
    transform: none !important;
  }

  .services-heading {
    font-size: 15px !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 12px !important;
    color: #ffffff !important;
    -webkit-text-stroke: 0.5px #000000 !important;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.8), 0 0 20px rgba(255, 165, 0, 0.4), 1px 1px 0 #000 !important;
  }

  .services-layout {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .services-left {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .service-pill-btn {
    font-size: 10px !important;
    padding: 6px 14px !important;
    margin-bottom: 6px !important;
    width: 90% !important;
    border-radius: 40px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    text-align: center !important;
    background: #FFA500 !important;
    color: #000 !important;
    border: 1px solid #000 !important;
  }

  .services-right {
    width: fit-content !important;
    max-width: 90% !important;
    aspect-ratio: auto !important;
    margin: 0 auto !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    background: rgba(20, 20, 25, 0.8) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 165, 0, 0.5) !important;
    box-sizing: border-box !important;
  }

  .services-right p {
    font-size: 20px !important;
    text-align: center !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    margin: 0 !important;
  }

  .content-bone-box {
    display: none !important;
  }

  /* FOOTER */
  .page-footer {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px 14px !important;
    gap: 16px !important;
  }

  .footer-left {
    justify-content: center !important;
    gap: 10px !important;
  }

  .footer-right {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .footer-right .contact-info {
    text-align: center !important;
    font-size: 12px !important;
    line-height: 1.8 !important;
  }

  .footer-icons {
    justify-content: center !important;
    gap: 8px !important;
  }

  .footer-icons>div,
  .footer-icons>a {
    width: 38px !important;
    height: 38px !important;
  }

  /* ENQUIRY SECTION MOBILE REDESIGN (Premium Look) */
  #ui-7 .section-overlay-content {
    padding: 20px 16px 30px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow-y: auto !important;
  }

  .enquiry-layout {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
  }

  .enquiry-left {
    width: 100% !important;
    padding: 30px 20px !important;
    background: rgba(20, 20, 25, 0.75) !important;
    border: 1px solid rgba(255, 165, 0, 0.4) !important;
    border-radius: 20px !important;
    margin-top: 0 !important;
    backdrop-filter: blur(15px) saturate(160%) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 165, 0, 0.15) !important;
    position: relative !important;
    overflow: hidden !important;
    animation: float 7s ease-in-out infinite !important;
  }

  .enquiry-left::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 50% !important;
    height: 100% !important;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%) !important;
    transform: skewX(-20deg) !important;
    animation: shine 8s infinite !important;
    pointer-events: none !important;
  }

  .enquiry-heading-main {
    font-size: 22px !important;
    margin-bottom: 15px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
  }

  .enquiry-text-line {
    font-size: 11px !important;
    margin-bottom: 9px !important;
    line-height: 1.6 !important;
  }

  .enquiry-subheading {
    font-size: 18px !important;
    margin-top: 15px !important;
    font-weight: 800 !important;
  }

  .enquiry-paragraph {
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
  }

  .enquiry-form-heading {
    font-family: 'Orelega One', serif !important;
    font-size: 18px !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
  }

  .enquiry-right {
    width: 100% !important;
    padding: 30px 20px !important;
    background: rgba(20, 20, 25, 0.75) !important;
    border: 1px solid rgba(255, 165, 0, 0.4) !important;
    border-radius: 20px !important;
    margin-top: 20px !important;
    backdrop-filter: blur(15px) saturate(160%) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 165, 0, 0.15) !important;
    position: relative !important;
    overflow: hidden !important;
    animation: float 8s ease-in-out infinite reverse !important;
  }

  .enquiry-right::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 50% !important;
    height: 100% !important;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%) !important;
    transform: skewX(-20deg) !important;
    animation: shine 9s infinite !important;
    pointer-events: none !important;
  }

  .enquiry-form-heading {
    font-family: 'Orelega One', serif !important;
    font-size: 18px !important;
    color: #ffffff !important;
    margin-bottom: 8px !important;
    text-align: center !important;
    width: 100% !important;
  }

  .enquiry-subtitle {
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    display: block !important;
    color: #ffffff !important;
    text-align: center !important;
  }

  .enquiry-form-box {
    background: rgba(10, 10, 15, 0.95) !important;
    border: 1px solid rgba(255, 165, 0, 0.5) !important;
    border-radius: 15px !important;
    padding: 15px 12px !important;
    backdrop-filter: blur(10px) !important;
  }

  .enquiry-field {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 8px !important;
    gap: 10px !important;
  }

  .enquiry-label {
    width: 38% !important;
    font-size: 11px !important;
    margin-bottom: 0 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
  }

  .enquiry-input,
  .enquiry-select {
    width: 60% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 165, 0, 0.2) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
    color: #ffffff !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  }

  .enquiry-input:focus,
  .enquiry-select:focus {
    border-color: #FFA500 !important;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.3) !important;
    outline: none !important;
  }

  .enquiry-submit-btn {
    width: 100% !important;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%) !important;
    color: #000000 !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    padding: 14px !important;
    border-radius: 100px !important;
    margin-top: 15px !important;
    border: none !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3), 0 0 30px rgba(255, 165, 0, 0.1) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }

  .enquiry-submit-btn:active {
    transform: scale(0.96) !important;
  }

  #reset-form-btn {
    display: none !important;
  }

  /* List items — shrunk */
  .enquiry-text-line {
    color: #ffffff !important;
    font-size: 11px !important;
    margin-bottom: 9px !important;
  }

  /* Creative subheading — shrunk & orange */
  .enquiry-subheading {
    color: orange !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  /* Philosophy paragraph — shrunk */
  .enquiry-paragraph {
    color: #ffffff !important;
    font-size: 7px !important;
    line-height: 1.4 !important;
    text-align: center !important;
    margin: 0 !important;
  }

  /* Form card — shrunk padding */
  .enquiry-right {
    width: 100% !important;
    background: rgba(128, 128, 128, 0.9) !important;
    border-radius: 10px !important;
    padding: 6px 8px !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: none !important;
    margin-top: 0 !important;
  }

  /* Form box */
  .enquiry-form-box {
    background: none !important;
    border: none !important;
    padding: 0 !important;
  }

  /* Form heading — shrunk */
  .enquiry-form-heading {
    color: #1a1a1a !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-bottom: 4px !important;
  }

  /* Field rows — shrunk gap and margin */
  .enquiry-field {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 4px !important;
    margin-bottom: 3px !important;
  }

  /* Labels — shrunk */
  .enquiry-label {
    color: #1a1a1a !important;
    font-size: 8px !important;
    font-weight: 600 !important;
    min-width: 60px !important;
    flex-shrink: 0 !important;
  }

  /* Inputs — shrunk */
  .enquiry-input {
    flex: 1 !important;
    background: #ffffff !important;
    border: 1px solid #cccccc !important;
    border-radius: 4px !important;
    padding: 2px 4px !important;
    font-size: 8px !important;
    height: 18px !important;
    color: #333 !important;
  }

  /* Submit button styling — micro-shrunk */
  #submit-btn {
    width: 100% !important;
    background: #FFD700;
    color: #1a1a1a !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 4px 0 !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    margin: 4px auto 0 auto !important;
    display: block !important;
    cursor: pointer !important;
    height: auto !important;
    line-height: normal !important;
  }
}

@media (max-width: 480px) {
  body {
    overflow-x: hidden;
  }

  /* Global Image Rule */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Navbar Mobile Styles */
  .navbar {
    width: 94% !important;
    padding: 10px 20px !important;
    top: 10px !important;
  }

  .nav-links {
    display: none !important;
    /* Hide desktop links */
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .hamburger-menu {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: center;
    z-index: 10001;
  }

  .hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #FFC300;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* Hamburger Animation when active */
  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-menu-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 0;
    overflow: hidden;
    z-index: 9998;
    transition: height 0.5s ease;
  }

  .mobile-menu-dropdown.active {
    height: 100vh !important;
  }

  .mobile-menu-dropdown span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 20px;
  }

  /* Hero Section Mobile */
  #ui-hero .section-overlay-content {
    padding-top: 100px !important;
    text-align: center;
  }

  .hero-heading {
    font-size: 25px !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
    padding: 0 10px !important;
    white-space: normal !important;
  }

  .hero-btn {
    padding: 12px 24px !important;
    font-size: 14px !important;
    margin-top: 20px !important;
  }

  /* Banner / Tree Section Mobile */
  #ui-banner .section-overlay-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .banner-dark-strip {
    width: 100% !important;
    padding: 20px 15px !important;
    margin: 0 !important;
  }

  .banner-heading {
    font-size: 2.0rem !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
    padding: 0 10px !important;
  }

  .banner-pill {
    font-size: 10px !important;
    padding: 8px 20px !important;
    white-space: normal !important;
    line-height: 1.5 !important;
    text-align: center !important;
    margin-top: 20px !important;
  }

  /* About Us Mobile */
  .about-heading {
    font-size: 2.2rem !important;
    margin-bottom: 25px !important;
  }

  .about-card {
    width: 90% !important;
    padding: 1.5rem !important;
  }

  .about-card p {
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    text-align: center !important;
  }

  .about-icon-tr,
  .about-icon-bl {
    width: 60px !important;
  }

  /* What We Bring Mobile */
  #ui-whattable .section-overlay-content {
    justify-content: center !important;
  }

  .services-layout {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .services-left {
    width: 100% !important;
    padding: 0 !important;
    align-items: center !important;
  }

  .services-heading {
    font-size: 1.6rem !important;
    text-align: center !important;
    margin-bottom: 20px !important;
  }

  .service-pill-btn {
    width: 90% !important;
    font-size: 0.95rem !important;
    margin-bottom: 10px !important;
  }

  .services-right {
    width: 90% !important;
    padding: 20px !important;
  }

  .services-right p {
    font-size: 0.85rem !important;
  }

  /* Removed stale service styles — now handled by 768px query */

  /* Founder Section Mobile */
  #ui-founder .section-overlay-content {
    flex-direction: column !important;
    padding: 100px 5% 40px 5% !important;
    gap: 30px !important;
  }

  .founder-left,
  .founder-right {
    width: 100% !important;
    align-items: center !important;
  }

  .founder-photo-box {
    max-width: 180px !important;
    order: -1 !important;
    /* Photo on top */
  }

  .founder-photo {
    border-radius: 50% !important;
  }

  .founder-label {
    font-size: 1.8rem !important;
    text-align: center !important;
    margin-bottom: 15px !important;
  }

  .founder-card {
    width: 90% !important;
    padding: 1.5rem !important;
  }

  .founder-card p {
    font-size: 0.85rem !important;
    line-height: 1.8 !important;
    text-align: center !important;
  }


  .enquiry-label {
    font-size: 0.9rem !important;
  }

  #submit-btn {
    height: 48px !important;
    font-size: 16px !important;
    width: 100% !important;
    background: #FFD700;
  }

  /* Footer Mobile */
  .page-footer {
    flex-direction: column !important;
    text-align: center !important;
    gap: 24px !important;
  }

  .footer-left {
    flex-direction: column !important;
  }

  .footer-right {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .footer-contact-info {
    text-align: center !important;
  }

  .footer-social-icons {
    justify-content: center !important;
    gap: 16px !important;
  }

  .footer-logo-box {
    order: 3 !important;
    /* Logo at bottom */
  }

  .footer-copyright {
    position: static !important;
    margin-top: 10px !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .founder-card-new {
    width: 100% !important;
    padding: 24px 16px !important;
  }

  .founder-photo-wrapper {
    width: 120px !important;
    height: 120px !important;
    margin-top: -60px !important;
  }

  .founder-name-new {
    font-size: 10px !important;
  }

  .founder-title-new {
    font-size: 8px !important;
    margin-bottom: 8px !important;
  }

  .founder-bio {
    font-size: 9px !important;
    line-height: 1.4 !important;
  }
}

/* Reset Form Button Styling */
.reset-form-btn {
  position: absolute;
  top: -30px;
  /* higher up */
  right: 0px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.reset-form-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.reset-form-btn:active {
  background: #FFA500;
  color: #000;
  border-color: #FFA500;
  transform: scale(0.95);
}





/* bhaiya css */
/* --- SEO + ACCESSIBILITY FALLBACK CONTENT --- */

.noscript-seo-content {
  background: #050505;
  color: #ffffff;
  padding: 48px 5%;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
}

.noscript-seo-content h1,
.noscript-seo-content h2 {
  color: #FFA500;
  margin-bottom: 16px;
}

.noscript-seo-content p,
.noscript-seo-content li {
  font-size: 16px;
  margin-bottom: 12px;
}

.noscript-seo-content ul {
  padding-left: 22px;
  margin-bottom: 24px;
}

.noscript-seo-content a {
  color: #FFA500;
  text-decoration: underline;
}

.semantic-seo-section {
  position: relative;
  z-index: 20;
  background:
    radial-gradient(circle at top left, rgba(255, 165, 0, 0.14), transparent 35%),
    linear-gradient(180deg, #050505 0%, #111111 100%);
  color: #ffffff;
  padding: 80px 5%;
  border-top: 1px solid rgba(255, 165, 0, 0.25);
}

.semantic-seo-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.semantic-eyebrow {
  color: #FFA500;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.semantic-seo-section h2 {
  color: #FFA500;
  font-family: 'Orelega One', serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: normal;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.65);
}

.semantic-seo-section h3 {
  color: #FFA500;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.semantic-seo-section p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.semantic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 36px 0 48px;
}

.semantic-grid article {
  background: rgba(20, 20, 25, 0.72);
  border: 1px solid rgba(255, 165, 0, 0.25);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.semantic-grid article p {
  font-size: 13.5px;
  margin-bottom: 0;
}

.semantic-faq {
  margin-top: 34px;
}

.semantic-faq details {
  background: rgba(20, 20, 25, 0.72);
  border: 1px solid rgba(255, 165, 0, 0.22);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 12px;
}

.semantic-faq summary {
  cursor: pointer;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
}

.semantic-faq details p {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 14px;
}

@media (max-width: 900px) {
  .semantic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .semantic-seo-section {
    padding: 56px 5%;
  }
}

@media (max-width: 560px) {
  .semantic-grid {
    grid-template-columns: 1fr;
  }

  .semantic-seo-section h2 {
    font-size: 32px;
  }

  .semantic-seo-section p {
    font-size: 14px;
  }
}

.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: block;
  }



  .mobile-founder-info {
    display: block !important;
    position: relative;
    background: rgba(20, 20, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 165, 0, 0.1);
    border-radius: 20px;
    padding: 20px 24px;
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    margin-top: 24px;
    overflow: hidden;
  }

  .mobile-founder-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 9s infinite;
    pointer-events: none;
  }

  .desktop-only-card,
  .desktop-only-element {
    display: none !important;
  }
}

.mobile-founder-info {
  display: none;
}