
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/


.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1, h2, h3, .h1, .h2, .h3 {
    font-weight: 600 !important;
    font-family: 'Open Sans', sans-serif !important;
}

h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 500 !important;
    font-family: 'Open Sans', sans-serif !important;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.wow,
.animated {
    animation-duration: 2s !important;
}


/*** Button Start ***/
.btn.btn-primary {
    border: 0;
	  background: #f58020 !important;
    color: #FFFFFF !important;
}

.btn.btn-primary:hover {
    background: #f58020 !important;
    color: #FFFFFF !important;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 38px;
    height: 38px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
/*** Button End ***/


/*** Navbar Start ***/
.nav-bar {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-weight: 600;
    font-size: 17px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #f58020;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
    
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

#searchModal .modal-content {
    background-color: rgba(255, 255, 255, .95);
}
/*** Navbar End ***/


/*** Events Start ***/
.event .tab-class .nav-item a.active {
    background: #ffa500  !important;
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(0 75 125 / 74%);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.event .event-img:hover .event-overlay {
    opacity: 1;
}
/*** Events End ***/


/*** service start ***/
.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: #c2dbf0;
    border-radius: 8px;
    transition: 1s;
}

.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}

.service-item .service-content-icon i,
.service-item .service-content-icon p {
    transition: 1s;
}

.service-item:hover .service-content-icon i {
    color: #005a9c !important;
}

.service-item:hover .service-content-icon p {
    color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}
/*** Services End ***/


/*** Menu Start ***/
.menu .nav-item a.active {
    background: #f58020 !important;
}

.menu .menu-item .border-bottom {
    border-bottom-style: dashed !important;
}
/*** Menu End ***/


/*** Youtube Video start ***/
.video {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(254, 218, 154, 0.1), rgba(254, 218, 154, 0.1)), url(../img/fact.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-white);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-dark);
    border-top: 22px solid transparent;
    border-bottom: 22px 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(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .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;
}
/*** Youtube Video End ***/


/*** Blog Start ***/
.blog-item {
    position: relative;
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.3)
}

.blog-item .blog-content {
    position: relative;
    transform: translateY(-50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item .blog-content a.btn h5 {
    transition: 0.5s;
}

.blog-item:hover .blog-content a.btn h5 {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/


/*** Team Start ***/
.team-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-item .team-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.team-item .team-icon .share-link {
    opacity: 0;
    transition: 0.9s;
}

.team-item:hover .share-link {
    opacity: 1;
}

.team-item .team-content {
    transition: 0.9s;
}

.team-item:hover .team-content {
    background: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
}

.team-item .team-content h4,
.team-item .team-content p {
    transition: 0.5s;
}

.team-item:hover .team-content h4 {
    color: var(--bs-dark) !important;
}

.team-item:hover .team-content p {
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial-item {
    border: 1px solid var(--bs-primary);
    padding: 20px 20px;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
    direction: ltr !important;
}
/*** testimonial End ***/


/*** Contact start ***/
.contact-form {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

/*** Contact End ***/


/*** Footer Start ***/
.footer .footer-item a.text-body:hover {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/



   .contact-section {
        background: #f8fbff;
    }

    .contact-title {
        font-weight: 700;
        color: #005a9c;
    }

    .contact-title span {
        color: #005a9c;
    }

    .contact-card {
        background: #fff;
        border-radius: 18px;
        padding: 35px 25px;
        text-align: center;
        transition: all 0.4s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        border: 1px solid transparent;
    }

    .contact-card:hover {
        transform: translateY(-10px);
        border-color: #005a9c;
        box-shadow: 0 12px 30px rgba(13, 110, 253, 0.2);
    }

    .icon-box {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        background: linear-gradient(135deg, #0d6efd, #005a9c);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        transition: 0.4s;
    }

    .contact-card:hover .icon-box {
        transform: rotateY(180deg);
    }

    .contact-card h4 {
        font-weight: 600;
        margin-bottom: 15px;
        color: #222;
    }

    .contact-card p {
        color: #555;
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 0;
    }

    /* Social Icons */
    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
    }

    .social-links a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #f1f5ff;
        color: #005a9c;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: 0.3s;
        font-size: 18px;
    }

    .social-links a:hover {
        background: #005a9c;
        color: #fff;
        transform: scale(1.15);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .contact-card {
            padding: 25px 20px;
        }

        .contact-title {
            font-size: 32px;
        }
    }

    @media (max-width: 576px) {
        .contact-title {
            font-size: 28px;
        }

        .icon-box {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }
    }

      .breadcrumb-section {
        background: linear-gradient(rgba(0, 90, 156, 0.85),
                    rgba(13, 110, 253, 0.85)),
                    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1400&auto=format&fit=crop') center/cover no-repeat;
        padding: 90px 0;
        position: relative;
        overflow: hidden;
    }

    .breadcrumb-content h1 {
        color: #fff;
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: 1px;
        animation: fadeInDown 1s ease;
    }

    .breadcrumb {
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    gap: 12px;              /* Space between items */
    padding: 14px 28px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    animation: fadeInUp 1s ease;
    list-style: none;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #fff;
    margin: 0 12px;         /* Space around separator */
    font-weight: 600;
}
    .breadcrumb-item a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s;
    }

    .breadcrumb-item a:hover {
        color: #ffd166;
    }

    .breadcrumb-item.active {
        color: #ffd166;
        font-weight: 600;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        color: #fff;
    }

    /* Animation */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .breadcrumb-section {
            padding: 70px 0;
        }

        .breadcrumb-content h1 {
            font-size: 36px;
        }

        .breadcrumb {
            padding: 10px 18px;
        }
    }

    @media (max-width: 576px) {
        .breadcrumb-content h1 {
            font-size: 28px;
        }

        .breadcrumb {
            font-size: 14px;
            padding: 8px 15px;
        }
    }

    .dash{
        position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 5px;
    background-color: orange;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
    border-radius: 2px;
    }
     .product-gallery{
      width:100%;
      max-width:700px;
      margin:auto;
    }

    /* MAIN IMAGE BOX */
    .main-image-wrapper{
      position:relative;
      width:100%;
      height:420px;

      background:#fff;
      border:2px solid orange;
      border-radius:14px;

      overflow:hidden;

      display:flex;
      align-items:center;
      justify-content:center;

      padding:15px;
    }

    /* RESPONSIVE HEIGHT */
    @media(max-width:768px){
      .main-image-wrapper{
        height:320px;
      }
    }

    @media(max-width:576px){
      .main-image-wrapper{
        height:250px;
        padding:10px;
      }
    }

    /* MAIN IMAGE */
    #mainImage{
      width:100%;
      height:100%;
      object-fit:contain;

      transition:
        opacity 0.35s ease,
        transform 0.35s ease;
    }

    #mainImage.fade{
      opacity:0;
      transform:scale(0.96);
    }

    /* THUMBNAILS */
    .thumb-container{
      display:flex;
      gap:12px;

      overflow-x:auto;
      scroll-behavior:smooth;

      padding:10px 5px;
      margin-top:15px;
    }

    .thumb-container::-webkit-scrollbar{
      height:6px;
    }

    .thumb-container::-webkit-scrollbar-thumb{
      background:orange;
      border-radius:20px;
    }

    .thumbnail{
      width:85px;
      height:85px;

      object-fit:cover;

      border:2px solid #ddd;
      border-radius:10px;

      cursor:pointer;
      flex-shrink:0;

      transition:all 0.3s ease;
      background:#fff;
    }

    .thumbnail:hover{
      transform:scale(1.05);
    }

    .thumbnail.active{
      border-color:orange;
      box-shadow:0 0 12px rgba(255,165,0,0.4);
      transform:scale(1.07);
    }

    /* MOBILE THUMB SIZE */
.product-gallery{
  width:100%;
}

.main-image-wrapper{
  position:relative;
  height:420px;
  border:2px solid orange;
  border-radius:12px;
  overflow:hidden;
  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:15px;
}

.mainImage{
  width:100%;
  height:100%;
  object-fit:contain;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.mainImage.fade{
  opacity:0;
  transform:scale(0.96);
}

.thumb-container{
  display:flex;
  gap:10px;

  overflow-x:auto;
  scroll-behavior:smooth;

  margin-top:15px;
  padding-bottom:5px;
}

.thumbnail{
  width:80px;
  height:80px;

  object-fit:cover;

  border:2px solid #ddd;
  border-radius:10px;

  cursor:pointer;
  flex-shrink:0;

  transition:0.3s;
}

.thumbnail:hover{
  transform:scale(1.05);
}

.thumbnail.active{
  border-color:orange;
  box-shadow:0 0 10px rgba(255,165,0,0.4);
}

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  width:40px;
  height:40px;

  border:none;
  border-radius:50%;

  background:#fff;
  cursor:pointer;

  z-index:10;
  font-size:24px;
}

.prev-btn{
  left:10px;
}

.next-btn{
  right:10px;
}

@media(max-width:768px){

  .main-image-wrapper{
    height:300px;
  }

  .thumbnail{
    width:65px;
    height:65px;
  }

}
.top-header {
    background-color: #005a9c;
    font-size: 14px;
}

/* Social Icons */
.social-icons a {
    color: #fff;
    margin-left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover Effect (NO height change) */
.social-icons a:hover {
    background: #ffffff;
    color: #005a9c;
    transform: translateY(-3px);
}