:root {
  /* Brand Colors */
  --color-primary: #ed751f;
  --color-secondary: #e3ab23;
  --color-dark: #000000;
  --color-dark-light: #0a0a0a;
  --color-dark-card: #111111;
  --color-dark-elevated: #1a1a1a;
  --color-white: #ffffff;
  --color-text-light: #e0e0e0;
  --color-text-muted: #bcbcbc;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #ed751f 0%, #e3ab23 100%);
  --gradient-dark: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px rgba(237, 117, 31, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Loader */
.loader-container {
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 99999;
  position: fixed;
}

.loader-container p {
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  font-weight: 400;
  transform: scale(0.5);
  color: #121212;
  -webkit-text-stroke: 2px gray;
}

.loader-container p:nth-child(1) {
  animation: hover 1s linear infinite;
}

.loader-container p:nth-child(2) {
  animation: hover 1s linear infinite 0.125s;
}

.loader-container p:nth-child(3) {
  animation: hover 1s linear infinite 0.25s;
}

.loader-container p:nth-child(4) {
  animation: hover 1s linear infinite 0.375s;
}

.loader-container p:nth-child(5) {
  animation: hover 1s linear infinite 0.5s;
}

.loader-container p:nth-child(6) {
  animation: hover 1s linear infinite 0.675s;
}

.loader-container p:nth-child(7) {
  animation: hover 1s linear infinite 0.75s;
}

.loader-container p:nth-child(8) {
  animation: hover 1s linear infinite 0.875s;
}

.loader-container p:nth-child(9) {
  animation: hover 1s linear infinite 1s;
}

.loader-container p:nth-child(10) {
  animation: hover 1s linear infinite 1.125s;
}

.loader-container p:nth-child(11) {
  animation: hover 1s linear infinite 1.25s;
}

.loader-container p:nth-child(12) {
  animation: hover 1s linear infinite 1.375s;
}

.loader-container p:nth-child(13) {
  animation: hover 1s linear infinite 1.5s;
}

.loader-container p:nth-child(14) {
  animation: hover 1s linear infinite 1.625s;
}

@keyframes hover {
  0% {
    transform: scale(0.5);
    color: #121212;
    -webkit-text-stroke: 2px rgb(0, 0, 0);
  }

  20% {
    transform: scale(1);
    color: var(--color-primary);
    -webkit-text-stroke: 2px var(--color-primary);
    filter: none;
  }

  50% {
    transform: scale(0.5);
    color: var(--color-white);
    -webkit-text-stroke: 2px white;
  }
}

/* Fade Animations */
.reveal {
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.reveal.active {
  opacity: 1;
  transform: translate(0);
}

.active.fade0 {
  animation: fade0 1.2s ease-in-out;
}

.active.fade1 {
  animation: fade1 1.8s ease-in-out;
}

.active.fade2 {
  animation: fade2 1.8s ease-in-out;
}

.active.fade3 {
  animation: fade3 1.4s ease-in-out;
}

@keyframes fade0 {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade1 {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade2 {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade3 {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 20px 40px;
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
  z-index: 9999;
  color: white;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.header:hover {
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(237, 117, 31, 0.2);
}

.header .left img {
  cursor: pointer;
  height: 130px;
  left: 0;
  transition: transform var(--transition-base);
}

.header .left img:hover {
  transform: scale(1.05);
}

#nav-menu .book {
  margin-left: 50px;
}

.header .right .book a {
  padding: 12px 32px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-base);
}

.header .right .book a:hover {
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(237, 117, 31, 0.5);
}

.header .right {
  display: flex;
  margin-right: 0px;
}

.header .right ul {
  display: flex;
  list-style: none;
}

.header .right ul li {
  padding: 40px 20px;
  font-size: 16px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

#service-dropdown {
  position: relative;
}

#service-menu {
  display: none;
  position: absolute;
  top: 95px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

#service-dropdown:hover #service-menu {
  display: block;
  z-index: 998;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#service-menu li {
  display: block;
  width: 250px;
  padding: 12px 20px;
  transition: all var(--transition-fast);
}

#service-menu li:hover {
  background: rgba(237, 117, 31, 0.1);
  padding-left: 30px;
}

#service-menu li a,
#service-menu li a {
  color: var(--color-text-light);
  font-weight: 500;
}

#service-menu li a:hover {
  color: var(--color-primary);
}

.header .right ul li a {
  text-decoration: none;
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.header .right ul li a:hover,
.header .right ul li p:hover {
  text-decoration: none;
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(237, 117, 31, 0.3);
}

.header #menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}


/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 80px;
  background: var(--gradient-dark);
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 72px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 30px;
  letter-spacing: -2px;
  line-height: 1.1;
}

.hero h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero p {
  font-size: 20px;
  color: var(--color-text-light);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 16px 48px;
  background: var(--gradient-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-glow);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(237, 117, 31, 0.5);
}

/* Story Section */
.story-section {
  padding: 120px 60px;
  background: var(--color-dark);
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.story-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-content p {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Values Section */
.values-section {
  padding: 120px 60px;
  background: var(--color-dark-light);
}

.values-header {
  text-align: center;
  margin-bottom: 80px;
}

.values-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
}

.values-header p {
  font-size: 18px;
  color: var(--color-text-muted);
}

.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(237, 117, 31, 0.3);
  background: rgba(17, 17, 17, 0.6);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(237, 117, 31, 0.1);
  border: 2px solid rgba(237, 117, 31, 0.3);
  transition: all var(--transition-base);
}

.value-card:hover .value-icon {
  background: rgba(237, 117, 31, 0.2);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.value-icon i {
  font-size: 36px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 15px;
}

.value-card p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Stats Section */
.stats-section {
  padding: 100px 60px;
  background: var(--gradient-dark);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 117, 31, 0.3);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: var(--color-text-light);
  font-weight: 500;
}

/* Team Section */
.team-section {
  padding: 120px 60px;
  background: var(--color-dark);
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
}

.team-header p {
  font-size: 18px;
  color: var(--color-text-muted);
}

.team-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(237, 117, 31, 0.3);
  box-shadow: var(--shadow-xl);
}

.team-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 30px;
  text-align: center;
}

.team-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.team-info p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 120px 60px;
  background: var(--color-dark-light);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 56px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 20px;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

/* Footer */
.footer {
  padding: 30px 10px 0px 10px;
  z-index: 999;
  color: #2f2f2f;
  background-color: #202020;
  border-top: 1px solid #000000;
  width: 100%;
  margin: 0;
}

.footer_nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.nav_con {
  width: 30%;
  display: flex;
  flex-direction: column;
}

.nav_con img {
  width: 180px;
  cursor: pointer;
}

.nav_con h2 {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 400;
  color: white;
}

.nav_ul.extra {
  column-count: 2;
  column-gap: 40px;
}

.nav_item {
  margin-top: 20px;
}

.nav_item h2 {
  font-weight: 400;
  font-size: 26px;
  color: white;
}

.nav_con a {
  color: #e3ab23;
  margin: 5px 0;
  text-decoration: none;
}

.footer p {
  margin: 10px 0;
  font-style: normal;
  color: #dcdcdc;
}

.footer .nav_item a {
  margin: 10px 0;
  color: #efefef;
  text-decoration: none;
}

.footer .nav_item a:hover {
  margin: 10px 0;
  color: #ed751f;
}

.footer ul {
  margin-top: 30px;
  list-style: none;
}

.footer ul li {
  margin: 10px 0;
}

.legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 40px;
}

.legal p {
  color: #bcbcbc;
  font-size: 14px;
}

.links {
  display: flex;
  gap: 20px;
}

.links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.links a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.links i {
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 56px;
  }

  .story-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
 @media (max-width: 768px) {
  .video video {
    width: 100%;
  }

.header #menu-icon {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }

  /* Header */
  .header {
    height: 70px;
    padding: 10px;
  }

  .header .left img {
    cursor: pointer;
    height: 80px;
  }

  .header #nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0px;
    background-color: #000000d2;
    padding: 0;
    border: none;
    z-index: 9999;
    width: 250px;
  }

  #service-dropdown {
    position: relative;
  }

  #service-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 0px;
    margin-left: 15px;
  }

  #service-dropdown:hover #service-menu {
    background-color: #000000f4;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    display: block;
    z-index: 998;
  }

  #service-menu li {
    display: block;
    width: 200px;
    padding: 10px;
    background-color: #000000;
  }

  .header .right ul li {
    padding: 10px 5px;
    font-size: 16px;
  }

  .header .right ul .book a {
    padding: 10px 0;
    background: transparent;
  }

  .header .right .book a:hover {
    color: #ed751f;
  }

  #nav-menu .book {
    margin-left: 0px;
  }

  .header #nav-menu.open {
    display: flex;
  }
}
  .hero {
    padding: 100px 30px 60px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .story-section,
  .values-section,
  .team-section,
  .cta-section {
    padding: 80px 30px;
  }

  .stats-section {
    padding: 60px 30px;
  }

  .story-content h2,
  .values-header h2,
  .team-header h2,
  .cta-content h2 {
    font-size: 36px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legal {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .nav_con {
    width: 100%;
  }
}