/********** Template CSS **********/
:root {
    --primary: #009CFF;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** 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;
}


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

.btn.btn-primary {
    color: #FFFFFF;
}

.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 ***/
.dropdown-header {
    font-size: 14px;
    padding: 8px 16px;
    color: #0d6efd;
  }
  
  .dropdown-divider {
    border-top: 1px solid #dee2e6;
  }
  
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 63px;
  padding: 20px 0;
  color: #FFFFFF;
  font-weight: bold;
  outline: none;
}

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

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

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

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .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;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
/* #header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
   
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 240px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
       
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
   
}


#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} */







.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../imgs/page-header.jpg) center center no-repeat;
    background-size: cover;
}

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

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


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

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


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** 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: var(--primary) !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: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

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


/*** Footer ***/
.footer{
    color: #FFFFFF!important;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    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: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* about us */
.about-us {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about-us .section-header {
    margin-bottom: 30px;
}

.about-us .about-us-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #0d6efd;
}

.about-us .about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us .about-us-text p {
    font-size: 16px;
}

.about-us .about-us-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid #0d6efd;
    border-radius: 0;
    background: #121518;
    transition: .3s;
}

.about-us .about-us-text a.btn:hover {
    color: #121518;
    background: #0d6efd;
}

@media (max-width: 767.98px) {
    .about-us .about-us-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/* what we do */
.gsk-services-section {
    padding: 60px 20px;
    background-color: #f5f9ff;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .what-we-do {
    max-width: 1200px;
    margin: auto;
  }
  
  .service-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .service-box.reverse {
    flex-direction: row-reverse;
  }
  
  .text-content {
    flex: 1;
    min-width: 300px;
    animation: fadeInUp 1s ease;
  }
  
  .image-box {
    flex: 1;
    min-width: 300px;
    animation: zoomIn 1s ease;
  }
  
  .image-box img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  
  .section-title {
    font-size: 2rem;
    color: #00509e;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .service-list {
    list-style: none;
    padding: 0;
  }
  
  .service-list li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  
  .service-list li i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.1rem;
  }

  @media (max-width: 768px) {
    .service-box {
      flex-direction: column;
    }
  
    .service-box.reverse {
      flex-direction: column;
    }
  
    .section-title {
      text-align: center;
    }
  
    .service-list li {
      font-size: 0.95rem;
    }
  }
  

/* mission and vision */
#mission-vision {
    position: relative;
    padding: 45px 0 60px 0;
    background: #f2f2f2;
    }
    
    #mission-vision hr {
    width: 50%;
    margin: 45px auto;
    }
    
    #mission-vision .img-cols,
    #mission-vision .content-cols {
    padding: 0;
    }
    
    #mission-vision .content-cols {
    background: #222222;
    }
    
    #mission-vision .img-col,
    #mission-vision .content-col {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    }
    
    #mission-vision .content-col {
    background: #222222;
    padding: 30px
    }
    
    #mission-vision .img-col {
    overflow: hidden;
    }
    
    #mission-vision .img-col img {
    transition: 0.3s;
    width: 100%;
    }
    
    #mission-vision .img-col:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    }
    
    #mission-vision .content-col h3 {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 15px;
    }
    
    @media (max-width: 767.98px) {
    #mission-vision .content-col {
    text-align: center;
    }
    
    #mission-vision .content-col h3 {
    font-weight: 400;
    margin-top: 15px;
    }
    }
    
    #mission-vision .content-col p {
    color: #ddd;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: 20px;
    }
    
    #mission-vision .content-col a {
    display: inline-block;
    background: #0d6efd;
    font-weight: 400;
    color: #222222;
    padding: 10px 30px;
    }
    
    #mission-vision .content-col a:hover {
    background: #ffffff;
    color: #0d6efd;
    }
    
    #mission-vision .content-col a:focus {
    color: #fff;
    }

    /* why hcoose us */
    .why-choose-gsk {
        background-color: #f0f7ff;
        padding: 60px 20px;
        font-family: 'Segoe UI', sans-serif;
        color: #0d6efd;
      }
      
      .section-heading {
        text-align: center;
        font-size: 2.2rem;
        color: #0d6efd;
        margin-bottom: 40px;
        animation: fadeInDown 1s ease-in-out;
      }
      
      .features-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-bottom: 30px;
      }
      
      .feature-box {
        background: #fff;
        border-radius: 10px;
        padding: 25px;
        width: 280px;
        text-align: center;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fadeInUp 1s ease;
      }
      
      .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      }
      
      .feature-box i {
        font-size: 2rem;
        color: #0d6efd;
        margin-bottom: 15px;
      }
      
      .feature-box h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #0d6efd;
      }
      
      .footer-note {
        text-align: center;
        font-size: 1rem;
        max-width: 800px;
        margin: 0 auto;
        color: #333;
        animation: fadeIn 1.2s ease;
      }
      
      @media (max-width: 768px) {
        .features-grid {
          flex-direction: column;
          align-items: center;
        }
      
        .feature-box {
          width: 90%;
        }
      
        .section-heading {
          font-size: 1.8rem;
        }
      }
      /* contact us */
      .contact {
        position: relative;
        width: 100%;
        padding: 45px 0 15px 0;
    }
    
    .contact .contact-info {
        position: relative;
        margin-bottom: 30px;
        width: 100%;
        padding: 30px;
        background: #82b8ee;
    }
    
    .contact .contact-item {
        position: relative;
        margin-bottom: 30px;
        padding: 30px;
        display: flex;
        align-items: flex-start;
        flex-direction: row;
        border: 2px solid #0d6efd;
    }
    
    .contact .contact-item i {
        display: inline-block;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: #020202;
        border: 2px solid #0d6efd;
    }
    
    .contact .contact-text {
        position: relative;
        width: auto;
        padding-left: 15px;
    }
    
    .contact .contact-text h2 {
        color: #020202;;
        font-size: 25px;
        font-weight: 600;
    }
    
    .contact .contact-text p {
        margin: 0;
        color: #020202;
        font-size: 16px;
    }
    
    .contact .contact-item:last-child {
        margin-bottom: 0;
    }
    
    .contact .contact-form {
        position: relative;
        margin-bottom: 30px;
    }
    
    .contact .contact-form input {
        height: 60px;
        border-radius: 0;
        border-width: 2px;
        border-color: #121518;
    }
    
    .contact .contact-form textarea {
        height: 190px;
        border-radius: 0;
        border-width: 2px;
        border-color: #121518;
    }
    
    .contact .contact-form .btn {
        padding: 16px 35px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #eef1f5;
        background: #0d6efd;
        border: 2px solid #0d6efd;
        border-radius: 0;
        transition: .3s;
    }
    
    .contact .contact-form .btn:hover {
        color: #121518;
        background: #0d6efd;
    }
    
    @media (max-width: 992px) {
        .contact .contact-item {
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }
    
        .contact .contact-item i {
            margin-bottom: 15px;
            width: 50px;
            height: 50px;
            font-size: 24px;
        }
    
        .contact .contact-text {
            padding-left: 0;
        }
    
        .contact .contact-text h2 {
            font-size: 20px;
        }
    
        .contact .contact-text p {
            font-size: 15px;
        }
    }
    
    @media (max-width: 576px) {
        .contact {
            padding: 30px 15px;
        }
    
        .contact .contact-info,
        .contact .contact-item,
        .contact .contact-form {
            padding: 20px;
        }
    
        .contact .contact-form input,
        .contact .contact-form textarea {
            font-size: 14px;
        }
    
        .contact .contact-form .btn {
            padding: 12px 25px;
            font-size: 16px;
        }
    }
    /* products  */
    .gsk-lock-section {
        background: #f5faff;
        padding: 60px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #1b1f24;
      }
      
      .gsk-lock-section .container {
        max-width: 1100px;
        margin: 0 auto;
      }
      
      .title {
        font-size: 36px;
        color: #0056b3;
        font-weight: 800;
        margin-bottom: 10px;
        text-align: center;
      }
      
      .subtitle {
        font-size: 20px;
        color: #333;
        text-align: center;
        margin-bottom: 30px;
        font-style: italic;
      }
      
      .desc {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 30px;
        color: #222;
      }
      
      .feature {
        background-color: #fff;
        padding: 25px 30px;
        border-left: 5px solid #007bff;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 102, 255, 0.1);
        margin-bottom: 30px;
      }
      
      .feature h4 {
        font-size: 24px;
        color: #0a58ca;
        margin-bottom: 15px;
      }
      
      .feature-list,
      .item-list {
        padding-left: 20px;
      }
      
      .feature-list li,
      .item-list li {
        margin-bottom: 15px;
        color: #003366;
        line-height: 1.6;
        list-style-type: disc;
      }
      
      .feature-list li strong {
        color: #0056b3;
      }
      
      /* Responsive Design */
      @media (max-width: 768px) {
        .title {
          font-size: 28px;
        }
      
        .subtitle {
          font-size: 18px;
        }
      
        .feature h4 {
          font-size: 20px;
        }
      
        .feature,
        .desc {
          font-size: 16px;
          padding: 20px;
        }
      }
      
      /* sub products */
      .product-heading-title {
        display: inline-block;
        font-size: 30px;
        font-weight: 600;
        padding: 10px 20px;
        background-color: #ffffff;
        color: #0d6efd;
        border-left: 4px solid #0d6efd;
        border-right: 4px solid #0d6efd;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      }
      .learn-more-btn {
        font-size: 16px;
        font-weight: 600;
        padding: 10px 25px;
        border-radius: 30px;
        margin: 7px;
        transition: 0.3s ease;
        border: 2px solid #0d6efd;
        color: #0d6efd;
        background-color: transparent;
        text-decoration: none;
        display: inline-block;
        white-space: nowrap;
      }
      
      .learn-more-btn:hover {
        background-color: #0d6efd;
        color: #fff;
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
        transform: translateY(-2px);
      }
      
            
      @media (max-width: 768px) {
        .product-heading-title {
          font-size: 18px;
          padding: 8px 15px;
        }
      }
      
.main-container-section {
    background-color: #f8f9fa;
}
/* .inner-container {
    padding: 0 108px;
} */

.section-title {
    font-weight: 700;
}
.section-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
}

.product-card{
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #f1f1f1;
    padding: 10px;
    border-radius: 12px;
}

.product-title {
    font-size: 16px;
    color: #212529;
    font-weight: 600;
    line-height: 1.3;
}

.product-group:nth-of-type(1) .product-card {
    border-radius: 16px;
    border-left: 4px solid #0d6efd;
}

@media (max-width: 768px) {
    .product-img {
        height: 180px;
    }
    .product-title {
        font-size: 14px;              
    }
}
.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    margin: 20px auto;
    max-width: 1100px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  }
  
  .product-image {
    flex: 1 1 40%;
    padding: 15px;
    text-align: center;
  }
  
  .product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #dee2e6;
  }
  
  .product-content {
    flex: 1 1 60%;
    padding: 15px;
  }
  
  .product-title-pro {
    font-size: 28px;
    font-weight: bold;
    color: #0d6efd;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .product-info h5 {
    font-size: 20px;
    color: #0d6efd;
    margin-top: 20px;
    margin-bottom: 8px;
  }
  
  .product-info p {
    font-size: 16px;
    color: #030303;
    margin-bottom: 10px;
  }
  
  .product-info ul {
    padding-left: 20px;
    list-style-type: disc;
    color: #0e0d0d;
  }
  
  .product-info ul li {
    margin-bottom: 6px;
    font-size: 16px;
    list-style-type: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .product-detail-container {
      flex-direction: column;
      padding: 20px;
    }
  
    .product-title {
      font-size: 24px;
      text-align: center;
    }
  
    .product-image,
    .product-content {
      flex: 1 1 100%;
      padding: 10px;
    }
  
    .product-info h5 {
      font-size: 18px;
    }
  
    .product-info p,
    .product-info ul li {
      font-size: 15px;
    }
  }
  /* gallery */
  .gallery-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-label {
    background-color: #007bff;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    text-align: center;
}
/* sitemap */
.sitemap-wrapper {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 30px 40px;
  border-left: 6px solid #007bff;
}

.sitemap-title {
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  font-size: 26px;
  font-weight: bold;
  display: inline-block;
  border-radius: 4px 4px 0 0;
}

ul.tree {
  list-style-type: none;
  padding-left: 20px;
  position: relative;
}

ul.tree li::before {
  content: "│";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  color: #999;
}

ul.tree li {
  position: relative;
  padding-left: 20px;
  margin: 6px 0;
}

ul.tree li::after {
  content: "├─";
  position: absolute;
  left: 0;
  top: 0;
  color: #999;
}

ul.tree li:last-child::after {
  content: "└─";
}

ul.tree a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

ul.tree a:hover {
  color: #6a1b9a;
}

@media (max-width: 600px) {
  .sitemap-wrapper {
      padding: 20px;
  }

  .sitemap-title {
      font-size: 22px;
  }
}