*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    padding-top: 0;
    margin: 0;
}

#main{
    position: relative;
    overflow: hidden;
    margin-top: 0;
}
@font-face {
    font-family: a;
    src: url(jost-variable.ttf);
}
@font-face {
    font-family: b;
    src: url(KFOlCnqEu92Fr1MmEU9fBBc4\ \(1\).ttf);
}
@font-face {
    font-family: c;
    src: url(KFOmCnqEu92Fr1Mu4mxK\ \(1\).ttf);
}

#page1{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #091825;
    margin-top: 0;
    padding-top: 0;
}

#page1>video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#page1>nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px;
    position: absolute;
    height: 10vh;
    width: 100vw;

}

#page1>nav>img{
    width: 15%;
    margin-top: 1%;
    padding: 0px 10px;
    filter: drop-shadow(0 0 -4px rgba(246, 244, 247, 0.938));
}

#right-nav>button{
    padding:10px ;
    border-radius: 60px;
    border: px white;
    background-color: white;
    color: black;
    font-family: a;
    font-size: 18px;
}

#bottom-page1{
    position: absolute;
    height: 35vh;
    width: 50vw;
    bottom: 5%;
    left: 5%;
}

#bottom-page1>h1{
    font-family: a;
    font-size: 5vw;
    font-weight: 100;
    line-height: 1;
    color: white;
}

#bottom-page1-inner{
    position: absolute;
    bottom: 0%;
    height: 35%;
    width: 100%;
    color: white;
    
}

#bottom-page1-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: a;
}

#bottom-page1-inner>button{
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: white;
    color: black;
    font-family: b;
    font-size: 16px;
}

#bottom-page-inner>h4{
    font-size: 1.3vw;
    font-weight: 100;
    color: white;
}

#page2{
    display: flex;
    align-items: start;
    font-family: a;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    position: relative;
    padding: 0vw 8vw;
    color: #fff;
    background-color: #091825;
}
#page2>h2{
    margin-bottom: 3vw;
    font-weight: 100;
}
#page2>h1{
    font-weight: 100;
    line-height: 1.3;
    width: 90%;
    font-size: 3vw;
    color: #dadada69;
}

#page3{
    height: 100vh;
    width: 100vw;
    position: relative;
    background-color: #091825;
}

#page3{
    display: flex;
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #091825;
}
.left3{
    height: 100%;
    width: 40%;
    position: relative;
    font-family: a;
}
.left3>h1{
    position: absolute;
    top: 40%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 5vw;
    font-weight: 100;
    color: #fff;
    line-height: 1;
}
.right3{
    height: 100%;
    width: 60%;
    position: relative;
}
.right3-center>video{
    height: 60%;
    width: 85%;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-size: cover;
    left: 5%;
}

#page4{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #091825;
}
.right4{
    height: 100%;
    width: 60%;
    position: relative;
    left: 40%;
}
.right4-inner{
    display: flex;
    align-items: start;
    flex-direction: column;
    height: 33.3%;
    width: 100%;
    font-family: a;
    color: #fff;
    padding: 2vw;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.right4-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(114, 161, 222, 0.05), rgba(114, 161, 222, 0.02));
    opacity: 0;
    transition: opacity 0.4s;
}

.clickable-card {
    cursor: pointer;
}

.clickable-card:hover {
    background: rgba(114, 161, 222, 0.08);
    transform: translateX(10px);
    box-shadow: 0 8px 32px rgba(114, 161, 222, 0.2);
    border-left: 4px solid #72a1de;
}

.clickable-card:hover::before {
    opacity: 1;
}

.clickable-card:hover h1 {
    color: #72a1de;
}

.clickable-card:active {
    transform: translateX(8px) scale(0.98);
}

.right4-inner>h1{
    font-size: 2vw;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}
.right4-inner>p{
    margin-top: 2vw;
    font-size: 1.3vw;
    width: 80%;
    position: relative;
    z-index: 1;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    
    #bottom-page1 {
        width: 90vw;
        left: 5%;
        bottom: 10%;
    }
    
    #bottom-page1>h1 {
        font-size: 8vw;
    }
    
    #page2 {
        padding: 5vw;
        min-height: 100vh;
        height: auto;
    }
    
    #page2>h2 {
        font-size: 5vw;
        margin-bottom: 5vw;
    }
    
    #page2>h1 {
        font-size: 4.5vw;
        width: 100%;
    }
    
    #page3 {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .left3 {
        width: 100%;
        height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .left3>h1 {
        position: static;
        transform: none;
        font-size: 8vw;
        text-align: center;
    }
    
    .right3 {
        width: 100%;
        height: 70vh;
    }
    
    .right3-center>video {
        width: 90%;
        height: 50%;
        left: 5%;
    }
    
    #page4 {
        height: auto;
        min-height: 100vh;
        padding: 5vw 0;
    }
    
    .right4 {
        width: 100%;
        left: 0;
    }
    
    .right4-inner {
        padding: 6vw;
        height: auto;
        min-height: 33.3vh;
    }
    
    .right4-inner>h1 {
        font-size: 5vw;
    }
    
    .right4-inner>p {
        font-size: 3.5vw;
        width: 100%;
        margin-top: 3vw;
    }
    
    .clickable-card:hover {
        transform: translateX(5px);
    }
}

@media screen and (max-width: 480px) {
    #bottom-page1>h1 {
        font-size: 10vw;
    }
    
    #page2>h2 {
        font-size: 6vw;
    }
    
    #page2>h1 {
        font-size: 5vw;
        line-height: 1.4;
    }
    
    .left3>h1 {
        font-size: 10vw;
    }
    
    .right3-center>video {
        width: 95%;
        height: 40%;
    }
    
    .right4-inner {
        padding: 8vw;
    }
    
    .right4-inner>h1 {
        font-size: 6vw;
    }
    
    .right4-inner>p {
        font-size: 4vw;
        line-height: 1.6;
    }
}

/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(210, 25%, 97%);
  --text-color: hsl(0, 0%, 99%);
  
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

/* Header styles for inner pages */
.inner-page .header {
  background-color: rgba(9, 24, 37, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  transition: background-color 0.4s, box-shadow 0.4s;
}

/* Header with background on scroll */
.header.scrolled, 
.inner-page .header.scrolled {
  background-color: rgba(9, 24, 37, 0.98);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}
.nav__logo i {
  font-size: 1.25rem;
}
.nav__logo:hover {
  color: var(--first-color);
}
@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}

.container5{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    background-color: #001f7c38;
}


.back-vid{
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
    mix-blend-mode:overlay;
}

.hero{
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
}

.hero-info{
    position: absolute;
    left: 5%;
}

.hero-info .hero-info-title{
    color: #72a1de;
    padding: 8px 5px;
    border-radius: 50px;
    border: 1px solid #72a1de94;
    width: 240px;
    background-color: #2200493d;
    box-shadow: 0 0 5px #72a1de84;
}

.hero-info h1{
    font-size: 60px;
    max-width: 600px;
    font-weight: 700;
    line-height: 70px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.hero-info p{
    max-width: 550px;
    line-height: 25px;
    margin-bottom: 40px;
    font-size: 20px;
}

.hero-info button{
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    border: 1px solid #72a1de81;
    background-color: #2200493d;
    box-shadow: 0 0 5px #72a1de81;
    cursor: pointer;
    transition: 0.3s;
}

.hero-info button:hover{
    box-shadow: 0 0 15px #72a1de81;
}

/*=============== FOOTER ===============*/
.enhanced-footer {
  background: linear-gradient(180deg, #091825 0%, #0a1d2e 100%);
  padding: 80px 0 0;
  color: #fff;
  font-family: a;
  position: relative;
  overflow: hidden;
}

.enhanced-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(114, 161, 222, 0.5), transparent);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 24px;
  filter: brightness(1.1);
}

.footer-description {
  color: rgba(218, 218, 218, 0.9);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 0.95rem;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(114, 161, 222, 0.08);
  border: 1.5px solid rgba(114, 161, 222, 0.25);
  border-radius: 50%;
  color: #72a1de;
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 161, 222, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover {
  background: #72a1de;
  color: #091825;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(114, 161, 222, 0.4);
  border-color: #72a1de;
}

.footer-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #72a1de, transparent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  position: relative;
  padding-left: 0;
}

.footer-links a {
  color: rgba(218, 218, 218, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 300;
  position: relative;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #72a1de;
}

.footer-links a:hover {
  color: #72a1de;
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 12px;
  color: rgba(218, 218, 218, 0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: color 0.3s;
}

.contact-item:hover {
  color: #fff;
}

.contact-item i {
  color: #72a1de;
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.contact-item:hover i {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(114, 161, 222, 0.15);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copyright p {
  color: rgba(218, 218, 218, 0.7);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 300;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(218, 218, 218, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  position: relative;
  font-weight: 300;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #72a1de;
  transition: width 0.3s;
}

.footer-legal a:hover {
  color: #72a1de;
}

.footer-legal a:hover::after {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-container {
    padding: 0 30px;
  }
}

@media screen and (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }

  .enhanced-footer {
    padding: 40px 0 0;
    background: linear-gradient(180deg, #091825 0%, #0a1d2e 100%);
    position: relative;
  }

  .enhanced-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(114, 161, 222, 0.3), transparent);
  }

  .footer-container {
    padding: 0 24px;
    max-width: 100%;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(114, 161, 222, 0.1);
  }

  .footer-logo {
    width: 150px;
    margin: 0 auto 24px;
    display: block;
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(114, 161, 222, 0.3));
  }

  .footer-description {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.7;
    color: rgba(218, 218, 218, 0.85);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .footer-section {
    text-align: left;
    padding: 16px 0;
    border-bottom: 1px solid rgba(114, 161, 222, 0.08);
    position: relative;
    transition: all 0.3s ease;
  }

  .footer-section:last-child {
    border-bottom: none;
  }

  .footer-section:hover {
    background: rgba(114, 161, 222, 0.02);
    padding-left: 16px;
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 8px;
  }

  .footer-section h3 {
    font-size: 1.3rem;
    text-align: left;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
  }

  .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #72a1de, transparent);
    border-radius: 1px;
  }

  .footer-links {
    align-items: flex-start;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    position: relative;
    padding-left: 20px;
  }

  .footer-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #72a1de;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .footer-links a {
    font-size: 0.95rem;
    color: rgba(218, 218, 218, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 4px 0;
    font-weight: 400;
  }

  .footer-links a:hover {
    color: #72a1de;
    padding-left: 8px;
    transform: translateX(4px);
  }

  .footer-links li:hover::before {
    opacity: 1;
    left: 8px;
  }

  .footer-contact {
    gap: 20px;
    margin-top: 8px;
  }

  .contact-item {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    align-items: flex-start;
    padding: 10px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .contact-item:hover {
    background: rgba(114, 161, 222, 0.05);
    padding-left: 12px;
    margin-left: -12px;
  }

  .contact-item i {
    color: #72a1de;
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .contact-item:hover i {
    transform: scale(1.1);
    color: #fff;
  }

  .contact-item span {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(218, 218, 218, 0.9);
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 24px 0;
    gap: 20px;
    border-top: 1px solid rgba(114, 161, 222, 0.15);
    margin-top: 20px;
  }

  .footer-copyright p {
    font-size: 0.9rem;
    color: rgba(218, 218, 218, 0.7);
    margin: 0;
    font-weight: 300;
  }

  .footer-legal {
    justify-content: center;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-legal a {
    font-size: 0.85rem;
    color: rgba(218, 218, 218, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    font-weight: 300;
    padding: 4px 8px;
    border-radius: 4px;
  }

  .footer-legal a:hover {
    color: #72a1de;
    background: rgba(114, 161, 222, 0.1);
  }
}

@media screen and (max-width: 480px) {
  .enhanced-footer {
    padding: 35px 0 0;
  }

  .footer-content {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-logo {
    width: 130px;
  }

  .footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
  }

  .footer-section {
    padding: 16px 0;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }

  .footer-links {
    gap: 14px;
  }

  .footer-links li {
    padding-left: 18px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-contact {
    gap: 20px;
  }

  .contact-item {
    gap: 14px;
    padding: 10px 0;
  }

  .contact-item i {
    font-size: 1.3rem;
  }

  .contact-item span {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .footer-bottom {
    padding: 20px 0;
    gap: 16px;
  }

/*=============== SCROLL TO TOP ===============*/
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #72a1de, #5a8bc7);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(114, 161, 222, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #5a8bc7, #4a7bb7);
  transform: translateY(-3px) scale(1.05);
}

.scroll-to-top:active {
  transform: translateY(-1px) scale(0.98);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide scroll to top button on larger screens where it's not needed */
@media screen and (min-width: 768px) {
  .scroll-to-top {
    display: none;
  }
}
