/********** Template CSS **********/
:root {
    --primary: #EAA636;
    --secondary: #545454;
    --light: #FDF5EB;
    --dark: #1E1916;
}
.home-color {
    color: #e7e2dc;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}
body {
  font-family:"Roboto Slab", serif;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 1.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}
.btn.btn-secondary {
    background-color: #f4c67c;
    border:  #f4c67c;
    color: #000000;
}
.btn.btn-secondary:hover {
    background-color: #FFFFFF;
    border: #FFFFFF;
    color: #EAA636;
}
.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;
}


/*** Navbar ***/
/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background-color: white; 
} */
.navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    display: flex;
}

.navbar .navbar-nav .nav-link {
    padding: 20px 15px;
    color:#FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 15px;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Facts ***/
.fact-item {
    transition: .3s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 1rem solid var(--light);
    z-index: -1;
}


/*** Service ***/
.service-item,
.service-item * {
    transition: .3s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary) !important;
}

.service-item:hover * {
    color: var(--light);
}

.service-item .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-overlay {
    opacity: 1;
}


/*** Project ***/
.project-item {
    position: relative;
}

.project-item .project-title {
    position: absolute;
    top: auto;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.project-item:hover .project-title {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Team ***/
.team-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: transparent transparent #FFFFFF transparent;      
}

/* @media (min-width: 576px) {
    .flex-sm-row .team-img::after,
    .flex-lg-row-reverse .team-img::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        border-color: transparent #FFFFFF transparent transparent;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .flex-sm-row-reverse .team-img::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
        border-color: transparent transparent transparent #FFFFFF;
    }
}

@media (min-width: 992px) {
    .flex-lg-row-reverse .team-img::after,
    .flex-sm-row-reverse .team-img::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
        border-color: transparent transparent transparent #FFFFFF;
    }

    .flex-sm-row-reverse.flex-lg-row .team-img::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        border-color: transparent #FFFFFF transparent transparent;
    }
} */


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #545454 !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}

/*** Gallery ***/
* {
    box-sizing: border-box
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    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);
    }

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active, .dot:hover {
        background-color: #717171;
    }

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--secondary);
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--secondary);
    transform: skew(40deg);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}
/* .add-on {
align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
    font-size: 16px;
  } */

  .plus-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #eee;
    color: #333;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
    transition: 0.3s;
  }

    .plus-icon:hover {
        background-color: white;
        color: #EAA636;
    }
  .plus-icon.selected {
    background-color: #EAA636;
    color: white;
    transform: rotate(45deg); 
  }

  input[type="checkbox"] {
    display: none;
  }
.vl {
    border-right: solid rgb(62, 52, 52, 0.30);
    height: auto;
}
.vl:hover{
    border: solid white;
    height: auto;
}
/* For small screens � replace vertical line with horizontal */
@media (max-width: 768px) {
    .vl {
        border-right: none;
        border-top: solid rgba(62, 52, 52, 0.3);
        width: 100%;
        height: auto;
        margin: 20px 0;
    }

    .vl:hover {
        border: solid white;
        border-right: none;
        border-left: none;
        border-top: solid white;
    }
}
@media (max-width: 768px) {
    .vla {
        border-right: none;
        border-top: solid rgba(62, 52, 52, 0.3);
        width: 100%;
        height: auto;
        margin: 20px 0;
    }

        .vla:hover {
            border: solid white;
            border-right: none;
            border-top: solid white;
        }
    .col-cl {
        flex: 0 0 auto;
        width: 50%;
    }
}
@media (max-width: 768px) {
    .col-cl {
        flex: 0 0 auto;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .sview {
        display: none;
    }
}
@media (min-width: 992px) {
    .sview {
        display: none;
    }
    /* .tbox{
        width:50px;
    } */
}
@media (max-width: 991px) {
    .lview {
        display: none;
    }
    .stext{
        font-size: x-small ;
    }
    .flashdrivetext{
        font-size: small;
    }

    /* .tbox{
        width:50px;
    } */
}
@media(max-width:1400px){
    .scol{
        flex:0 0 auto;
        width:100%;
    }
}
@media(min-width:1200px){
    .logoview{
        display:none;
    }
}

/*Album Cards */
.fixed-img {
    width: 100%;
    height: 500px; /* or any fixed height you prefer */
    object-fit: cover;
    object-position: center;
    border-radius: 8px; /* optional: makes it look nicer */
}
@media(max-width:700px){
    .s-img{
    width: 100%;
    height: 500px; /* or any fixed height you prefer */
    object-fit: cover;
    object-position: center;
    border-radius: 8px; /* optional: makes it look nicer */
    }
}
@media(max-width:550px){
    .s-img{
    width: 105%;
    height: 100%;
    object-fit:scale-down;
    object-position: center;
    border-radius: 8px;
    }
}
/*header word*/
.font-edit{
    font-size: 20px;
    font-weight: 345;
}

.add-on-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.add-on-container.open {
    max-height: 2000px; /* adjust depending on content height */
}
.details-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.details-container.open {
    max-height: 2000px; /* adjust depending on content height */
}
.add-on {
    margin: 10px 0;
    cursor: pointer;
}
/*for ceromany types*/
.ceromanyType-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ceromanyType-container.open {
    max-height: 200px; /* adjust depending on content height */
}

.ceromanyType {
    margin: 10px 0;
    cursor: pointer;
}
/*golden dust particles*/
#tsparticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-color:#000000;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}
/* @media (min-width: 100px) and (max-width: 1500px){
    .video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    padding: 0%;
    margin: 0%;
    min-width: 100%;
    min-height: 100%;
}
} */
 @media (min-width: 100px) and (max-width: 1500px) {
    .video-background video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
        padding: 0;
        margin: 0;
    }
}
.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-color: #000000;
}

.image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease-out;
    will-change: transform;
    transform-origin:center; /* Important */
}

.image-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}
/* @media (min-width: 100px) and (max-width: 1500px){
    .image-background img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    padding: 0%;
    margin: 0%;
    min-width: 100%;
    min-height: 100%;
}
} */
/* .scrol{
    overflow-y: auto;
    max-height: 50vh;
} */

.zoom-image {
      transition: transform 0.3s ease;
    }

.zoom-image:hover {
    transform: scale(1.05); /* Zoom in slightly */
}
.team-container {
    /* width: 100%;
    height: 100%; */
      /* width: 300px;
      border: 1px solid #ddd;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1); */
      overflow: hidden; /* Prevents zoomed image from overflowing */
    }

    .team-container img {
      transition: transform 0.5s ease;
      /* width: 100%;
      height: 100%;
      display: block; */
    }

    .team-container img:hover {
      transform: scale(1.08); /* Zooms ONLY the image */
    }

.img-fluid{
    overflow: hidden;
}
.img-fluid img{
    transition: transform 0.5s ease;
}
.img-fluid img:hover{
    transform: scale(1.08);
}
#loader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#loader.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.5s ease-out, visibility 0s linear 0s;
}

.loader-logo {
    width: 150px;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeZoomIn 1.2s ease-in-out forwards;
}

@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}