* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}

:root {
  --primary: rgb(52, 152, 165, 1);
  --secondary: rgb(39, 113, 140, 1);
}

html {
  overflow-x: hidden;
}


/********************/
/*INITIAL */
/********************/
a {
  text-decoration: none;
}

.anchor:before {
  content: '';
  display: block;
  position: relative;
  width: 0;
  height: 8em;
  margin-top: -8em
}

.o-cover {
  object-fit: cover !important;
}

.o-bottom{
  object-position: bottom;
}

.z-1 {
  z-index: 1;
}

.z-10 {
  z-index: 99999;
}


.line-1 {
  line-height: .75;
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4) !important;
}

.text-shadow-md {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.40) !important;
}

.text-shadow-lg {
  text-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 5px 15px rgba(0, 0, 0, 0.5) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.border-primary {
  border: 1px solid var(--primary) !important;
}

.text-gradient {
  background-color: white;

  background-image: linear-gradient(45deg, var(--primary), var(--secondary));

  background-size: 100%;
  background-repeat: repeat;


  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}


.bg-trans-dark {
  background-color: rgba(0, 0, 0, .5);
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-gradient {
  background: rgb(39, 113, 140) !important;
  background: -moz-linear-gradient(45deg, rgba(39, 113, 140, 1) 20%, rgba(52, 152, 165, 1) 100%) !important;
  background: -webkit-linear-gradient(45deg, rgba(39, 113, 140, 1) 20%, rgba(52, 152, 165, 1) 100%) !important;
  background: linear-gradient(45deg, rgba(39, 113, 140, 1) 20%, rgba(52, 152, 165, 1) 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#27718c", endColorstr="#3498a5", GradientType=1);
}







/********************/
/*PARALLAX */
/********************/
.parallax {
  height: 500px;
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-box-shadow: inset 0 0 20px #000000;
  -webkit-box-shadow: inset 0 0 20px #000000;
  box-shadow: inset 0 0 20px #000000;
}

@supports (-webkit-touch-callout: none) {

  /* CSS specific to iOS devices */
  .parallax {
    background-attachment: scroll;
  }
}




.navbar-brand img {
  height: 55px !important;
}

@media (max-width: 432px) {
  .navbar-brand img {
    height: 32px !important;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 45px;
  }
}



.number {
  color: var(--primary);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.number:before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--primary);
  margin-right: 10px;
}

.grid-rows-1{
  grid-auto-rows: 1fr;
}

@media(max-width: 991px){
  .list{
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media(max-width: 768px){
  .list{
    grid-template-columns: repeat(1, 1fr)!important;
  }
}

.list{
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  max-width: 100%;
}

.list-item {
  border: 1px solid var(--primary);
  border-radius: 5px;
  display: flex;
  padding: 1em;
  margin-bottom: 20px;
}
.list-content {
  width: 100%;
}


.accordion .card-header h2 button{
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  font-size: 20px;
  background-color: transparent;
}


/* Video Container Styles */
.video-container {
    background: #000;
    border-radius: 1rem;
    overflow: hidden;
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
}

/* Play Button Overlay */
.play-overlay {
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.play-button i {
    font-size: 32px;
    color: #0d6efd;
    margin-left: 5px;
}

/* Video Controls */
.video-controls {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.video-container:hover .video-controls,
.video-controls.show {
    opacity: 1;
}

.controls-wrapper {
    max-width: 100%;
}

/* Progress Bar */
.progress-container {
    position: relative;
}

.progress {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.progress:hover {
    height: 8px !important;
    transition: height 0.2s ease;
}

.time-display {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin: 0 4px;
}

.time-separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* Control Buttons */
.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 4px;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.control-btn i {
    font-size: 16px;
}

/* Volume Slider */
.volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    margin-left: 8px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 24px;
    }
    
    .control-btn {
        width: 36px;
        height: 36px;
    }
    
    .volume-slider {
        width: 60px;
    }
}

/* Video Container Styles - Updated for Portrait Video */
.video-container {
    background: linear-gradient(45deg, rgba(39, 113, 140, 1) 20%, rgba(52, 152, 165, 1) 100%) !important;
    border-radius: 1rem;
    overflow: hidden;
    max-height: 600px;
    max-width: 400px; /* Add this - constrains width */
    margin: 0 auto; /* Center it */
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container video {
    display: block;
    width: auto; /* Changed from 100% */
    height: auto;
    max-height: 600px; /* Match container */
    max-width: 100%;
    object-fit: contain;
}

/* Responsive adjustments for portrait video */
@media (max-width: 992px) {
    .video-container,
    .video-container video {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .video-container,
    .video-container video {
        max-height: 400px;
    }
}