
@charset "utf-8";


/* Base Styles */
body {
  font-family: "Onest", sans-serif;
  color: #374151;
  background-color: white;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: 16px;
}

.container::before, .container::after {
    display: none;
}

.jw-state-idle .jw-controls {
  background: transparent !important;
}
.jw-controls-backdrop {
  background: transparent !important;
}
.jw-preview {
  background-color: #F6F6F6 !important;
}
.jw-display-icon-container .jw-icon.jw-icon-display {
    display: none !important;
}

/* Main Layout */
.main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-wraper {
  flex: 1;
  padding: 0;
  /* max-width: 1200px; */
  margin: 0 auto;
  width: 100%;
}

.container-fluid {
  padding: 0;
}

/* Video Section - Centered and Smaller */
.video-section-container {
  display: flex;
  justify-content: center;
  margin: 35px 0 40px 0;
  font-family: "Onest", sans-serif;
}

.video-container {
  background: white;
  border-radius: 8px;
  border: 1px solid #bbbec3;
  overflow: hidden;
  width: 800px;
  max-width: 100%;
      padding: 20px;
}

.video-title {
  font-family: "Onest", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 15px 0;
  padding: 20px 0 0;
  text-align: left;
}

.video-player {
  width: 100%;
  border: none;
}

.video-description p {
  font-size: 16px;
  color: #6B7280;
  margin: 0;
}

/* Description Accordion */
.description-accordion {
  margin: 15px 0 0 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.description-toggle {
  background: #F0F7FF;
  border: none;
  padding: 15px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  font-family: "Onest", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}

.description-toggle .arrow {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.description-toggle.expanded .arrow {
  transform: rotate(180deg);
}

.description-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.description-content.expanded {
  max-height: 500px;
}

.description-content p {
  padding: 15px;
  margin: 0;
  background: white;
  font-size: 14px;
  font-family: "Onest", sans-serif;
}

/* Footer Section - Light Grey */
.footer {
  background: #F0F7FF;
  color: #374151;
  padding: 40px 0;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-heading {
      font-family: "Onest", sans-serif;
    font-weight: 300 !important;
  font-size: 36px;
  margin: 0 0 30px 0;
  color: #1F2937;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.footer-column {
  padding: 0 15px;
}

.footer-column h3 {
    font-family: "Onest", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1F2937;
  padding-bottom: 10px;
  border-bottom: 1px solid #c9cacc;
}

.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-app {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.footer-app img {
  width: 30px;
  height: auto;
}

.footer-app a {
  color: #374151;
  text-decoration: none;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  transition: color 0.2s ease;
}

.footer-app a:hover {
  color: #2563EB;
  text-decoration: underline;
}

.footer-contact {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #c9cacc;
  display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact img {
   height: auto;
   max-width: 100%;
}

.footer-contact h3 {
    font-family: "Onest", sans-serif;
    font-size: 24px;
    color: #1e293b;
    display: inline-block;
    background: #8BCACE;
    padding: 5px 25px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.footer-contact p {
    font-family: "Onest", sans-serif;
  color: #000;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

.contact-btn button {
    font-family: "Onest", sans-serif;
    background: #EED157 !important;
    padding: 10px 30px !important;
    border-radius: 30px !important;
    color: #000;
    font-weight: 500;
    border: 0 none;
}
.contact-btn button:hover {
    background: #121a3b !important;
    color: #fff;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* Responsive Design */
@media (max-width: 900px) {
  .video-container {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
}

@media (max-width: 600px) {
  .footer-contact h3 {
    font-size: 20px;
  }

  .container-fluid {
    padding: 0 15px;
  }
  
  .video-title {
    font-size: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .footer {
    padding: 30px 0;
  }
  
  .footer-column {
    padding: 0;
  }
  
  .footer-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .footer-column h3 {
    font-size: 16px;
  }
  
  .footer-app a {
    font-size: 15px;
  }
}

/* Hide elements when content is empty */
.video-title.hidden,
.description-accordion.hidden {
  display: none !important;
}