/*
company colours/shades in use:
    Red:
        Primary Red: #FF0000
        Dark Red: #B30000
        Light Red: #FF6666
        Accent Red: #FF4D4D
        
    Blue:
        Primary Blue: #0074E4
        Dark Blue: #0047A0
        Light Blue: #66A3FF
        Accent Blue: #3399FF
    
    Yellow:
        Primary Yellow: #FFFF00
        Dark Yellow: #9B870C
        Light Yellow: #FFFFED
        Accent Yellow: #f2CB6C
        
    White:
        Pure White: #FFFFFF
        Off-White: #F5F5F5
        Subtle Grayish White: #F0F0F0
        
        
/* Base styles for mobile */
/* general styles*/

h1 {
    margin: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e3e3e3 !important;
}

ul{
  padding: 0;
  list-style-type: none;
}

li{
  display: inline;
  margin-right: 1vw;
}

#nav_bar{
  background-color: #e3e3e3 !important;
  position: fixed;
  width: 100vw;
  z-index: 2;
  overflow: visible !important;
  height: 10vh; /*Height set to a hardcoded percent of viewing panel height - NB: must be the same for #navbar_offset*/
}

.navbar_offset{
  /* NB height should be set to the same as #nav_bar height */
  height: 10vh;
}

.nav_options{
  color: #FF6666 !important;
  font-size: 1.25rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;    
}

.nav_options ul, li, a:hover{
  color: #FF4D4D !important;
}

#mini-logo{
  height: 8vh !important;
  width: auto;
  max-height: 100% !important;
}

#large-logo{
  height: 30vh !important;
  width: auto;
  max-height: 100% !important;
  display: block !important;
  margin-left: auto;
  margin-right: auto;
}

#navbar_list_div{
  margin-bottom: 0;
}

.nav_item_dropdown{
  display: none 
}

/***********************************************/

* {
    box-sizing: border-box;
  }
  
  /* Position the image container (needed to position the left and right arrows) */
  .showreel-container {
    position: relative;
    background-color: #66A3FF !important;
    border-radius: 10px;
    width: 85vw;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: flexbox !important;
    height: 500px;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
  }

  .reelimage {
    max-height:100%; 
    max-width: 50%; 
    display: flex;
    align-self: center;
    align-items: center;
    align-content: center;
    justify-self: center;
    justify-items: center;
    justify-content: center;
    padding: 2%;
  }

  @media (max-width: 768px) {
    .mySlides {
      height: auto;
    }

    .reelimage {
        max-width: 100%; 
        height: auto;
        padding-bottom: 5%; 
    }
    .transition-arrow {
      max-height: 7vh;
      padding-top: 3vh;
      padding-bottom: 3vh;
      transform: rotate(90deg);
    }
    .service-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 10px auto;
    }

    .service-images {
      flex-direction: column;
      align-items: center;
  }

    .nav_item_dropdown {
      position: relative;
      display: inline-block; 
  }

    .nav_options_drop {
      display: block;
      text-align: center;
      padding: 10px 20px;
    }

    #navbarDropdown {
      color: #FF6666 !important;
      font-size: 1.25rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
  }

    .dropdown-menu {
        position: absolute;
        right: 20px;
        top: 100%;
        display: block;
        background-color: #e3e3e3 !important;
  }

    .dropdown-menu a {
      color: #FF6666 !important;
  }

  .dropdown-menu a:hover{
      color: #FF4D4D !important;
  }

  .nav_options{
    display: none    
  }

  .service-description {
    width: 80%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
  }
}
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    /* color: white; */
    color: #e3e3e3;
    background-color: rgba(0, 0, 0, 0.8);
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    /* color: #f2f2f2; */
    color: e3e3e3;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Container for image text */
  .caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    /* color: white; */
    color: #e3e3e3;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */
  .column {
    float: left;
    width: 16.66%;
  }
  
  /* Add a transparency effect for thumnbail images */
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }

  #services-section {
    background-color: #66A3FF !important;
    border-radius: 10px;
    width: 85vw;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
}

.service-images {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  align-items: center;
}

.service-image {
  width: auto;
  max-width: 80%;
  max-height: 25vh;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 10%
}

.transition-arrow {
  max-height: 15vh;
}

.service-content {
  width: 100%;
  margin-left: 20px;
  margin-right: 20px;
}

.section-heading {
  font-size: 28px;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-description {
  width: 60%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.contact-section {
  background-color: #e3e3e3;
  padding: 50px 0;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-item {
  flex: 0 0 45%;
  margin: 10px;
}

.contact-item h2 {
  font-size: 20px;
  color: #FF6666;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 16px;
  color: #FF6666;
  line-height: 1.6;
}

.contact-item a {
  color: #FF6666;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button a {
  display: block;
  width: 80px;
  height: 80px;
  border: solid black 2px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-top: 13px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-button img {
  width: 80px; 
  height: auto;
  padding-right: 5px;
}

.whatsapp-button a:hover {
  background-color: #FF4D4D;
}
