: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%);
  --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 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);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* 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;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: 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-container {
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  /* Semi-transparent background */
  color: #ed751f;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 99999;
  /* Make sure the loader appears on top of other content */
  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;
}

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

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

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

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

  20% {
    transform: scale(1);
    color: #ed751f;
    /* Change color to #ed751f */
    -webkit-text-stroke: 2px #ed751f;
    /* Maintain the gray stroke */
    filter: none;
    /* Remove filter */
  }

  50% {
    transform: scale(0.5);
    color: #fff;
    /* Change color to white */
    -webkit-text-stroke: 2px white;
    /* Maintain the gray stroke */
  }
}

/*fade*/
.reveal {
  position: relative;
  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;
}

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

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

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

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

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

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

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

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

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

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

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

/*fade end*/

.more.hide {
  display: none;
}

.hover.hide {
  display: none;
}

/* 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: 80px;
}

.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;
}

.video {
  width: 100%;
  height: 100vh;
  position: relative;
  filter: brightness(0);
  transition: filter 2s ease 1s;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}

.video {
  width: 100%;
  height: 100vh;
  position: relative;
  filter: brightness(0);
  transition: filter 2s ease 1s;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}

/* OVERLAY */
.video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
  pointer-events: none;
}

/* VIDEO */
.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------------------
   MOBILE & TABLET RESPONSIVE
------------------------------*/
@media (max-width: 768px) {
  .video {
    height: 60vh;
    padding-top: 70px; /* space for header */
    box-sizing: border-box;
  }

  .video video {
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 480px) {
  .video {
    height: 100%;
    width: 100%;
    padding-top: 70px; /* space for header */
    box-sizing: border-box;
  }

  .video video {
    object-fit: cover;
    object-position: center;
  }
}



.section {
  filter: brightness(0);
  transition: filter 2s ease 1s;
  overflow: hidden;
  align-items: center;
  padding: 80px 40px;
  width: 100%;
  justify-content: space-between;
  height: auto;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  background: var(--gradient-dark);
}

.show-background {
  filter: brightness(1);
}

.section .heading {
  text-align: center;
  padding: 40px 0;
  margin-bottom: 40px;
}

.section .heading h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-white);
  letter-spacing: -1px;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section .heading h1 span {
  font-size: 56px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 10px;
}

.section .cards {
  width: 94%;
  display: flex;
  flex-direction: row;
  margin: auto;
  justify-content: space-around;
  align-self: center;
  gap: 24px;
}

.section .cards .card {
  width: 280px;
  height: 300px;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid transparent;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.8), rgba(26, 26, 26, 0.8)),
    var(--gradient-primary);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.section .cards .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.section .cards .card:hover::before {
  opacity: 0.15;
}

.section .cards .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: rgba(237, 117, 31, 0.5);
}

.section .cards .card h1 {
  font-weight: 600;
  font-size: 20px;
  color: var(--color-white);
  line-height: 1.4;
}

.section .cards .card .fas {
  font-size: 56px;
  margin: 10px 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform var(--transition-base);
}

.section .cards .card:hover .fas {
  transform: scale(1.1) rotate(5deg);
}

.section .last {
  text-align: center;
  margin: 60px 0 20px;
  font-size: 20px;
  color: var(--color-text-light);
  font-weight: 500;
}

.section .last a {
  color: var(--color-primary);
  text-decoration: none;
  margin-left: 10px;
  font-weight: 600;
  transition: all var(--transition-fast);
  position: relative;
}

.section .last a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.section .last a:hover::after {
  width: 100%;
}

.section .last a:hover {
  color: var(--color-secondary);
  text-shadow: var(--shadow-glow);
}

.section2 {
  overflow: hidden;
  background: var(--gradient-dark);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 100px 60px;
  width: 100%;
  justify-content: space-around;
  min-height: 80vh;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.section2 .left {
  width: 50%;
  padding: 0 40px;
}

.section2 .left h3 {
  color: var(--color-primary);
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section2 .left .text-container {
  font-size: 42px;
  font-weight: 700;
  margin: 30px 0;
  color: var(--color-white);
  font-family: 'Outfit', sans-serif;
}

@keyframes blink {

  0%,
  100% {
    border-right: 2px solid transparent;
  }

  50% {
    border-right: 2px solid var(--color-primary);
  }
}

.section2 .left .extend {
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: var(--color-white);
  font-family: 'Outfit', sans-serif;
}

.section2 .left .para {
  color: var(--color-text-light);
  margin: 10px 0;
  font-size: 17px;
  line-height: 1.8;
}

.section2 .right {
  padding: 0 40px;
  width: 50%;
}

.section2 .right img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 40px rgba(237, 117, 31, 0.3));
  transition: transform var(--transition-slow);
}

.section2 .right img:hover {
  transform: scale(1.05) rotate(2deg);
}

.section2 .right video {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
}

.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background-color: #ed751f;
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  box-shadow: 0px 2px 4px rgba(182, 79, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

.scroll-to-top i {
  font-size: 20px;
}

.scroll-to-top:hover {
  background-color: #d17000;
  transform: scale(1.1);
}

.section3 {
  overflow: hidden;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 60px 0;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  position: relative;
}

.section3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.section3 .left {
  width: 58%;
  text-align: right;
  z-index: 1;
}

.section3 .right {
  width: 42%;
  text-align: left;
  padding-top: 70px;
  right: 8.5%;
  z-index: 1;
}

.section3 .left h3,
.section3 .right h3 {
  font-size: 64px;
  padding: 15px 0;
  color: var(--color-dark);
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section3 .right h3 {
  padding-left: 10px;
}


#chatbutton {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(to left, #ed751f, #e3ab23);
  color: #fff;
  /* Text color */
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 999;
  /* Ensure it appears above other elements */
}

#chatbutton:hover {
  background: #ed751f;
}

.chatbot-container {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 0px;
  width: 100%;
  max-width: 400px;
  background-color: #111111;
  border-radius: 10px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  animation: slideInUp 0.5s ease-in-out;
  font-family: Arial, sans-serif;
  z-index: 9999;
}



.chatbot-header {
  padding: 16px;
  background: linear-gradient(to left, #ed751f, #e3ab23);
  color: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-title {
  font-weight: bold;
  font-size: 24px;
  color: #111111;
}

.chatbot-close {
  cursor: pointer;
  font-size: 20px;
}

/* Chat messages */
.chatbot-messages {
  max-height: 300px;
  overflow-y: auto;
  padding: 12px 10px;
}

/* User message */
.user-message {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 10px;
}

.user-message .message-content {
  background: #e3ab23;
  color: #111111;
  padding: 10px;
  border-radius: 16px;
  margin-right: 10px;
}

/* Bot message */
.bot-message {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.bot-message .message-content {
  background-color: #e0e0e0;
  padding: 10px;
  border-radius: 16px;
  margin-left: 10px;
}

/* Input section */
.chatbot-input {
  display: flex;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #ccc;
  background-color: #111111;
}

.user-input {
  flex-grow: 1;
  padding: 8px;
  border: none;
  border-radius: 4px;
  margin-right: 8px;
}

.send-button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background-color: #ed751f;
  color: #fff;
  cursor: pointer;
}

.send-button:hover {
  background-color: #cf671d;
}

.section4 {
  background: var(--gradient-dark);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 40px;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.section4 .heading {
  text-align: center;
  margin: 20px 0 60px;
}

.section4 .heading h3 {
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 600;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section4 .heading h1 {
  font-size: 52px;
  color: var(--color-white);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
}

.section4 .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 30px;
  max-width: 1400px;
}

.section4 .cards .card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 10px 0;
  width: calc(23% - 20px);
  min-width: 250px;
  cursor: pointer;
}

.section4 .cards .card .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(23, 23, 23, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section4 .cards .card .icon img {
  width: 120px;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 10px 20px rgba(237, 117, 31, 0.3));
}

.section4 .cards .card .icon h1 {
  font-size: 20px;
  transition: opacity 0.3s ease;
  color: var(--color-white);
  margin: 15px 0;
  font-weight: 700;
}

.section4 .cards .card .face {
  width: 100%;
  height: 220px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section4 .cards .card .face.face1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
}

.section4 .cards .card:hover .face.face1 h1 {
  opacity: 0;
}

.section4 .cards .card:hover .face.face1 img {
  width: 180px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section4 .cards .card:hover .face.face1 {
  transform: translateY(0px);
}

.section4 .cards .card .face.face1 .content {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.section4 .cards .card:hover .face.face1 .content {
  opacity: 1;
}

.section4 .cards .card .face.face2 {
  position: relative;
  background: var(--gradient-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
  box-sizing: border-box;
  box-shadow: var(--shadow-xl);
  transform: translateY(-100px);
  border-radius: var(--radius-lg);
}

.section4 .cards .card:hover .face.face2 {
  transform: translateY(0);
}

.section4 .cards .card .face.face2 .content p {
  text-align: center;
  color: var(--color-white);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.section4 .cards .card .face.face2 .content h3 {
  margin-bottom: 15px;
  font-size: 22px;
  text-align: center;
  color: var(--color-white);
  font-weight: 800;
}

.section4 .controls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section4 .controls .prev,
.section4 .controls .next {
  color: var(--color-text-muted);
  border: none;
  font-size: 32px;
  margin: 0 10px;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 10px;
}

.section4 .controls .prev:hover,
.section4 .controls .next:hover {
  color: var(--color-primary);
  transform: scale(1.2);
}


.section5,
.section5 .back {
  background: var(--color-dark);
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.section5 {
  overflow: hidden;
  width: 100%;
  min-height: 90vh;
  padding-bottom: 60px;
}

.section5 .back {
  height: auto;
  text-align: center;
  padding: 60px 40px;
}

.section5 .back .heading {
  padding: 40px 0;
}

.section5 .back .heading h3 {
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section5 .back .heading h1 {
  font-size: 48px;
  color: var(--color-white);
  font-weight: 800;
  margin: 20px 0;
  letter-spacing: -1px;
}

.section5 .back .cards {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 30px;
}

.section5 .back .cards .card {
  margin: 10px;
  width: calc(30% - 10px);
  text-align: center;
  position: relative;
  transition: all var(--transition-base);
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.section5 .back .cards .card video {
  padding: 40px 0;
  height: auto;
  width: 100%;
  border-radius: var(--radius-md);
}


.section7 {
  background: var(--gradient-dark);
  overflow: hidden;
  width: 100%;
  padding: 100px 40px;
  height: auto;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.section7 .heading {
  padding: 20px 0 60px;
  text-align: center;
}

.section7 .heading h3 {
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section7 .heading h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 20px 0;
  color: var(--color-white);
  letter-spacing: -1px;
}

.slider {
  height: 70vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: center;
}

.slider__nav {
  width: 14px;
  height: 14px;
  margin: 2rem 12px;
  border-radius: 50%;
  z-index: 10;
  outline: 6px solid var(--color-primary);
  outline-offset: -6px;
  box-shadow: 0 0 0 0 rgba(237, 117, 31, 0.3), 0 0 0 0 rgba(237, 117, 31, 0);
  cursor: pointer;
  appearance: none;
  backface-visibility: hidden;
  transition: all var(--transition-base);
}

.slider__nav:hover {
  transform: scale(1.2);
}

.slider__nav:checked {
  animation: check 0.4s linear forwards;
}

.slider__nav:checked:nth-of-type(1)~.slider__inner {
  left: 0%;
}

.slider__nav:checked:nth-of-type(2)~.slider__inner {
  left: -100%;
}

.slider__nav:checked:nth-of-type(3)~.slider__inner {
  left: -200%;
}

.slider__nav:checked:nth-of-type(4)~.slider__inner {
  left: -300%;
}

.slider__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-flow: row nowrap;
}

.slider__contents {
  height: 100%;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex: 1;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

.slider__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--color-primary);
  box-shadow: var(--shadow-glow);
  object-fit: cover;
  transition: transform var(--transition-base);
}

.slider__contents:hover .slider__image {
  transform: scale(1.1);
}

.slider__caption {
  font-weight: 700;
  margin: 2rem 0 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  color: var(--color-white);
  font-size: 24px;
  letter-spacing: 1px;
}

.slider__txt {
  color: var(--color-text-light);
  margin-bottom: 3rem;
  max-width: 500px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}

@keyframes check {
  50% {
    outline-color: var(--color-secondary);
    box-shadow: 0 0 0 12px rgba(237, 117, 31, 0.2), 0 0 0 36px rgba(237, 117, 31, 0.1);
  }

  100% {
    outline-color: var(--color-primary);
    box-shadow: 0 0 0 0 rgba(237, 117, 31, 0.2), 0 0 0 0 rgba(237, 117, 31, 0);
  }
}


.section8 {
  overflow: hidden;
  background: var(--gradient-primary);
  padding: 80px 40px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  position: relative;
}

.section8::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(0,0,0,0.1)"/></svg>');
  opacity: 0.3;
}

.stat-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat {
  flex-basis: calc(25% - 20px);
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 20px;
  margin: 10px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 1);
}

.number {
  font-size: 52px;
  font-weight: 900;
  color: var(--color-dark);
  font-family: 'Outfit', sans-serif;
  letter-spacing: -1px;
}

.label {
  font-size: 18px;
  margin-top: 10px;
  color: #555555;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section9 {
  overflow-x: hidden;
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  margin: 40px auto;
  border-radius: 10px;
  width: 80%;
}

.section9 .left {
  overflow: none;
  width: 40%;
  background-color: #111111;
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.section9 .left h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
}

.section9 .left .contact-section {
  margin-bottom: 20px;
}

.section9 .left h4 {
  font-size: 20px;
  color: #ffffff;
  margin-top: 10px;
}

.section9 .left p {
  font-size: 16px;
  color: #ffffff;
  margin: 10px 0;
}

.section9 .left p a {
  font-weight: bold;
  color: #ff6600;
  text-decoration: none;
}

.section9 .left p a:hover {
  text-decoration: underline;
}

.section9 .right {
  width: 60%;
  padding: 20px;
  background-color: #111111;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.438);
  height: 460px;
}

.section9 .right h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.section9 .right h1 {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 30px;
}

.section9 .right form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 10px;
}

.input-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.section9 .right form .input {
  display: flex;
  flex-direction: column;
}

.section9 .right form label {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 5px;
}

.section9 .right form input[type="text"],
.section9 .right form input[type="email"],
.section9 .right form input[type="tel"],
.section9 .right form textarea {
  padding: 8px;
  min-width: 260px;
  border: 1px solid #ccc;
  background-color: rgb(233, 233, 233);
  border-radius: 5px;
  font-size: 16px;
  color: #000000;
}

.section9 .right form .error-message {
  color: #e74c3c;
  font-size: 14px;
}

.section9 .right form button[type="submit"] {
  background-color: #2a2a2a;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.section9 .right form button[type="submit"]:hover {
  background-color: #000000;
}

.section9 .confirmation {
  display: none;
  background-color: #4caf50;
  color: white;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
}

.section9 .confirmation span#confirm-name {
  font-weight: bold;
  text-decoration: underline;
}

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

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

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

.nav_con img {
  width: 180px;
}

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

.nav_ul.extra {
  column-count: 2;
  column-gap: 60px;
  margin-right: 50px;
}

.nav_item {
  margin-top: 20px;
  margin-right: 50px;
}

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

.nav_con a {
  color: #e3ab23;
  margin: 5px 0;
}

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

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

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

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

.footer li {
  line-height: 32px;
}

.footer a {
  text-decoration: none;
}

.footer .legal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 40px;
  padding: 10px 30px;
  
  
}

.footer .legal p {
  color: #eeeeee;
  
}

.footer .legal .links {
  display: flex;
  flex-direction: row;
}

.footer .legal .links a {
  font-size: 22px;
  background-color: #000000;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 2px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}

.footer .legal .links a:hover {
  background-color: #ffa500;
  /* Change the background color to orange on hover */
  transition: background-color 0.3s;
}

@media (max-width: 768px) {
  .loader p {
    font-size: 15px;
  }
}

@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: 12px 10px;
    background: #ed751f;
    
  }

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

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

  .header #nav-menu.open {
    display: flex;
  }
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
    padding: 20px 0;
    margin: 20px 0;
    height: auto;
  }

  .section .heading h4 {
    font-size: 24px;
  }

  .section .heading h1 {
    font-size: 30px;
  }

  .section .heading h1 span {
    font-size: 32px;
  }

  .section .cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .section .cards .card {
    max-width: calc(45% - 10px);
    height: 180px;
    padding: 12px 20px;
    margin: 10px 0;
  }

  .section .cards .card:hover {
    background: linear-gradient(#000000, #212121) padding-box,
      linear-gradient(145deg, transparent 0%, dark#ed751f, #ed751f) border-box;
  }

  .section .cards .card h1 {
    font-size: 16px;
  }

  .section .last {
    margin: 20px 0;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .section2 {
    flex-direction: column;
    padding: 20px 10px;
    width: 100%;
    height: auto;
  }

  .section2 .left {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 30px;
  }

  .section2 .left h3 {
    font-size: 30px;
  }

  .section2 .left .text-container {
    font-size: 32px;
    margin: 20px 0;
  }

  .section2 .left .extend {
    font-size: 18px;
    margin: 10px 0;
  }

  .section2 .left .extend .toggle {
    margin-left: 5px;
    font-size: 22px;
  }

  .section2 .right {
    padding: 0 20px;
    width: 100%;
  }

  .section2 .right img {
    height: 250px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section3 {
    width: 100%;
    margin: 0;
    justify-content: center;
  }

  .section3 .left h3,
  .section3 .right h3 {
    font-size: 20px;
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .section4 {
    width: 100%;
    flex-direction: column;
    padding: 40px 0;
  }

  .section4 .heading {
    text-align: center;
    margin: 20px 0;
  }

  .section4 .heading h3 {
    font-size: 22px;
  }

  .section4 .heading h1 {
    font-size: 28px;
  }

  .section4 .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 98%;
  }

  .section4 .cards .card {
    margin: 30px auto;
    width: calc(48%);
  }

  .section4 .cards .card .face {
    height: 140px;
  }

  .section4 .cards .card .icon h1 {
    font-size: 16px;
  }

  .section4 .cards .card .face.face1 {
    transform: translateY(0);
  }

  .section4 .cards .card .face.face2 {
    transform: translateY(0px);
    padding: 5px;
  }

  .section4 .cards .card:hover .face.face2 {
    transform: translateY(0);
  }

  .section4 .cards .card:hover .face.face1 {
    transform: translateY(0px);
  }

  .section4 .cards .card .face.face1 h1 {
    display: none;
  }

  .section4 .cards .card .face.face2 .content h3 {
    font-size: 16px;
    color: #000000;
  }

  .section4 .cards .card .face.face2 .content p {
    color: #000000;
  }

  .section4 .controls {
    position: absolute;
    top: 100%;
    text-align: center;
    justify-content: center;
  }

  .section4 .controls.one {
    left: 35%;
  }

  .section4 .controls.two {
    right: 35%;
  }



  .section4 .cards .card .icon img {
    width: 120px;
    top: 13%;
    left: 50%;
  }

  .section4 .cards .card:hover .face.face1 img {
    width: 140px;
  }


}

@media (max-width: 768px) {
  .section5 {
    width: 100%;
    padding: 20px 0;
    height: auto;
  }

  .section5 .back .heading {
    padding: 10px 0;
  }

  .section5 .back .heading h3 {
    font-size: 22px;
  }

  .section5 .back .heading h1 {
    font-size: 30px;
  }

  .section5 .back .cards {
    flex-direction: column;
  }

  .section5 .back .cards .card {
    margin: 10px auto;
    width: calc(80% - 10px);
  }

  .section5 .back .cards .card video {
    padding: 20px 0;
  }


}

@media (max-width: 768px) {
  .section6 {
    display: flex;
    flex-direction: column;
    width: 90%;
    padding: 30px 0;
    margin: 0 auto;
  }

  .section6 .left {
    width: 100%;
    margin: 30px 0;
  }

  .section6 .right {
    width: 100%;
  }

  .section6 .right .video-container {
    position: relative;
    width: 100%;
  }

  .section6 .right .video-container .play-icon {
    display: none;
  }

  .section6 .right .video-container .close-icon {
    display: none;
  }

  .section6 .right .video-container #video {
    display: block;
  }
}

@media (max-width: 768px) {
  .section7 {
    width: 100%;
    padding: 30px 0;
    height: auto;
  }

  .section7 .heading h3 {
    font-size: 24px;
  }

  .section7 .heading h1 {
    font-size: 30px;
  }

  .section7 .testimonial-slider {
    position: relative;
    max-width: 90%;
    margin: 20px auto;
    height: 50vh;
  }

  .section7 .testimonial-slider .card-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .section7 .testimonial-slider .card-container .card {
    flex: 0 0 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-right: 0px;
    height: 50vh;
    text-align: center;
  }

  .section7 .testimonial-slider .card-container .card img {
    height: 100px;
  }

  .section7 .testimonial-slider .card-container .card h3 {
    font-size: 22px;
    margin: 15px 0;
  }

  .section7 .testimonial-slider .card-container .card p {
    color: #e6e6e6;
  }

  .section7 .testimonial-slider #prevBtn7 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
  }

  .section7 .testimonial-slider #nextBtn7 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .section8 {
    background-color: #000000;
    padding: 20px 10px;
  }

  .stat-container {
    width: 100%;
    margin: 20px auto;
  }

  .stat {
    flex-basis: calc(50% - 10px);
    width: 300px;
    padding: 20px 5px;
    margin: 10px 0;
  }

  .stat:hover {
    transform: scale(1.02);
  }

  .label {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .section9 {
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
    margin: 20px auto;
    width: 90%;
  }

  .section9 .left {
    width: 100%;
    padding: 20px;
  }

  .section9 .left h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .section9 .left .contact-section {
    margin-bottom: 20px;
  }

  .section9 .left h4 {
    font-size: 18px;
    margin-top: 10px;
  }

  .section9 .right {
    width: 100%;
    padding: 20px;
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    height: auto;
  }

  .section9 .right h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .section9 .right h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .section9 .right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .input-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px 10px;
  }

  .section9 .right form .input {
    display: flex;
    flex-direction: column;
  }

  .section9 .right form label {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
  }

  .section9 .right form input[type="text"],
  .section9 .right form input[type="email"],
  .section9 .right form input[type="tel"],
  .section9 .right form textarea {
    padding: 6px;
    min-width: 240px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }

  .section9 .right form .error-message {
    color: #e74c3c;
    font-size: 14px;
  }

  .section9 .right form button[type="submit"] {
    background-color: #2a2a2a;
    color: #fff;
    font-size: 18px;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .section9 .right form button[type="submit"]:hover {
    background-color: #000000;
  }

  .section9 .confirmation {
    display: none;
    background-color: #4caf50;
    color: white;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
  }

  .section9 .confirmation span#confirm-name {
    font-weight: bold;
    text-decoration: underline;
  }
}

/* ------------------------------
   SLIDING TEXT LOOP
------------------------------ */
.footer-slider {
  width: 100%;
  overflow: hidden;
  background: #030427;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-slider .slider-track {
  display: flex;
  width: max-content;
  animation: slide-left 18s linear infinite;
}

.footer-slider span {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  padding-right: 50px;
  white-space: nowrap;
}

@keyframes slide-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ------------------------------
   FOOTER STYLE
------------------------------ */
.footer {
  background: #030427;
  padding: 60px 40px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.footer_nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer_nav h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #fff;
}

.footer_nav p,
.footer_nav a {
  font-size: 0.95rem;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
}

.footer_nav a:hover {
  color: #f3862d;
}

.nav_con img {
  width: 150px;
  margin-bottom: 15px;
  cursor: pointer;
}


/* ------------------------------
   LEGAL SECTION
------------------------------ */
.legal {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  
}

.legal p {
  font-size: 0.9rem;
}

.legal .links a {
  margin-left: 15px;
  font-size: 1.3rem;
  transition: .3s ease;
}

.legal .links a:hover {
  transform: scale(1.2);
}


/* ------------------------------
   FOOTER BACKGROUND ANIMATED SLIDER
------------------------------ */
.footer {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

/* Background container */
.footer-bg-slider {
  position: absolute;
  inset: 0;
  width: 300%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0.06; /* watermark effect */
  pointer-events: none;
  z-index: 1;
}

/* Logo track animation */
.footer-bg-track {
  display: flex;
  align-items: center;
  gap: 200px; /* spacing between big logos */
  animation: slideLogos 26s linear infinite;
}

/* BIG LOGO */
.footer-logo {
  height: 850px;   /* BIG logo */
  width: auto;
  opacity: 23;
  filter: brightness(300%);
  user-select: none;
}

/* PERFECT LOOP */
@keyframes slideLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Footer content stays visible */
.footer_nav,
.legal {
  position: relative;
  z-index: 1;
   padding-right: 20px !important;
  
  
}

/* -------------------------
      RESPONSIVE 
--------------------------- */

@media (max-width: 1024px) {
  .footer-logo {
    height: 550px;
  }
  .footer-bg-track {
    gap: 140px;
  }
}

@media (max-width: 768px) {
  .footer-logo {
    height: 450px;
  }
  .footer-bg-slider {
    opacity: 0.08;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    height: 390px;
  }
  .footer-bg-slider {
    opacity: 0.1;
  }
}

/* FIX FOOTER BOXES ON MOBILE */
@media (max-width: 768px) {

  .footer_nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }

  .nav_item,
  .nav_con {
    width: 100%;
    max-width: 100%;
  }

  .nav_item ul,
  .nav_con a,
  .nav_con p {
    word-wrap: break-word;
  }
}

@media (max-width: 480px) {

  .footer_nav {
    padding: 0 10px; /* Prevent content from touching edges */
  }

  .nav_item,
  .nav_con {
    width: 100%;
  }

  .nav_item h2,
  .nav_con h2 {
    font-size: 1.2rem;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: white;
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 20px #25d366;
  z-index: 9999;
  animation: bounce 2s infinite, glow 3s infinite alternate;
  transition: transform 0.3s ease;

  text-decoration: none !important; /* 🔥 remove underline */
}



.whatsapp-float:hover {
  transform: scale(1.2) rotate(10deg);
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Glow animation */
@keyframes glow {
  0% { box-shadow: 0 0 10px #25d366; }
  100% { box-shadow: 0 0 25px #25d366, 0 0 40px #25d366; }
}

/* Mobile Fix */
@media (max-width: 480px) {
  .whatsapp-float {
    font-size: 28px;
    padding: 12px 10px;
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;  /* ← also updated for mobile */
  }
}

