/* Reset container styles */
.container,
.site-content {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Fullscreen sections */
.page-section,
.content-wrapper {
    width: 100vw !important;
    height: 100vh !important;
    padding: 0;
    margin: 0;
}

/* Global styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
    width: 100%;
    height: 100%;
}

.full-page {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Top bar with currency ticker */
.top-bar {
    background-color: rgba(0, 0, 0, 0.94);
    text-align: center;
    color: white;
}

.currency-ticker {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  white-space: nowrap;
  height: 100%;
  padding: 10px;
}

.currency-ticker span {
  margin-right: 30px;
}

.ticker-row {
  display: flex;
  animation: scrollRow 60s linear infinite;
}

@keyframes scrollRow {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}


/* Background vector design */
.vector {
    position: absolute;
    background: radial-gradient(circle, #941B0C 0%, #220901 100%);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0% 65%);
    width: 100%;
    height: 100%;
}

header {
  height: 100vh;
  display: flex;
}

/* Header content */
.header-content {
    padding: 40px 20px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: flex-start;
    z-index: 9999;
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transform: translateY(60%);
}

.header-text h1 {
    font-size: 98px;
    font-weight: bold;
    margin: 0;
}

.header-text h2 {
    margin-top: 25px;
    font-size: 45px;
    color: #F6AA1D;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes breathing {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.header-logo {
  /* width: 150px; Adjust size as necessary */
  height: auto;
  margin-left: 20px;
  position: relative;
  z-index: 99999;
  animation: spin 6s linear 1, breathing 4s ease-in-out 3 6s;
}

/* Button styles */
.btn-learn {
    background-color: #BC3908;
    color: #fff;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.btn-learn:hover {
    background-color: #9f421c;
}

/* Mission section */
.mission {
    text-align: center;
    position: relative;
}

.mission h2 {
    font-size: 36px;
    color: #3a220b;
}

.mission p {
    font-size: 20px;
    margin: 20px auto;
    width: 70%;
    color: #621707;
}

/* Service and Contact buttons */
.buttons {
    margin-top: 30px;
}

.buttons button {
    color: #fff;
    padding: 12px 25px;
    margin: 0 10px;
    border: 1px solid #621707;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.buttons button:hover {
    background-color: #5a3920;
}

.btn-services {
    background-color: #621707;
}

.btn-contact {
    background-color: #F6AA1D;
}

/* Offer section */
.offer-section {
    text-align: center;
    padding: 50px 20px;
}

.section-title {
    font-size: 2em;
    color: #6b2e1c;
    margin-bottom: 30px;
}

/* Fix alignment issue */
.offer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 50px;
}

/* Offer cards */
.offer-card {
    color: white;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    max-width: calc(50% - 100px);
    flex: 1 1 calc(50% - 100px); 
}

.offer-card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 3em;
    margin-right: 20px;
    margin-left: 20px;
}

.offer-content {
    text-align: left;
}

.offer-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 1em;
}

/* Custom colors for specific cards */
.offer-card:nth-child(1),
.offer-card:nth-child(2) {
    background-color: #941B0C;
}

.offer-card:nth-child(3),
.offer-card:nth-child(4) {
    background-color: #BC3908;
}

.offer-card:nth-child(5),
.offer-card:nth-child(6) {
    background-color: #F6AA1D;
}

@media (max-width: 480px) {

  .offer-card h3 {
    font-size: 15px;
  }

  .offer-card p {
    font-size: 12px;
  }

  .header-logo {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .header-content {
    transform: translateY(-50%)!important;
  }

  .header-text h1 {
    font-size: 50px;
    font-weight: bold;
    margin: 0;
  }

  .header-text h2 {
    font-size: 25px;
  }

  .mission {
    margin-top: 40px;
    padding-bottom: 0px;
  }

  .video-container {
    margin-top: 0px;
    padding-top: 0px;
  }

   .mission h1 {
    font-size: 28px;
   }

   .mission h2 {
    font-size: 28px;
   }

   .mission p {
    font-size: 12px;
   }

   .vector {
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0% 45%);
   }

   .offer-section h1 {
    font-size: 28px!important;
   }
}

@media(max-width: 768px) {
  .offer-container {
    margin: 10px;
    display: flex;
    justify-content: center;
  }

  .header-logo {
    max-width: 50%;
    height: auto;
  }

  .offer-card {
      max-width: 100%;
      min-width: 100%;
  }

  .header-text h1 {
    font-size: 50px;
    font-weight: bold;
    margin: 0;
  }

  .header-text h2 {
    font-size: 25px;
  }

  .mission {
    margin-top: 150px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .offer-container {
    margin: 10px;
    display: flex;
    justify-content: center;
  }

  .header-logo {
    max-width: 50%;
    height: auto;
  }

  .offer-card {
      max-width: 100%;
      min-width: 100%;
  }

  .header-text h1 {
    font-size: 50px;
    font-weight: bold;
    margin: 0;
  }

  .header-text h2 {
    font-size: 25px;
  }

  .mission {
    margin-top: 250px;
    margin-bottom: 0px!important;
  }
}

/* Contact section */
.contact-section {
    margin-top: 30px;
    font-size: 1.2em;
}

.contact-section p {
    color: #6b2e1c;
}

.contact-link {
    color: #941B0C;
    text-decoration: none;
    font-weight: bold;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Video Section */
.video-container {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.video-container iframe {
    width: 80%;
    height: 400px;
    border: none;
}

.offer-section h1 {
  font-size: 58px;
  color: #621707;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #220901;
  padding: 10px 20px;
  color: #fff;
}

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

.logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.nav-title {
  font-size: 18px;
  font-weight: bold;
}

.nav-right a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 16px;
}

.nav-right a:hover {
  text-decoration: underline;
}
footer {
  text-align: center;
  font-size: 14px;
  color: white;
  background-color: #941B0C;
  padding-bottom: 10px;
  padding-top: 10px;
  position: relative;
  bottom: 0;
  width: 100%;
}