/********** Template CSS **********/
:root {
    --primary: #00D6DF;
    --primary-dark: #00A3A8;
    --primary-light: #9BF9FD;
    --primary-vlight: #F1FEFF;
    --secondary: #B33C86;
    --light: #E5FBFC;
    --vlight: #F7FEFE;
    --dark: #222C2D;
    --dark-brand: #44595A;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

h1.large {
    font-size: 3.5rem;
}

h2.highlight {
    font-size: 2.5rem;
}

.large{
    font-size:1.125rem;
}

.high{
    font-family:"Ubuntu",sans-serif;
    font-weight:700;
}

.white{
    color:#ffffff;
}

h1.main, h2.main{
    font-size:3rem;
}

@media (max-width: 767px) {
  h1.main, h2.main{
    font-size:2rem;
  }
}

/*** UIA ***/

.uia-block img{
    max-width:150px;
    margin:3rem 0 0.5rem;
}

/** Rounded pill and image **/

.rounded-image{
    border-radius: 8px !important;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
  padding: 1rem;
  font-size: 1.125rem;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

@media (max-width: 600px) {
  .btn.btn-primary {
    width:100%;
  }
}

/* Logo */

.logo-dark{
    display:none;
}

.logo-light{
    display:block;
}

.bg-light .logo-dark{
    display:block;
}

.bg-light .logo-light{
    display:none;
}

.bg-mid-dark{
  background-color: #00797E !important;
}

.bg-primary {
  background-color: #00D6DF !important
}

.bg-secondary {
  background-color: #B33C86 !important
}

.bg-dark {
  background-color: #44595A !important
}

.bg-success {
  background-color: #198754 !important
}

.bg-info {
  background-color: #0dcaf0 !important
}

.bg-warning {
  background-color: #ffc107 !important
}

.bg-danger {
  background-color: #dc3545 !important
}

.bg-midlight {
  background-color: #C3FCFE !important
}

.bg-vlight {
  background-color: #F7FEFE !important
}

.bg-light {
  background-color: #E5FBFC !important
}

.bg-mid-dark {
  background-color: #00797E !important
}

.bg-dark {
  background-color: #44595A !important
}

.bg-body {
  background-color: #fff !important
}

.bg-white {
  background-color: #fff !important
}

.bg-transparent {
  background-color: rgba(0,0,0,0) !important
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    height: 40px;
    background:#302F2D;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
  }
  
  #topbar.topbar-scrolled {
    top: -40px;
  }
  
  #topbar .contact-info i {
    font-style: normal;
    color: #fff;
  }
  
  #topbar .contact-info a {
    color: #fff;
  }
  
  #topbar .contact-info a:hover {
    color: var(--primary);
    transition: 0.3s;
  }
  
  #topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
  }
  
  #topbar .languages ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #302F2D;
  }
  
  #topbar .languages ul a {
    color: white;
  }
  
  #topbar .languages ul li + li {
    padding-left: 10px;
  }
  
  #topbar .languages ul li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: rgba(255, 255, 255, 0.5);
    content: "/";
  }

/* Other BG Colours */

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primarylight {
    background-color: var(--primary-light) !important;
}

.bg-primaryvlight {
    background-color: var(--primary-vlight) !important;
}

/* Video hero */

.hero-header {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
  .hero-header {
    padding-top:10rem;
}
.hero-header.negative {
  padding-top:0;
}
}

@media (max-width: 4000px) {
    .hero-header.negative {
      margin-top:-75px;
  }
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text contrast */
    z-index: 0;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for better text contrast */
    backdrop-filter: contrast(200%);
    z-index: 0;
}

.container.position-relative {
    z-index: 1;
    color: white; /* Ensure text is visible */
}

.rounded-boxes{
    border-radius: 64px 0 12px 12px !important;
    border-bottom: 6px solid var(--primary);;
}
.rounded-sm-boxes{
    border-radius: 32px 0 0 0 !important;
    border-bottom: 3px solid var(--primary);;
}
.rounded-boxes-noborder{
    border-radius: 64px 0 0 0 !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 65vh;
    position: relative;
    padding: 0;
  }
  
  #hero.interior{
    height: 30rem;
  }
  
  @media (max-width: 767px) {
    #hero .desktop {
      display:none;
    }
    #hero .mobile {
      display:block;
      max-width: 120%;
    }
    #hero.interior .mobile {
      margin-top: 30%;
    }
  }
  
  @media (max-width: 568px) {
    #hero .desktop {
      display:none;
    }
    #hero .mobile {
      display:block;
      max-width: 200%;
    }
    #hero.home .mobile {
      margin-left: -40%;
    }
    #hero.interior .mobile {
      margin-left: 0;
      margin-top: 20%;
      max-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    #hero.home .mobile {
      margin-left: -65%;
      margin-top: 10%;
    }
    #hero.interior .mobile {
      margin-left: 0;
      margin-top: 30%;
      max-width: 120%;
    }
  }
  
  @media (min-width: 768px) {
    #hero .desktop {
      display:block;
    }
    #hero.home .desktop {
      margin-top: -5%;
      max-width: 140%;
      margin-left: -40%;
    }
    #hero.interior .desktop {
      max-width: 200%;
      margin-top: 30%;
      margin-left: -60%;
    }
    #hero .mobile {
      display:none;
    }
    #hero.interior .mobile {
      margin-top: 30%;
    }
  }
  
  @media (min-width: 992px) {
    #hero .desktop {
      display:block;
    }
    #hero.home .desktop {
      margin-top: -10%;
      max-width: 100%;
      margin-left: 0;
    }
    #hero.interior .desktop {
      margin-top: 15%;
      max-width: 120%;
      Margin-left: 0;
    }
    #hero .mobile {
      display:none;
    }
  }
  
  @media (min-width: 1280px) {
    #hero.interior .desktop {
      margin-top: 14%;
      max-width: 100%;
    }
  }
  
  #bg-video {
    min-width: 100%;
    min-height: 75vh;
    max-width: 100%;
    max-height: 75vh;
    object-fit: cover;
    z-index: -1;
  }
  
  #bg-video::-webkit-media-controls {
    display: none !important;
  }
  
  .video-overlay {
    position: absolute;
    background-color: rgba(11,9,7,0.5);
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;    
    display: flex;
    align-items: center;
  }
  
  .colour-overlay {
    position: absolute;
    background-color: var(--dark);
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;    
    display: flex;
    align-items: center;
  }
  
  .colour-overlay2 {
    position: absolute;
    background-color: rgba(249,246,242,1 );
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;    
    display: flex;
    align-items: center;
  }
  
  #hero:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #hero .container {
    padding-top: 0;
  }
  
  #hero h1 {
    margin: 1rem 0;
    font-size: 3.5rem;
    line-height: 110%;
    font-weight: 100;
    margin-bottom: 16px;
    color: #fff;
  }
  @media (max-width: 767px) {
  #hero h1, h1.display-4 {
    font-size: 2.5rem !important;
  }
}
  
  #hero h1 span {
    color: #302F2D;
  }
  
  #hero h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 20px;
    line-height: 140%;
    font-weight: 300;
  }

  #hero h2 span {
    color: #fff;
    font-size: 16px;
    font-weight:normal;
  }
  
  #hero h2::after {
    content: "";
    width: 120px;
    height: 2px;
    display: block;
    background: var(--primary);
    margin: 12px auto;
    text-align: center;
  }
  
  #hero .btns {
    margin-top: 30px;
  }
  
  #hero .promobox{
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    margin-top: 6rem;
  }
  
  #hero.interiorplain{
    height: 50vh;
  }
  
  #hero.interiorplain2{
    height: 45vh;
  }
  
  #hero.interiorplainsm{
    height: 30vh;
  }
  
  #hero.interiorplainsm .promobox{
    padding-top: 3rem;
  }
  
  #hero.interiorplain .promobox{
    padding-bottom: 0;
    margin-top: 0;
  }
  
  #hero.interiorplain2 .promobox{
    padding-top: 2rem;
  }
  
  @media (max-width: 767px) {
    #hero .promobox{
      padding-top:1rem;
      margin-top: 0;
    }
    #hero.interiorplain{
      height: 60vh;
    }
    #hero.interiorplainsm .promobox{
      padding-top: 8rem;
    }
    #hero.interiorplain2 .promobox{
      padding-top: 10rem;
    }
  }
  
  #hero .btn-menu, #hero .btn-book {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    padding: 18px 32px;
    border-radius: 0;
    transition: 0.3s;
    line-height: 1;
    color: white;
    border: 2px solid #302F2D;
    background:#302F2D;
  }
  
  #hero .btn-menu:hover, #hero .btn-book:hover {
    border: 2px solid #2685BF;
    background: #2685BF;
    color: #fff;
  }
  
  #hero .btn-book {
    margin-left: 15px;
  }
  
  #hero .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#302F2D 50%, rgba(30, 104, 148, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
  }
  
  #hero .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  #hero .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(107, 179, 225, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(0, 0, 0, 0);
  }
  
  #hero .play-btn:hover::after {
    border-left: 15px solid #302F2D;
    transform: scale(20);
  }
  
  #hero .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
  }
  
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }
  
  @media (max-width: 992px) {
    #hero .play-btn {
      margin-top: 30px;
    }
  }
  
  @media (max-height: 500px) {
    #hero {
      height: auto;
    }
    #hero .container {
      padding-top: 130px;
      padding-bottom: 60px;
    }
  }
  
  @-webkit-keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }
  
  @keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }

  .center {
    text-align: center;
}

/*** Navbar ***/

#homepage .home-bar{
    background:#44595A;
}

.sticky-top {
    top: -150px;
    transition: .5s;
}

.sticky-top .container {
    margin-top: 40px;
    top: 40px;
}

.navbar {
    padding: 11px 0 !important;
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: #fff;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    background-color: var(--primary);
}

.navbar.navbar-dark .navbar-nav .nav-link {
    color: var(--dark)
}

.navbar.navbar-dark .navbar-nav .nav-link:hover,
.navbar.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-dark);
}

.navbar.navbar-light .navbar-nav .nav-link {
    color: white;
}

.navbar.navbar-light .navbar-nav .nav-link:hover,
.navbar.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-light .navbar-toggler .navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.bg-light .navbar-light .navbar-toggler .navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-toggler, .navbar-light .navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}

.navbar-dark .navbar-toggler:focus, .navbar-dark .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.bg-light .navbar .navbar-nav .nav-link {
    color: #222C2C;
}

.bg-light .navbar .navbar-nav .nav-link:hover,
.bg-light .navbar .navbar-nav .nav-link.active {
    color: var(--primary-dark);
}

@media (max-width: 1199px) {

    .navbar .navbar-nav .nav-link{
        margin-right: 20px;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
    background-color: transparent;
    color: var(--primary);
}
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 16px;
        background: var(--light);
        border-radius:8px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 16px;
    }

    .navbar.navbar-light .navbar-nav .nav-link{
      color:var(--dark);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (min-width: 1200px) {
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link:focus,
    .navbar .navbar-nav .nav-link.active {
        background-color: transparent;
        color: var(--primary);
    }
}

/* Smart Lighting page */

.solution-box {
    background: #ffffff;
    transition: 0.3s;
}

.solution-box:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
}

.work-box {
    background: #ffffff;
    transition: 0.3s;
    text-align: center;
}

.work-box:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
}

.accordion-button {
    font-weight: bold;
}

.work-box {
    background: #ffffff;
    transition: 0.3s;
}

.work-box:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
}

/*** Hero Header ***/
.hero-header {
    background: url(../img/bg-hero-double.png) center center no-repeat;
    background-size: cover;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.section-title {
    padding-bottom: 40px;
  }
  
  .section-title.alt {
    text-align: center;
    padding-bottom: 8px;
  }
  
  .section-title.alt h2 {
    font-size:3.5rem;
  }
  
  .section-title.alt h2::before, .section-title.alt h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    color: var(--dark-brand);
    margin: 10px 10px;
  }
  
  .section-title h2 {
    margin: 0;
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--dark-brand);
  }
  
  .section-title h3 {
    margin: 2rem 0 0;
    font-size: 32px;
    font-weight: 300;
    color: var(--dark-brand);
  }
  
  @media (max-width: 767px) {
    .section-title h2 {
      font-size: 2rem;
    }
  }

  @media (max-width: 991px) {
    .section-title h2 {
      font-size: 2.5rem;
    }
  }
  
  .section-title p {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: auto;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-brand);
  }
  
  .section-title p::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.4);
    margin: 4px 10px;
  }


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/** Partner Logos **/

/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.service-item.reduced {
    padding: 2rem;
}

.service-item:hover {
    background: var(--primary-vlight);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--primary-dark);
}

.service-item.reduced h3,
.service-item.reduced p {
    transition: .5s;
}

.service-item.reduced:hover h3,
.service-item.reduced:hover p {
    color: #44595A;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Feature ***/
.feature {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}

.feature-purple {
    background: url(../img/bg-hero-purple.png) center center no-repeat;
    background-size: cover;
}

.feature-grey {
    background: url(../img/bg-hero-black.png) center center no-repeat;
    background-size: cover;
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

/* Why us */

section {
    padding: 6rem 0;
    overflow: hidden;
}

.why-us .box {
    padding: 1rem 2rem 2rem 2rem;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    background: var(--dark-brand);
    min-height: 325px;
  }
  
  .why-us .box span {
    display: block;
    font-size: 5em;
    font-weight: 200;
    color: #3AF4FB;
  }
  
  .why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: rgba(255, 255, 255, 1);
  }
  
  .why-us .box p {
    color: #ffffff;
    margin: 0;
    padding: 0;
  }
  
  .why-us .box:hover {
    background: var(--dark);
    padding: 1.5rem 2rem 2rem 2rem;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
    min-height: 340px;
  }
  
  .why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
    color: #fff;
  }
  
  .why-us .box.wide {
    padding: 1rem 2rem 2rem 2rem;
    transition: none;
    background: #F9F6F3;
    min-height: 100%;
    box-shadow: none;
    color: #22333B;
  }
  
  .why-us .box.wide span {
    display: block;
    font-size: 5em;
    font-weight: 200;
    color: #22333B;
  }
  
  .why-us .box.wide h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: #22333B;
  }
  
  .why-us .box.wide p {
    color: #22333B;
    margin: 0;
    padding: 0;
  }
  
  .why-us .box.wide:hover {
    background: #F9F6F3;
    min-height: 100%;
  }
  
  .why-us .box.wide:hover span, .why-us .box.wide:hover h4, .why-us .box.wide:hover p {
    color: #22333B;
  }
  
  .why-us .box.wide .whatsapp-button{
    margin:1rem 0 0;
  }


/*** Case Study ***/
.case-item img {
    transition: .5s;
}
  
.case-item:hover img {
    transform: scale(1.2);
}
  
.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark-brand));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 20px 0;
}

/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {
    box-shadow: 4px 8px 24px rgb(41 47 47 / 0.08);
}

/*** Footer ***/

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover, .footer a:hover {
    color: #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link.no-arrow::before {
    content: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .altcolor{
    color:#44595A;
}

.footer .copyright .altcolor a {
    color:#44595A;
}

.footer .copyright .altcolor a:hover {
    color:#44595A;
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

@media (max-width: 991px) {
    .sticky-top .img-fluid{
        width: 140px;
    }
    .sticky-top .navbar{
        /*padding: 5px 0 !important;*/
    }
    .sticky-top .navbar-brand {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.modal-content{
    background-color: rgba(68, 89, 90, 0.9);
}

.formgroup {
    /*position: relative;*/
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
  }

.formgroup iframe {
    position: absolute;
    top: 15%;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;  /* iframes are inline by default */   
    height: 100vh;  /* Set height to 100% of the viewport height */   
    width: 100vw;  /* Set width to 100% of the viewport width */     
    border: none; /* Remove default border */
}

@media (max-width: 767px) {
    .formgroup iframe {
        top: 2%;
    }
}

@media (max-width: 991px) {
    .formgroup iframe {
        top: 10%;
    }
}


.whatsapp-button {
    display: inline-block;
    padding: 0 16px;
    color: #fff;
    background-color: #146A89;
    border-radius: 0;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    margin:1rem;
    line-height: 3.5;
  
  }
  
  .whatsapp-button:hover {
    background-color: #0C4052;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .whatsapp-button-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    margin:0;
  }
  
  .bxl-whatsapp{
    font-size:40px;
    position: relative;
    top: 10px;
    margin-right: 4px;
    color: #fff;
  }
  
  #whatsappButtonBelowHow .whatsapp-button{
    margin: 1rem 0 0;
    width: 100%;
    text-align: center;
    line-height: 2.5;
    border: 1px solid;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  #whatsappButtonBelowHow .whatsapp-button:hover{
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  #whatsappButtonBelowHow .bxl-whatsapp{
    font-size: 28px;
    top: 6px;
    color: #fff;
  }
  
  @media (max-width: 767px) {
    .whatsapp-button-fixed {
      display:none;
      opacity: 0; /* Initially hide the button */
    }
    .whatsapp-button-fixed.show-fixed-whatsapp-button {
      opacity: 1;
    }
    .whatsapp-button-fixed .whatsapp-button{
      position: fixed;
      bottom: 0;
      right: 0;
      z-index: 1000;
      margin:0;
      border-radius:0;
      width:100%;
      text-align: center; 
      transition: transform 0.3s ease-in-out; /* Smooth transition */
      animation: slideUp 0.25s forwards; /* Apply the animation */
    }
    .show-fixed-whatsapp-button{
      display:block !important;
    }
    #whatsappButtonBelowH1 .whatsapp-button{
      margin: 1rem 0 3rem;
      width: 100%;
    }
  }