/* Carousel Section */
.carousel {
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  margin-bottom: 4rem;
  
}

.carousel-track{
  display: flex;
  transition: transform 0.5s ease;
  
}

.media-video video{
  width: 100%;
  height: 100vh;   
  object-fit: cover;
  object-position: center;
}


/* Button */
.get-quote-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%);
}

.btn{
  padding: .8rem 1.2rem;
  background-color: #2ebdff;
  border-radius: 1rem;
  border: none;
  margin: 0 1rem;
 
  font-size: 1rem;
  color: #000;
  cursor: pointer;
  transition: all .3s ease;

  
  position: relative;
  overflow: hidden;
  &:hover{
    color: #def1ff;
  }
  &::before{
        content:"";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #dedede22;
        transition: left .3s ease;
        z-index: 1;
    }

     &:hover::before{
            left: 0;
        }
}

.read-more{
  background-color: #007bff;
  &:hover{
     background-color: #0054af;
     color: #def1ff;
  }
}

/* =================================================== */

.color-image-grid, .color-image2-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* background-color: #80a300d6; */
  background-color: #045aa0;
  height: 100vh;
}

.image-content, .image2-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  min-height: 100vh;
}

.image-content .image-title{
  font-size: 3rem;
  font-weight: 800;
  color: #eee;
  line-height: 4.5rem;
  text-decoration: justify;
  margin-bottom: .5rem;
}

 .label2{
  font-size: 5rem;
  font-style: italic;
  color: #76d2ff;
}

.image-title span{
  font-size: 5rem;
  font-style: italic;
  color: #76d2ff;
}

.image-title1{
  font-size: 2rem;
  margin: 0;
  color: #eee;
  padding: .1rem;
  border-radius: .5rem;
  /* -webkit-text-stroke: 1px #ffffff;  */
  
}

.image-content img{
  width: 130%;
  height: 100vh;
}

.image2-content img{
  width: 70%;
  height: 70vh;
}

.image2-title{
  font-size: 2.5rem;
  font-weight: 800;
  color: #082949;
  line-height: 4.5rem;
  margin-bottom: -1rem;
}

.label5{
  font-size: 5rem;
  font-style: italic;
  color: #082949;
}

.image2-title1{
  font-size: 1.5em;
}

.image2-content span{
  font-size: 4rem;
}


/* initial state  animation of text*/
.home-image .image-title,
.home-image .image-title1{
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease;
}

/* main title appears first */
.home-image.active .image-title{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* subtitle appears after */
.home-image.active .image-title1{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
/* =========================================== */

/* initial state  animation of text*/
.title,.title1 {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s ease;
}

/* main title appears first */
.home-image.active .title{
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

/* subtitle appears after */
.home-image.active .title1{
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}
/* ================================================= */

/* initial state  animation of text*/
.home-image .image2-title,
.home-image .image2-title1{
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease;
}

/* main title appears first */
.home-image.active .image2-title{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* subtitle appears after */
.home-image.active .image2-title1{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
/* =========================================== */



.color-image1{
  background-color: #fcfcfc;
  height: 100vh; /* full screen */
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
}

.color-image-content{
  text-align: center;
  color: #082949;
  padding: 1rem;
}

 .title {
  font-size: 5rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: -1rem;
 }

 .title span{
  color:#0078db;
 }

 .title1{
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
}
  
.color-image-content span{
  font-size: 5rem;
   color:#0065b7;
}

.title-content {
  margin: auto;
  margin-top: .5rem;
  font-size: 2rem;
  font-weight: 400;
  max-width: 600px;
   color: #082949;
}

/* ======================================== */

.color-image2-grid{
  background-color: #b9dafe;
}

/* ========================================== */

.home-image {
  width: 100%;
  min-width: 100%;
  height: 100vh;   
  object-fit: contain;
  object-position: center;
}

/* Adjust you overlay in carousel image */
.image-overlay{
  position: absolute;
  inset: 0;
  background-color: #00000020;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  
  border-radius: 50%;
  background: #0b3961;
  color: white;
  border: none;
  padding: 7px 15px;
  opacity: 0;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all .3s ease-in-out;
  &:hover{
    background-color: rgba(255, 49, 49, 0.822);
  }
}
 .carousel:hover .carousel-btn{
  opacity: 1;
 } 


.prev { left: 10px; }
.next { right: 10px; }
/* =============================================== */

.member-container-grid{
  padding: 1rem;
}
.member-container-grid a{
  text-decoration: none;
   color: #0b3961;
   transition: all .3s ease-in-out;
   &:hover{
    color: #004fa3;
   }
}

.overlay-background{
  background-color: #d5ebfd;
  color: #0b3961;
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  padding: 1rem;
}

.member-container-grid{
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

/* this is for adding overlay background to image */
.members, .members img{
  position: relative;
  width: 100%;
  object-fit: cover;
  height: 50vh;
  margin: auto;
}

.ohaap-overlay{
  position: absolute;
  inset: 0;
  background-color: #00000040;
}

.members img, .ohaap-overlay{
  border-radius: 1rem;
}

.btn-view{
  padding: .8rem 3rem;
  
  background-color: #0f90e8;
  border-radius: 1rem;
  border: none;
  margin: 0 1rem;
  
  font-size: 1rem;
  color: #000;
  cursor: pointer;
  transition: all .3s ease;

  
  position: relative;
  overflow: hidden;
  &:hover{
    color: #000;
  }
  &::before{
        content:"";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #badffd50;
        transition: left .3s ease;
        z-index: 1;
    }

     &:hover::before{
          left: 0;
        }
}



/* ================================================= */

.member-title{
    font-size: 3rem;
    margin-bottom: -1.5rem;
   
}
.overlay-background p{
  font-size: 2rem;
  margin-bottom: -1rem;
}

/*========Why Choose Us Section=========*/
.why-choose-us {
  padding: 1rem;
  background: #dcdcdc;
  text-align: center;
  margin-top: -4rem;
  margin-bottom: 1rem;
}


.why-choose-us h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #0b3961;
}
/* Grid */


.choose-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: auto;
  margin-bottom: 2rem;
}


.choose-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.choose-card h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #006ee4;
}

.choose-card p {
  font-size: 14px;
  color: #555;
}

.choose-card:hover {
  transform: scale(1.2);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  
}
/* ========================================================== */

/* =======OOH Platforms Section========== */
.platform-title{
  text-align: center;
  font-size: 3rem;
  color: #0b3961;
  margin-bottom: .5rem;
}

.platforms-container-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  place-items: center;
 
  padding: 1rem;
}
.platform-content{
  display: grid;
  padding: 1rem;
}

.image-container{
  width: 80%;
  border-radius: 1rem;
  margin-bottom: 2rem;
 
}
.image-container p{
  margin-top: .1rem;
  text-align: center;
  
}

.static-image{
  width: 100%;
  height: 50vh;
  object-fit: cover;
  border-radius: 1rem;  /* corner adjustment*/
  margin-bottom: -2rem;
  cursor: pointer;
}

.platform-content p{
  color: #0b3961;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: -.4rem;
}


/* LigthBox Section*/
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;              /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    transition: opacity .4s ease-in-out;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    border-radius:50%;
    padding: .5px 15px;
    transition: all .3s ease-in;
    &:hover{
      background-color: crimson;
    }
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    padding: 1px 17px;
    transition: all .3s ease;
    &:hover{
      background-color:rgba(220, 20, 60, 0.66)

    }
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* Button slide background when hover */
.view-image-btn{
  position: relative;
  overflow: hidden;
  border-radius: .5rem;
  z-index: 1;
  padding: .5rem 1rem;
  cursor: pointer;
  &::before{
    content: "";
    position:absolute;
    top:0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #0b3961;
    transition: left .4s ease;
    z-index: -1;
  }
  &:hover::before{
   left: 0;
   
  }
}

.view-image-btn:hover{
  color: #fff;
}




/*=================Special Execution Section==================*/

.grid-title {
  flex: 0 0 100%; /* full width */
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: -2rem;
  margin-top: .5rem;
  text-align: center;
}



.exec-title{
  color: #ededee;
  font-size: 1rem;
  text-align: center;
  
}

/* This part is putting the overlay above the background */
.execution-container-grid{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  padding: .8rem;
  margin-bottom: 1rem;
  background-color: #000000b4;
 }

.exec-container{
  margin: 1rem 0;
}


/* background behind everything inside */
.execution-container-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  
  background: 
    url("../images/image8.jpg")
    center / cover no-repeat;
    background-attachment: fixed;
    z-index: -5;
}



.execution-image{
  display: flex;
  width: 350px;
  border-radius: 1rem;
  cursor: pointer;
  margin-bottom: -1rem;
  transition: all .4s ease-in-out;
  /* border: 6px solid transparent; */
  
  /* mask-image: radial-gradient(circle, #fff 74%, transparent 80%); */
}

.execution-image:hover{
    transform: scale(1.1);
    
}

/* ============================================================== */


/* ===============Waiting Shed Section================== */

.title-special-container-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  place-items: center;
  padding: 1rem 2rem;
  gap: 3rem;
  margin-bottom: 5rem;
}

.title-special-container-grid p{
  font-size: 1.2rem;
  margin-bottom: -3rem;
}
.waiting-shed{
  margin-bottom: -2rem;
}

.waiting-shed h2 {
  color: #0b3961;
  font-size: 2rem;
  text-align: center;
  margin-bottom: .5rem;
}

.waiting-shed img{
  width: 100%;
  height: 300px;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.50);
}
/* =========================================================== */