/* font awesome cdn link  */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");

/* google fonts cdn link  */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Orbitron:wght@400;500;600;700&display=swap");

:root {
  --main-color: #00a8e8;
  --second-color: #003459;
  --bg-color: #00171f;
  --black: #000;
  --white: #fff;
  --light-white: rgba(255, 255, 255, 0.8);
  --box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.4);
  --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  --primary-font: "Roboto", sans-serif;
  --special-font: "Orbitron", sans-serif;
  --gradient: linear-gradient(135deg, var(--second-color), var(--main-color));
}

* {
  font-family: var(--primary-font);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.3s ease-out;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 8rem;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color);
  color: var(--light-white);
  line-height: 1.6;
}

.btn {
  background: var(--gradient);
  border: none;
  color: var(--white);
  padding: 1.2rem 3.5rem;
  border-radius: 5px;
  font-family: var(--special-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.title {
  margin-top: 5rem;
  margin-bottom: 4rem;
  text-align: center;
}

.title span {
  font-size: 2.2rem;
  color: var(--main-color);
  font-weight: 500;
  letter-spacing: 1px;
}

.title h3 {
  font-family: var(--special-font);
  font-size: 4.5rem;
  color: var(--white);
  text-shadow: var(--text-shadow);
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  background: rgba(26, 15, 46, 0.95);
}

.header.active {
  background: rgba(26, 15, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .flex {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .flex .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.header .flex .logo .logo-text {
  font-family: var(--special-font);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--white) 0%, var(--main-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.header .flex .logo i {
  font-size: 2.4rem;
  color: var(--main-color);
  transition: all 0.3s ease;
}

.header .flex .logo:hover .logo-text {
  background: linear-gradient(135deg, var(--main-color) 0%, var(--white) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(0, 168, 232, 0.3);
}

.header .flex .logo:hover i {
  transform: rotate(360deg);
  color: var(--white);
}

.header .flex .logo img {
  display: none;
}

.header .flex .navbar a {
  font-size: 1.8rem;
  margin-left: 3rem;
  color: var(--white);
  font-weight: 500;
  position: relative;
}

.header .flex .navbar a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--main-color);
  transition: width 0.3s ease;
}

.header .flex .navbar a:hover::after {
  width: 100%;
}

.header .flex .navbar a:hover {
  color: var(--main-color);
}

#menu-btn {
  display: none;
  cursor: pointer;
  font-size: 2.5rem;
  color: var(--white);
}

#menu-btn.fa-times {
  transform: rotate(180deg);
}

.home {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12rem;
  margin-bottom: 3rem;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 23, 31, 0.443), rgba(0, 23, 31, 0.575));
  z-index: 1;
}

.home .content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.home .image {
  position: absolute;
  z-index: -1;
}

.home .image img {
  width: 100%;
  animation: 2s var(--shake-animation) infinite;
}

.home .content .highlight-text {
  font-size: 2.4rem;
  color: var(--main-color);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  animation: fadeInDown 1s ease;
}

.home .content h3 {
  font-family: var(--special-font);
  font-size: 6rem;
  color: var(--white);
  text-shadow: var(--text-shadow);
  margin-bottom: 2rem;
  animation: fadeIn 1s ease 0.5s both;
}

.home .content p {
  font-size: 2.2rem;
  color: var(--light-white);
  margin-bottom: 3rem;
  animation: fadeIn 1s ease 1s both;
}

.home .content .btn {
  animation: fadeIn 1s ease 1.5s both;
  padding: 1.5rem 4rem;
}

.wave-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.wave-animation svg {
  width: 100%;
  height: auto;
  animation: wave 8s linear infinite;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-container {
  position: relative;
  overflow: hidden;
}

.info-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(var(--second-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--second-color) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.05;
  pointer-events: none;
}

.info-container .title {
  font-size: 1.6rem;
  color: var(--light-white);
}

.info-container .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-container .box-container .box {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1rem;
  background: rgba(0, 52, 89, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 168, 232, 0.1);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.info-container .box-container .box:hover {
  border-color: var(--main-color);
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 168, 232, 0.2);
}

.info-container .box-container .box img {
  height: 10rem;
  margin-bottom: 2rem;
  transition: transform 0.4s ease;
}

.info-container .box-container .box:hover img {
  transform: scale(1.1);
}

.info-container .box-container .box h3 {
  font-size: 2.4rem;
  color: var(--main-color);
  margin-bottom: 1rem;
  font-family: var(--special-font);
}

.info-container .box-container .box:nth-child(1) img {
  animation: var(--bounce-animation) infinite;
}

.info-container .box-container .box:nth-child(2) img {
  animation: var(--jello-animation) infinite;
}

.info-container .box-container .box:nth-child(3) img {
  animation: var(--pulse-animation) infinite;
}

.info-container .box-container .box:nth-child(4) img {
  animation: var(--shake-animation) infinite;
}

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.about .row .image {
  flex: 1 1 40rem;
}

.about .row .image img {
  width: 100%;
  animation: var(--float-animation);
}

.about .row .content {
  flex: 1 1 40rem;
  text-align: center;
}

.about .row .content span {
  font-size: 2rem;
  color: var(--main-color);
}

.about .row .content h3 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.about .row .content p {
  line-height: 1.8;
  padding: 0.5rem 0;
  color: var(--light-white);
  font-size: 2rem;
}

.events .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 35rem);
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}

.events .box-container .box {
  border-radius: 2rem;
  text-align: center;
  padding: 2rem;
  background-color: var(--second-color);
}

.events .box-container .box:nth-child(odd) {
  background-color: var(--main-color);
}

.events .box-container .box:nth-child(odd) h3 {
  color: var(--black);
}

.events .box-container .box:nth-child(odd) p {
  color: var(--black);
}

.events .box-container .box img {
  height: 20rem;
  margin-bottom: 1rem;
}

.events .box-container .box:hover img {
  animation: var(--shake-animation);
}

.events .box-container .box h3 {
  font-size: 2rem;
  color: var(--white);
  margin: 1rem 0;
}

.events .box-container .box p {
  font-size: 1.6rem;
  color: var(--light-white);
  line-height: 1.8;
}

.countdown {
  background: var(--black);
}

.countdown section {
  position: relative;
  z-index: 0;
}

.countdown .image {
  position: absolute;
  top: 5rem;
  left: 0;
  right: 0;
  z-index: -1;
}

.countdown .image img {
  width: 100%;
  animation: var(--float-animation);
}

.countdown .counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.countdown .counter .box {
  text-align: center;
  width: 15rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: rgba(155, 155, 155, 0.1);
  backdrop-filter: blur(1rem);
}

.countdown .counter .box h3 {
  font-size: 4.5rem;
  color: var(--main-color);
  margin-bottom: 1rem;
}

.countdown .counter .box span {
  color: var(--light-white);
  font-size: 1.8rem;
}

.tickets {
  padding: 8rem 2rem;
  background: var(--bg-color);
}

.tickets .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tickets .box-container .box {
  padding: 4rem 3rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.tickets .box-container .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 78, 80, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s;
}

.tickets .box-container .box:hover::before {
  transform: translateX(100%);
}

.tickets .box-container .box h3 {
  font-size: 3rem;
  color: var(--white);
  font-family: var(--special-font);
  margin-bottom: 2rem;
}

.tickets .box-container .box .price {
  font-size: 5rem;
  color: var(--main-color);
  font-weight: 600;
  margin: 2rem 0;
}

.tickets .box-container .box .price span {
  font-size: 2.5rem;
  font-weight: 500;
}

.tickets .box-container .box p {
  font-size: 1.6rem;
  color: var(--light-white);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.team .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 27rem);
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}

.team .box-container .box {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.team .box-container .box .image {
  height: 35rem;
  overflow: hidden;
}

.team .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.team .box-container .box:hover .image img {
  transform: scale(1.1);
}

.team .box-container .box .share {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2rem);
  position: absolute;
  top: 0;
  right: -10rem;
  height: 35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  padding: 1.5rem;
  z-index: 1;
}

.team .box-container .box:hover .share {
  right: -0.1rem;
}

.team .box-container .box .share a {
  font-size: 2.5rem;
  color: var(--white);
  margin: 1rem 0;
}

.team .box-container .box .share a:hover {
  color: var(--main-color);
  animation: var(--jello-animation);
}

.team .box-container .box .info {
  background-color: var(--black);
  padding: 1.5rem 1rem;
  text-align: center;
}

.team .box-container .box .info h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.team .box-container .box:hover .info h3 {
  animation: var(--shake-animation);
}

.team .box-container .box .info span {
  color: var(--main-color);
  font-size: 1.6rem;
}

.contact {
  padding: 8rem 2rem;
  background: linear-gradient(to top, var(--bg-color), var(--second-color));
}

.contact .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact .row .content {
  text-align: center;
}

.contact .row .content h3 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-family: var(--special-font);
}

.contact .row .content p {
  font-size: 1.8rem;
  color: var(--light-white);
  margin: 1rem 0;
}

.contact .row form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 2rem;
}

.contact .row form .input {
  width: 100%;
  margin: 1rem 0;
  padding: 1.4rem;
  background: rgba(0, 52, 89, 0.1);
  border-radius: 0.5rem;
  font-size: 1.6rem;
  color: var(--white);
  border: 1px solid rgba(0, 168, 232, 0.2);
  transition: all 0.3s ease;
}

.contact .row form .input::placeholder {
  color: var(--light-white);
}

.contact .row form textarea {
  height: 15rem;
  resize: none;
}

.footer {
  background: var(--second-color);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--light-white);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo .logo {
  font-size: 2.5rem;
  color: var(--main-color);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--light-white);
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--main-color);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  font-size: 2rem;
  color: var(--light-white);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--main-color);
}

.footer-credit {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.footer-credit span {
  color: var(--main-color);
}

.footer .image img {
  width: 100%;
  margin-bottom: -0.5rem;
}

/* media queries  */

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}

@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }

  .header .flex .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--bg-color);
    border-top: var(--border);
    padding: 1rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.2s linear;
  }

  .header .flex .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .header .flex .navbar a {
    display: block;
    padding: 1rem 2rem;
    margin: 0.5rem 0;
  }

  .home .content h3 {
    font-size: 4.5rem;
  }

  .home .content p {
    font-size: 1.8rem;
  }

  .home {
    padding: 6rem 1rem;
  }

  .video-background video {
    height: 100vh;
    width: auto;
    min-width: 100%;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .home .content h3 {
    font-size: 3.5rem;
  }

  .home {
    padding: 4rem 1rem;
  }
}

/* Additional Styles */
.highlight-text {
  font-size: 2.4rem;
  color: var(--main-color);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  animation: fadeInDown 1s ease;
}

.wave-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-animation svg {
  animation: wave 8s linear infinite;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature i {
  font-size: 2rem;
  color: var(--main-color);
}

.feature span {
  font-size: 1.6rem;
  color: var(--light-white);
}

.features-list {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.features-list li {
  font-size: 1.6rem;
  color: var(--light-white);
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.features-list li i {
  color: var(--main-color);
}

.contact-info {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.info-item i {
  font-size: 2.5rem;
  color: var(--main-color);
}

.info-item p {
  font-size: 1.8rem;
  color: var(--light-white);
}

.info-item a {
  color: var(--light-white);
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--main-color);
}

.contact-form {
  position: relative;
  z-index: 1;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--main-color), transparent);
  border-radius: 2.5rem;
  z-index: -1;
  opacity: 0.1;
}

.btn i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(5px);
}

/* Animations for boxes */
.box {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced hover effects */
.box-container .box {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.box-container .box:hover {
  transform: translateY(-10px) rotateX(5deg);
}

.footer .share a {
  position: relative;
  overflow: hidden;
}

.footer .share a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%) rotate(45deg);
  transition: 0.5s;
}

.footer .share a:hover::before {
  transform: translateX(100%) rotate(45deg);
}

/* Add security-themed animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 168, 232, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 168, 232, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 168, 232, 0);
  }
}

.feature i {
  animation: pulse 2s infinite;
}

/* Update form styles */
.contact-form .input {
  background: rgba(0, 52, 89, 0.1);
  border: 1px solid rgba(0, 168, 232, 0.2);
  transition: all 0.3s ease;
}

.contact-form .input:focus {
  border-color: var(--main-color);
  background: rgba(0, 52, 89, 0.2);
}

/* Add tech scan line effect */
.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 3rem;
  background: rgba(0, 52, 89, 0.1);
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 168, 232, 0.1);
  max-width: 400px;
  margin: 0 auto;
}

.security-grid .grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: rgba(0, 168, 232, 0.05);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.security-grid .grid-item i {
  font-size: 4rem;
  color: var(--main-color);
  transition: all 0.3s ease;
}

.security-grid .grid-item:hover {
  background: var(--gradient);
  transform: translateY(-5px);
}

.security-grid .grid-item:hover i {
  color: var(--white);
  transform: scale(1.1);
}

/* Add animation for grid items */
.security-grid .grid-item:nth-child(1) {
  animation: fadeIn 0.5s ease-out 0.1s both;
}

.security-grid .grid-item:nth-child(2) {
  animation: fadeIn 0.5s ease-out 0.2s both;
}

.security-grid .grid-item:nth-child(3) {
  animation: fadeIn 0.5s ease-out 0.3s both;
}

.security-grid .grid-item:nth-child(4) {
  animation: fadeIn 0.5s ease-out 0.4s both;
}

/* Add glowing effect */
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(0, 168, 232, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 168, 232, 0.4);
  }
}

.security-grid .grid-item {
  animation: glow 2s infinite;
}

/* Update about section layout */
.about .row {
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.about .row .image {
  flex: 1 1 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .security-grid {
    padding: 2rem;
    gap: 2rem;
  }

  .security-grid .grid-item {
    padding: 2rem;
  }

  .security-grid .grid-item i {
    font-size: 3rem;
  }
}

/* Section spacing */
section {
  padding: 6rem 2rem;
}

.info-container {
  padding: 6rem 2rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.about {
  padding: 6rem 2rem;
  margin: 3rem 0;
  background: rgba(0, 52, 89, 0.05);
}

.tickets {
  padding: 6rem 2rem;
  margin: 3rem 0;
  background: var(--bg-color);
}

.contact {
  padding: 6rem 2rem;
  margin: 3rem 0;
  background: linear-gradient(to top, var(--bg-color), var(--second-color));
}

/* Add divider between sections */
.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--main-color),
    transparent
  );
  margin: 1rem auto;
  width: 80%;
  opacity: 0.1;
}

/* Adjust home section */
.home {
  min-height: 100vh;
  padding-top: 12rem;
  margin-bottom: 3rem;
}

/* Adjust container max-width */
.box-container,
.row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* About Page Styles */
.about-page {
  padding-top: 8rem;
  padding: 5rem 2rem;
  background: var(--bg-color);
}

.about-page .content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-page .company-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.about-page .company-intro h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-page .company-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--light-white);
  max-width: 800px;
  margin: 0 auto;
}

.about-page .mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-page .mission-vision > div {
  background: rgba(0, 52, 89, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 168, 232, 0.1);
}

.about-page .mission-vision > div:hover {
  transform: translateY(-5px);
  border-color: var(--main-color);
}

.about-page .mission-vision i {
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 1rem;
}

.about-page .mission-vision h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-page .mission-vision p {
  color: var(--light-white);
  line-height: 1.7;
}

.about-page .core-values {
  text-align: center;
  margin-bottom: 4rem;
}

.about-page .core-values h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-page .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-page .value-item {
  background: rgba(0, 52, 89, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 168, 232, 0.1);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.about-page .value-item:hover {
  transform: translateY(-5px);
  border-color: var(--main-color);
}

.about-page .value-item i {
  font-size: 2.5rem;
  color: var(--main-color);
  margin-bottom: 1rem;
}

.about-page .value-item h4 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-page .value-item p {
  color: var(--light-white);
}

.about-page .team-section {
  text-align: center;
}

.about-page .team-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-page .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-page .team-member {
  background: rgba(0, 52, 89, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 168, 232, 0.1);
  transition: transform 0.3s ease;
}

.about-page .team-member:hover {
  transform: translateY(-5px);
  border-color: var(--main-color);
}

.about-page .member-image {
  width: 120px;
  height: 120px;
  background: var(--main-color);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page .member-image i {
  font-size: 3rem;
  color: var(--white);
}

.about-page .team-member h4 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-page .team-member p {
  color: var(--light-white);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-page {
    padding: 3rem 1rem;
  }

  .about-page .company-intro h2,
  .about-page .core-values h2,
  .about-page .team-section h2 {
    font-size: 2rem;
  }

  .about-page .mission-vision > div,
  .about-page .value-item,
  .about-page .team-member {
    padding: 1.5rem;
  }
}

.home-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  width: 100%;
}

.video-container {
  flex: 0 0 40%;
  margin-right: auto;
}

.video-container video {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.content {
  flex: 1;
  text-align: left;
}

@media (max-width: 768px) {
  .home-content {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
  }

  .content {
    order: 1; /* Text first */
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }

  .video-container {
    order: 2; /* Video second */
    width: 100%;
  }

  .video-container video {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .home-content {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .content {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }

  .video-container {
    order: 2;
    width: 100%;
  }

  .video-container video {
    max-width: 100%;
  }
}
