 :root {
     --primary-color: #b62729;
     --secondary-color: #004e89;
     --dark-color: #1a1a2e;
     --light-color: #f4f4f4;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     color: #333;
 }

 /* Navbar Styles */
 .navbar {
     background: #022742;
     padding: 1.2rem 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }
 .navbar-toggler {
    margin-left: auto;
    border: 1px solid #fff;
    box-shadow: none !important;
}

 .navbar-brand {
     font-size: 1.5rem;
     font-weight: bold;
     color: #fff !important;
     position: absolute;
     top: 0;
     padding: 20px;
     background: #011727;
     border-bottom-left-radius: 10px;
     border-bottom-right-radius: 10px;
 }

 a.navbar-brand img {
     max-width: 100px;
 }

 .menu-item a {
     color: rgba(255, 255, 255, 0.9) !important;
     font-weight: 800;
     margin: 0 0.5rem;
     transition: all 0.3s;
     text-decoration: none;
     text-transform: uppercase;
 }

 .menu-item a:hover {
     color: var(--primary-color) !important;
     transform: translateY(-2px);
 }
.breadcrumb li {
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}
.breadcrumb li a::before {
    float: right;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: #fff;
    content: var(--bs-breadcrumb-divider, "/");
    padding-left: 6px;
}
.breadcrumb li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

 /* Hero Section */
.hero-section {
    position: relative;
    color: white;
    margin-top: 60px;
}

 .hero-slide {
     height: 680px;
     position: relative;
     display: flex;
     align-items: center;
 }

 .slide-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
 }

 .slide-content {
     position: relative;
     z-index: 2;
 }

 .hero-section h1 {
     font-size: 3.5rem;
     font-weight: bold;
     margin-bottom: 1.5rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
     animation: fadeInUp 1s ease-out;
 }

 .hero-section p {
     font-size: 1.3rem;
     margin-bottom: 2rem;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
     animation: fadeInUp 1s ease-out 0.2s backwards;
 }

 /* Owl Carousel Custom Styles */
 .owl-carousel .owl-nav button.owl-prev,
 .owl-carousel .owl-nav button.owl-next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 107, 53, 0.9) !important;
     color: white !important;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     font-size: 24px;
     transition: all 0.3s;
 }

 .owl-carousel .owl-nav button.owl-prev:hover,
 .owl-carousel .owl-nav button.owl-next:hover {
     background: var(--primary-color) !important;
     transform: translateY(-50%) scale(1.1);
 }

 .owl-carousel .owl-nav button.owl-prev {
     left: 20px;
 }

 .owl-carousel .owl-nav button.owl-next {
     right: 20px;
 }

 .owl-carousel .owl-dots {
     bottom: 20px;
     width: 100%;
     text-align: center;
 }

 .owl-carousel .owl-dot {
     display: inline-block;
     width: 12px;
     height: 12px;
     margin: 0 5px;
     background: rgba(255, 255, 255, 0.5) !important;
     border-radius: 50%;
     transition: all 0.3s;
 }
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}
 .owl-carousel .owl-dot.active  span{
     background: var(--primary-color) !important;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .btn-primary {
     background: var(--primary-color);
     border: none;
     padding: 12px 35px;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 50px;
     transition: all 0.3s;
 }

 .btn-primary:hover {
     background: #ff5722;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
 }

 /* Section Titles */
 .section-title {
     font-size: 2.5rem;
     font-weight: bold;
     color: var(--dark-color);
     margin-bottom: 1rem;
     position: relative;
     display: inline-block;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 60px;
     height: 4px;
     background: var(--primary-color);
 }

 /* About Section */
 .about-section {
     padding: 80px 0;
 }

 .about-icon {
     font-size: 3rem;
     color: var(--primary-color);
     margin-bottom: 1rem;
 }

 .feature-img img {
     border-radius: 25px;
 }

 /* Product Section */
 .product-section {
     padding: 80px 0;
     background: var(--light-color);
 }

 .product-card {
     border: none;
     border-radius: 15px;
     overflow: hidden;
     transition: all 0.3s;
     height: 100%;
 }

 /* .product-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
 } */

 .product-image {
     background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
     height: 200px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 4rem;
     color: white;
 }

.product-image img {
    width: 200px !important;
}

 .product-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background: var(--primary-color);
     color: white;
     padding: 5px 15px;
     border-radius: 20px;
     font-weight: 600;
     font-size: 0.85rem;
 }

 .product-price {
     font-size: 1.8rem;
     font-weight: bold;
     color: var(--primary-color);
 }

 /* Enquiry Form */
 .enquiry-section {
     padding: 80px 0;
     background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
     color: white;
 }

 .enquiry-section .section-title {
     color: white;
 }

.enquiry-section .section-title::after {
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
}
#products .section-title::after {
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
}

 .form-control {
     padding: 12px;
     border-radius: 8px;
     border: 1px solid #ddd;
 }
  .form-select {
     padding: 12px;
     border-radius: 8px;
     border: 1px solid #ddd;
 }

 .form-control:focus {
     border-color: var(--primary-color);
     box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
 }

 /* Footer */
 .footer {
     background: var(--dark-color);
     color: white;
     padding: 50px 0 20px;
 }

 .footer h5 {
     color: var(--primary-color);
     margin-bottom: 1.5rem;
 }

.footer a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    margin-bottom: 10px;
}
.footer-logo {
    width: 125px;
    margin-bottom: 10px;
}
 /* .social-links a {
     display: inline-block;
     width: 40px;
     height: 40px;
     background: var(--secondary-color);
     color: white;
     text-align: center;
     line-height: 40px;
     border-radius: 50%;
     margin-right: 10px;
     transition: all 0.3s;
 }

 .social-links a:hover {
     background: var(--primary-color);
     transform: translateY(-3px);
 } */

 /* Responsive */
 @media (max-width: 768px) {
     .hero-slide {
         height: 500px;
     }

     .hero-section h1 {
         font-size: 2rem;
     }

     .hero-section p {
         font-size: 1rem;
     }

     .section-title {
         font-size: 2rem;
     }

     .btn-lg {
         font-size: 0.9rem;
         padding: 10px 20px;
     }

     .owl-carousel .owl-nav button.owl-prev,
     .owl-carousel .owl-nav button.owl-next {
         width: 40px;
         height: 40px;
         font-size: 18px;
     }

     .owl-carousel .owl-nav button.owl-prev {
         left: 10px;
     }

     .owl-carousel .owl-nav button.owl-next {
         right: 10px;
     }
 }


 .faq-header {
     text-align: center;
     margin-bottom: 50px;
     color: white;
 }

 .faq-header h1 {
     font-size: 3rem;
     margin-bottom: 10px;
     font-weight: 700;
 }

 .faq-header p {
     font-size: 1.2rem;
     opacity: 0.9;
 }

 .faq-item {
     background: white;
     border-radius: 12px;
     margin-bottom: 16px;
     overflow: hidden;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .faq-item:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
 }

 .faq-question {
     padding: 25px 30px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: white;
     transition: background 0.3s ease;
     user-select: none;
 }

 .faq-question:hover {
     background: #f8f9fa;
 }

 .faq-question h3 {
     font-size: 1.1rem;
     color: #2d3748;
     font-weight: 600;
     flex: 1;
     margin-right: 20px;
 }

 .faq-icon {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     font-weight: 300;
     transition: transform 0.3s ease, background 0.3s ease;
     flex-shrink: 0;
     position: relative;
 }

 .faq-icon::before,
 .faq-icon::after {
     content: '';
     position: absolute;
     background: white;
     transition: transform 0.3s ease;
 }

 .faq-icon::before {
     width: 14px;
     height: 2px;
 }

 .faq-icon::after {
     width: 2px;
     height: 14px;
 }

 .faq-item.active .faq-icon {
     transform: rotate(180deg);
     background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
 }

 .faq-item.active .faq-icon::after {
     transform: rotate(90deg);
     opacity: 0;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, padding 0.4s ease;
     background: #f8f9fa;
 }

 .faq-answer-content {
     padding: 0 30px;
 }

 .faq-item.active .faq-answer {
     max-height: 500px;
     padding: 20px 0;
 }

 .faq-answer p {
     color: #4a5568;
     line-height: 1.7;
     font-size: 1rem;
 }

 @media (max-width: 768px) {
     .faq-header h1 {
         font-size: 2rem;
     }

     .faq-header p {
         font-size: 1rem;
     }

     .faq-question {
         padding: 20px;
     }

     .faq-question h3 {
         font-size: 1rem;
     }

     .faq-answer-content {
         padding: 0 20px;
     }
 }

 .search-box {
     margin-bottom: 30px;
     text-align: center;
 }

 .search-box input {
     width: 100%;
     max-width: 600px;
     padding: 15px 25px;
     border: none;
     border-radius: 50px;
     font-size: 1rem;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     outline: none;
     transition: box-shadow 0.3s ease;
 }

 .search-box input:focus {
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
 }

 .sub-banner-sec {
     padding: 200px 0 100px;
     background-size: cover;
     background-repeat: no-repeat;
     background-image: url(../images/sub-banner.png);
 }

.sub-banner-sec h1 {
    font-size: 50px;
    color: #fff;
    text-transform: capitalize;
}

 .breadcrumb-item+.breadcrumb-item::before {
     color: rgb(255 255 255 / 75%);
 }

 .breadcrumb {
     margin-top: 25px;
 }

 .breadcrumb-item a {
     color: #fff;
     text-decoration: none;
 }

 .breadcrumb-item.active {
     color: rgb(255 255 255);
 }

 .faq-sec {
     padding: 80px 0;
 }

 .blog-card {
     background: white;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     cursor: pointer;
 }

 .blog-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }

 .blog-image {
     width: 100%;
     height: 220px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 3rem;
     position: relative;
     overflow: hidden;
 }

 .blog-image::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.2);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .blog-card:hover .blog-image::after {
     opacity: 1;
 }

 .blog-content {
     padding: 25px;
 }

 .blog-meta {
     display: flex;
     gap: 15px;
     margin-bottom: 15px;
     font-size: 0.85rem;
     color: #888;
 }

.blog-tag {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

 .blog-content h3 {
     font-size: 1.4rem;
     margin-bottom: 12px;
     color: #2d3748;
     line-height: 1.4;
 }
  .blog-content h3 a {
     font-size: 1.4rem;
     margin-bottom: 12px;
     color: #2d3748;
     line-height: 1.4;
     text-decoration: none;
 }

 .blog-content p {
     color: #666;
     margin-bottom: 20px;
     line-height: 1.7;
 }

 .read-more {
     color: #667eea;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 5px;
     transition: gap 0.3s ease;
 }

 .read-more:hover {
     gap: 10px;
 }

 .featured {
     grid-column: 1 / -1;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 0;
 }

 .featured .blog-image {
     height: 100%;
     min-height: 400px;
 }

 .featured .blog-content {
     padding: 40px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .featured .blog-content h3 {
     font-size: 2rem;
     margin-bottom: 20px;
 }

 .blog-sec {
     padding: 80px 0;
 }

 .article-header {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     padding: 80px 20px 60px;
     color: white;
     text-align: center;
 }

 .article-category {
     display: inline-block;
     background: rgba(255, 255, 255, 0.2);
     padding: 8px 20px;
     border-radius: 20px;
     font-size: 0.9rem;
     margin-bottom: 20px;
     font-weight: 600;
 }

 .article-header h1 {
     font-size: 3rem;
     margin-bottom: 20px;
     max-width: 900px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.3;
 }

 .article-meta {
     display: flex;
     justify-content: center;
     gap: 30px;
     flex-wrap: wrap;
     font-size: 1rem;
     opacity: 0.95;
 }

 .article-meta span {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .featured-image {
     width: 100%;
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 5rem;
     color: white;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
     margin-bottom: 60px;
 }
 .featured-image img{
    width: 100%;
 }

 .article-content {
     background: white;
     padding: 50px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     margin-bottom: 40px;
 }

 .article-content h2 {
     font-size: 2rem;
     margin: 40px 0 20px;
     color: #2d3748;
 }

 .article-content h3 {
     font-size: 1.5rem;
     margin: 30px 0 15px;
     color: #4a5568;
 }

 .article-content p {
     margin-bottom: 25px;
     font-size: 1.1rem;
     color: #555;
     line-height: 1.9;
 }

 .article-content blockquote {
     border-left: 4px solid #667eea;
     padding: 20px 30px;
     margin: 30px 0;
     background: #f7fafc;
     border-radius: 8px;
     font-style: italic;
     color: #4a5568;
 }

 .article-content ul,
 .article-content ol {
     margin: 20px 0 20px 30px;
     color: #555;
 }

 .article-content li {
     margin-bottom: 12px;
     font-size: 1.05rem;
 }

 .article-content code {
     background: #f7fafc;
     padding: 3px 8px;
     border-radius: 4px;
     font-family: 'Courier New', monospace;
     color: #667eea;
     font-size: 0.95em;
 }

 .author-card {
     background: white;
     padding: 40px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     display: flex;
     gap: 25px;
     align-items: center;
     margin-bottom: 40px;
 }

 .author-avatar {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
     color: white;
     flex-shrink: 0;
 }

 .author-info h3 {
     font-size: 1.4rem;
     margin-bottom: 8px;
     color: #2d3748;
 }

 .author-info p {
     color: #666;
     line-height: 1.6;
     margin-bottom: 15px;
 }

 .social-links {
     display: flex;
     gap: 15px;
 }

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #000;
}

 .comments-section {
     background: white;
     padding: 50px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     margin-bottom: 40px;
 }

 .comments-section h2 {
     font-size: 2rem;
     margin-bottom: 30px;
     color: #2d3748;
 }

 .comment {
     padding: 25px 0;
     border-bottom: 1px solid #e2e8f0;
 }

 .comment:last-child {
     border-bottom: none;
 }

 .comment-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 12px;
 }

 .comment-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 600;
 }

 .comment-author {
     font-weight: 600;
     color: #2d3748;
 }

 .comment-date {
     color: #999;
     font-size: 0.9rem;
 }

 .comment-text {
     margin-left: 65px;
     color: #555;
     line-height: 1.6;
 }

 .comment-form {
     margin-top: 40px;
     padding-top: 40px;
     border-top: 2px solid #e2e8f0;
 }

 .comment-form h3 {
     font-size: 1.5rem;
     margin-bottom: 25px;
     color: #2d3748;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: #4a5568;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 12px 18px;
     border: 2px solid #e2e8f0;
     border-radius: 10px;
     font-size: 1rem;
     font-family: inherit;
     transition: border-color 0.3s ease;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: #667eea;
 }

 .form-group textarea {
     resize: vertical;
     min-height: 120px;
 }

 .submit-btn {
     padding: 14px 40px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     border: none;
     border-radius: 25px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: transform 0.3s ease;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
 }

.related-posts {
    padding: 0px 0 80px;
}

 .related-posts h2 {
     font-size: 2rem;
     margin-bottom: 30px;
     color: #2d3748;
 }

 .related-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 25px;
 }

 .related-card {
     border: 2px solid #e2e8f0;
     border-radius: 15px;
     overflow: hidden;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .related-card:hover {
     border-color: #667eea;
     transform: translateY(-5px);
 }

 .related-image {
     width: 100%;
     height: 150px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
     color: white;
 }

 .related-content {
     padding: 20px;
 }

 .related-content h4 {
     font-size: 1.1rem;
     margin-bottom: 10px;
     color: #2d3748;
 }

 .related-content span {
     font-size: 0.85rem;
     color: #999;
 }

 .blog-pagination ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.blog-pagination ul li a,
.blog-pagination ul li span {
  display: block;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.blog-pagination ul li a:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.blog-pagination ul li span.current {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

 @media (max-width: 768px) {
     .article-header h1 {
         font-size: 2rem;
     }

     .featured-image {
         height: 300px;
         font-size: 3rem;
     }

     .article-content {
         padding: 30px 25px;
     }

     .comments-section {
         padding: 30px 25px;
     }

     .related-posts {
         padding: 30px 25px;
     }

     .author-card {
         flex-direction: column;
         text-align: center;
     }

     .related-grid {
         grid-template-columns: 1fr;
     }
     .navbar-nav {
    padding-top: 100px;
}
 }
 
 .barcode-display svg {
    width: 100%;
}

.gallery-sec {
    background: #fff;
    padding-bottom: 30px;
}
 .gallery-item img {
            transition: transform 0.3s ease;
        }
        
        /* Modal/Lightbox Styles */
        .lightbox-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            animation: fadeIn 0.3s;
        }
        
        .lightbox-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            animation: zoomIn 0.3s;
        }
        
        .close-btn {
            position: absolute;
            top: 20px;
            right: 40px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            z-index: 10000;
        }
        
        .close-btn:hover {
            color: #bbb;
        }
        
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            padding: 20px;
            user-select: none;
            transition: 0.3s;
        }
        
        .nav-btn:hover {
            color: #bbb;
        }
        
        .prev-btn {
            left: 20px;
        }
        
        .next-btn {
            right: 20px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes zoomIn {
            from { transform: scale(0.5); }
            to { transform: scale(1); }
        }