/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Lato', sans-serif;
  }
  
  /* Header Top */
  .header {
    display: flex;
    flex-wrap: wrap;
    background-color: #f0f0f0;
  }
  .heading{
    font-size: 20px;
    color: #0089d0;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
  
  } 
  
  .logo1 {
    font-family:'Lato', sans-serif;
    font-weight: 40;
    position:relative;
    width: 30%;
    background-color: #051d40;
    color: #fff;
    padding: 1rem;
    text-align: center;
    /* flex: 1 1 100%; */
    font-size: 1rem;
    
  }
  
  .logo2 {
    background-color: #5c94cf;
    display: flex;
    align-items: center;
    color: white;
    /* flex: 1 1 100%; */
    padding: 1rem;
    width: 70%;
    /* flex-direction: column; */
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin-left: 1rem;
    justify-content: center;
    align-items: center;
  }

  .social-links li a {
    color: white;
    font-size: 1rem;
  }
  
  .social-links li a:hover {
    font-size: 1rem; /* Adjust icon size */
    color: #051d40 ; /* or your preferred color */
  }
  
  .top-right {
    margin-top: 0.5rem;
    margin-left: 1rem;
    text-align: right;
    /* padding: 0.5rem 2rem; */
    width: 100%;
    margin-right: 1rem;
  }
  .info-list {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .info-list a {
    color: white;
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
  }
  .info-list a:hover {
    color: #051d40;
    text-decoration: underline;
    
  }
  .info-list .icon {
    color: #051d40;
    font-size: 18px;
    
  }
  @media (max-width:768px){
    .logo1{
      display: none;
    }
    .logo2{
      width: 100%;
    }
    .social-links{
      display: none;
    }
  
  }
  /* NAVIGATION */
  .navbar {
    background-color: whitesmoke;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo-section {
    display: flex;
    align-items: center;
    max-width: 270px;
    overflow: hidden;
    margin-left: 20px;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  
  .logo{
    height: 40px;           /* Set a fixed height */
    width: auto;            /* Automatically adjust width to maintain aspect ratio */
    object-fit: contain;    /* Ensures image fits without distortion */
    display: block;
  }
  .logo-link img{
      height: 45px;
      width: auto;
      object-fit: contain;
  }
  
  .brand-name {
    font-size: 23px;
    font-weight: 550;
    color: #1c75bc;
    white-space: nowrap;
    word-spacing: 2px;
  }
  
  .nav-links{
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 15px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-right: 5rem;
    
  }
  .nav-links a {
    text-decoration: none;
    color: black;
    padding: 0.5rem 1rem;
    
  }
  .nav-links a:hover {
    color: #5c94cf;
    transition: 0.5s;
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
  }
  .dropdown-menu {
    list-style: none;
    display: none;
    position: absolute;
    top: 100%;
    background-color: #2c3640;
    padding: 0;
    right: -1.8rem;
  }
  @media (min-width:1024px){
    .dropdown-menu{
      width:10rem;
    }
    .nav-links{
        margin-bottom: 1rem;
        height: 1rem;
    }
}
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown-menu li a {
    color: white;
    padding: 10px 15px;
    font-family:'Lato', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    display: block;
  }
  .dropdown-menu li a:hover {
    background-color: #5c94cf;
    color: white;
    transition: 0.4s;
  }
  
  /* Contact Button */
  .btn-box {
    padding: 4px; /* Optional: reduce padding to avoid misalignment */
    margin: 0;
  }
  
  .btn-style-one {
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    color: white !important;
    text-decoration: none;
    padding: 10px 30px;
    font-weight: 800;
    border-radius: 3px;
    background-color: #5c94cf;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    transition: background-color 0.3s;
  }
  
  .btn-style-one:hover {
    background-color: #062758;
    color: white;
  }
  
  /* Hamburger menu */
  .hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: whitesmoke;
      padding: 1rem 0;
      margin-right: 0;
      
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      text-align: center;
      width: 100%;
    }
  
    .dropdown-menu {
      position: static;
      background-color: #2c3640;
    }
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    gap: 2rem;
  }
  
  /* Sidebar */
  .sidebar {
    flex: 1 1 250px;
    max-width: 300px;
     opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease-out;
}

.sidebar.visible {
  opacity: 1;
  transform: translateY(0);
  }
  
  .head {
    background: white;
    border-left: 5px solid #5c94cf;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-weight: bold;
    text-align: center;
  }
  
  .product-list {
    list-style: none;
    margin-top: 1rem;
  }
  
  .product-list li a {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    text-decoration: none;
    color: #333;
    background-color: #f4f4f4;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s;
  }
  
  .product-list li a:hover {
    background-color: #5c94cf;
    color: white;
  }
  
  /* Main Content */
  .content {
    flex: 2 1 600px;
  }
  
  /* Banner */
   /* Banner */
  .tagline{
    margin-left: 5rem;
    margin-top: 3rem;
    font-size: 45px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white ;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    
  }

  .main1.visible .tagline {
  opacity: 1;
  transform: translateY(0);
}

.main1 {
  background-image: url("banner.png");
  background-size: cover;
  width: auto;
  height: 500px;
  padding: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.main1.visible {
  opacity: 1;
  transform: translateY(0);
}
main.visible .tagline1 {
  opacity: 1;
  transform: translateY(0);
}
.video-container {
  position: relative;
  width: 100%;
  height: 500px; /* adjust as needed */
  overflow: hidden;
   opacity: 0; 
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}



.video-container.visible {
  opacity: 1;
  transform: translateY(0);
}


#heroVideo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay-text {
  position: absolute;
  top: 30%;
  left: 20%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  color: white;
}

.overlay-text .tagline {
   margin-left: 5rem;
    margin-top: 3rem;
    font-size: 45px;
     word-spacing: 3px; 
  
          

    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white ;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    
}

.overlay-text .tagline1 {
 margin-left: 5rem;
    margin-top: 1rem;
    word-spacing: 8px;
    font-size: 35px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white ;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

  .main {
  
  background-size: cover;
  width: auto;
  height: 500px;
  padding: 20px;
  
}



.main.visible {
  opacity: 1;
  transform: translateY(0);
}


main.visible .tagline {
  opacity: 1;
  transform: translateY(0);
}

@media  (max-width: 1300px) {
  .video-container {
    height: 450px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .overlay-text .tagline {
    font-size: 45px;
    margin-left: 4rem;
  }
  
}
@media (max-width: 1180px) {
  .video-container {
    height: 400px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .overlay-text .tagline {
    font-size: 40px;
    margin-left: 4rem;
  }
  
}


@media (max-width: 1024px) {
  .video-container {
    height: 360px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
   .overlay-text .tagline {
    font-size: 37px;
    margin-left: 3rem;
  }
  
 
}

/* Small screens / mobile: max-width 768px */
@media (max-width: 970px) {
  .video-container {
    height: 320px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
   .overlay-text .tagline {
    font-size: 35px;
    margin-left: 3rem;
  }
  
 
}
@media (max-width: 841px) {
  .video-container {
    height: 290px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .overlay-text .tagline {
    font-size: 30px;
    margin-left: 3rem;
  }
  
}
@media (max-width: 769px) {
  .video-container {
    height: 250px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .overlay-text .tagline {
    font-size: 28px;
    margin-left: 3rem;
  }
  
} 
@media screen and (max-width: 641px) {
  .video-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
  }

  #heroVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 250%;                  /* Expand video so left 40% fills view */
    height: auto;
    object-fit: cover;
    object-position: left top;
    clip-path: inset(0 60% 0 0);  /* Clip right 60%, show left 40% */
  }

  .overlay-text {
    position: absolute;
    top: 15%;
    left: 40%;
    transform: translate(-50%, -15%);
    z-index: 1;
    
    /* Adjust font-size if needed */
  }
  .overlay-text .tagline {
    font-size: 35px;
    margin-left: 3rem;
  }
  .overlay-text .tagline1 {
    font-size: 28px;
    margin-left: 3rem;
  }
}
@media screen and (max-width: 510px) {
.video-container {
    position: relative;
    width: 100%;
    height: 360px;
    margin-bottom: 0;
     padding-bottom: 0;
    overflow: hidden;
     background-repeat: no-repeat;
  
  border-bottom: 1px solid black;
}
.overlay-text .tagline {
    font-size: 30px;
    margin-left: 3rem;
  }
  .overlay-text .tagline1 {
    font-size: 24px;
    margin-left: 3rem;
  }

}



@media screen and (max-width: 400px) {
.video-container {
    position: relative;
    width: 100%;
    height: 333px;
    margin-bottom: 0;
     padding-bottom: 0;
    overflow: hidden;
     background-repeat: no-repeat;
  
  border-bottom: 1px solid black;
}
.overlay-text .tagline {
    font-size: 26px;
    margin-left: 3rem;
  }
  .overlay-text .tagline1 {
    font-size: 22px;
    margin-left: 3rem;
  }

}

   .download-btn-container {
  padding-top: 1rem;
  text-align: center;
  width: 300px
}

.download-btn {
   display: block;            /* Makes it fill the container */
  width: 100%;  
  background-color: #062758;
  color: white;
  padding: 20px 10px;
  border-radius: 5px;
  word-spacing: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background-color: #5c94cf;
}
  
  /* Image Grid */
  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    
     opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
}

.image-grid.visible {
  opacity: 1;
  transform: translateY(0);

  }
  
  .image-grid img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
  }
   .section-title{
    font-size: 1.3rem ;
    margin-bottom: 0.5rem;
    opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-in-out;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);

  }
  .feature-box{
    opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-in-out;
  transition-delay: 0.2s;
}

.feature-box.visible {
  opacity: 1;
  transform: translateY(0);

  
  }
  
  /* Info Box */
  .info-box {
    background-color: #ecedee;
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
    line-height: 1.6rem;
    font-size: 1.06rem;
  }
   .features-wrapper {
  max-width: 1200px;
  margin: 0 auto; 
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9fafb;
  color: #1e293b;
  padding: 30px 20px;
  margin-top: 20px;
}


    .section-title {
      text-align: center;
      font-size: 1.4rem;
      font-weight: bold;
      color: #0f3057;
      margin-bottom: 30px;
    }

    

    .feature-block {
     
      padding-left: 20px;
      margin-bottom: 28px;
      position: relative;
  }

.feature-title {
  border-left: 4px solid #5c94cf;
  padding-left: 5px;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 6px;
    }
    
    .feature-desc {
      font-size: 1.1rem;
      color: #475569;
      line-height: 1.5;
    }
    @media screen and (max-width: 1023px) {
  .features-wrapper {
    padding: 20px 15px;
  }
  .section-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .feature-block {
    padding-left: 15px;
    margin-bottom: 20px;
  }
  .feature-title {
    font-size: 1.1rem;
  }
  .feature-desc {
    font-size: 1rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 479px) {
  .features-wrapper {
    padding: 15px 10px;
  }
  .section-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  .feature-block {
    padding-left: 10px;
    margin-bottom: 16px;
  }
  .feature-title {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  .feature-desc {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

  /* Table */
  .product-table {
    overflow-x: auto;
     opacity: 0;
     margin-top: 10px;
  transform: translateY(30px);
  transition: all 0.7s ease-in-out;
  transition-delay: 0.5s;

  
}

.product-table.visible {
  opacity: 1;
  transform: translateY(0);
  }
  .product-table h4{
    font-size: 1.3rem;
    text-align: center;
  }

  .product-table table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #5c94cf;
  }
  
  .product-table th,
  .product-table td {
    border: 1px solid #aaa;
    padding: 0.75rem;
    text-align: left;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .main-nav ul {
      flex-direction: column;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }
  
    .container {
      flex-direction: column;
    }
  
    .sidebar,
    .content {
      max-width: 100%;
      flex: 1 1 100%;
    }
  
    .image-grid {
      grid-template-columns: 1fr;
    }
  
     .download-btn-container {
        width: 100%;
        font-size: 0.8rem;
  }
 
}
@media screen and (min-width: 769px) and (max-width: 968px) {
      .sidebar {
        max-width: none;
        width: 100%;
        padding: 0.5rem;
      }
      .download-btn-container, .product-list li a {
        width: 100%;
        font-size: 0.9rem;
      }
      .product-list li a {
        padding: 0.75rem;
      }
      .head h2 { font-size: 1.3rem; }
    }
  footer {
    background-color: #051d40;
    color: white;
    padding: 40px 60px;
    font-family: sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  /* Logo Section */
  .footer-logo-box {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
  }
  
  .footer-logo {
    height: 45px;
    margin-right: 10px;
  }
  
  .footer-heading {
    font-size: 20px;
    font-weight: lighter;
    color: white;
    text-decoration: none;
  }
  a{
    text-decoration: none;
  }
  
  /* Info Section */
  .footer-info {
    flex: 2;
    min-width: 300px;
    font-size: 16px;
    color: #f1f1f1be;
    line-height: 1.6;
  }
  
  /* Contact Section */
  .footer-contact {
    flex: 1;
    min-width: 220px;
    text-align: left;
  }
  
  .footer-contact h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .footer-contact p {
    margin: 6px 0;
    font-size: 15px;
    color: #dddddd;
  }
  
  .footer-contact i {
    margin-right: 8px;
    color: #66b0ff;
  }
  
  .footer-contact a{
    color: white;
    text-decoration: none;
  }
  .footer-contact a:hover{
    color:#66b0ff;
    text-decoration: underline;
  }
  
  .fa-phone {
    color: #f1f1f1d5;
    font-size: 15px;
  }
  .email{
    color: #f1f1f1d3;
    font-size: 20px;
  
  }
  .add{
    color: #f1f1f1bb;
    font-size: 20px;
  }
  .name{
    text-align: center;
    width: 70%;
  
  }

  .carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
   margin: auto;
  border: 2px solid rgb(154, 180, 215);
  background-color: rgb(241, 241, 242);
   opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
}

.carousel-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.carousel-track {
  display: flex;
  align-items: center;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  justify-content: center;
  display: flex;
 
}


.carousel-slide img {
  margin: 0;
  padding: 0;
  max-width: 50%;
  object-fit: contain;
}
.carousel-slide table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  display: flex;
  /* flex-direction: column; */
  font-size: 1.2rem;
    margin: 0;
  padding: 0;
  
}
.carousel-slide th,
.carousel-slide td {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: left;
}

.table-container {  
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.8);
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
}
.prev { left: 10px; }
.next { right: 10px; }

.table-label {
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #333;
  font-size: 1.5rem;
}

@media (max-width: 1024px) {
  .carousel-slide {
    flex-direction: row; /* keep image and table side-by-side */
    align-items: center;
    gap: 24px;
    padding: 16px;
    flex-wrap: wrap; /* allows wrapping if needed */
  }

  .carousel-slide img {
    max-width: 45%;
    height: auto;
  }

  .table-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-slide table {
    display: table;
    width: 100%;
    margin: 0;
    font-size: 1.05rem;
    border-collapse: collapse;
  }
  .table-label {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .carousel-slide th,
  .carousel-slide td {
    padding: 8px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 16px;
  }

  .carousel-slide img {
    max-width: 90%;
    height: auto;
  }

.table-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensure contents center inside */
  }

.carousel-slide table {
    display: table !important;       /* Forces proper table behavior */
    width:90% !important;          /* Prevents stretching */
    margin: 0 auto !important;       /* Centers the table */
    font-size: 1rem;
    border-collapse: collapse;
  }

  .table-label {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .carousel-slide th,
  .carousel-slide td {
    font-size: 1rem;
    padding: 8px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 12px;
  }

  .carousel-slide img {
    max-width: 100%;
    height: auto;
  }

  .table-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center contents */
  }

.carousel-slide table {
    display: table !important;
    width: 90% !important;         /* slightly wider than 'auto' for better mobile readability */
    margin: 0 auto !important;
    font-size: 0.95rem;
    border-collapse: collapse;
  }

  .table-label {
    text-align: center;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }

.carousel-slide th,
  .carousel-slide td {
    font-size: 0.9rem;
    padding: 6px;
    text-align: left;
  }
}

.image-swap {
    width: 500%;
    height: 200px;
    position: relative;
    overflow: hidden;
  }
  
  .image-swap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .hover-img {
    opacity: 0;
  }
  
  .image-swap:hover .default-img {
    opacity: 0;
  }
  
  .image-swap:hover .hover-img {
    opacity: 1;
  }
  
.zoom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
}

.zoom-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  animation: zoomIn 0.4s ease;
  border-radius: 6px;
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s; 
}

.zoom-close:hover {
  color: #ccc;
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Optional: cursor zoom icon */
.zoomable {
  cursor: zoom-in;
}

.image-swap.zoomable {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}