
/* Logo Styling */
.logo img {
    width: 100px; /* Adjust logo size as needed */
    height: auto;
  }
  
  /* Navigation Links */
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .nav-links a:hover {
    color: #ddd;
  }
  
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    align-items: center;
}

header {

    background-color: #2b365d;
    color: #fff;
    padding: 10px 0;
    font-family: Arial, Helvetica, sans-serif;
    position: fixed; /* Keep header fixed at the top */
    top: -20px;
    width: 100%;
    max-height: 90px;
    z-index: 1000; /* Higher z-index to stay on top of other elements */
}

.header {
    background-color: #323b58;
    padding: 5px;
    text-align: center;

    
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    
    
}

.nav-list > li {
    position: relative;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: flex;
    transition: color 0.3s ease;
    border-radius: 12px;
    background: rgba(18, 246, 68, 0.6)
}
.nav-item:hover {
    text-decoration: none;
    display: flex;
    background: rgba(12, 73, 255, 0.6);
    transform: scale(1.05);  
}
/* Hover Effects for each nav item */
.home:hover {
    animation: rgbShift 1s infinite alternate;
    transform: scale(1.05);  

}

.products:hover {
    animation: rainbowPulse 1s infinite alternate;
    transform: scale(1.05);  
}

.projects:hover {
    animation: colorWave 1.5s infinite alternate;
    transform: scale(1.05);  
}

.event:hover {
    animation: shimmerEffect 1s infinite alternate;
    transform: scale(1.05);  
}

.about:hover {
    animation: gradientGlow 1s infinite alternate;
    transform: scale(1.05);  
}

/* Dropdown menu styling */
.dropdown {
  display: auto;
  background-color: #00ffd978;
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2);
  z-index: 1;

}

.dropdown li a {
    padding: 5px 1px; /* Adjust the padding here */
    min-width: 200px;
    color: white;
    text-decoration: none;
    display: block;
    border-radius: 10px;
    background: rgba(3, 83, 143, 0.95);
    

}

.dropdown li a:hover {
    background-color: #ff0000;
    background: rgba(47, 47, 253, 0.95);
    animation: shimmerEffect 1s infinite alternate;
    transform: scale(1.05);  
}

.nav-list li:hover .dropdown {
    display: block;
    transform: scale(1.05);  
    
}



/* Keyframes for RGB Effects */

/* Home: RGB Shift Effect */
@keyframes rgbShift {
    0% { color: #FF0000; }
    33% { color: #00FF00; }
    66% { color: #0000FF; }
    100% { color: #FF0000; }
}

/* Products: Rainbow Pulse */
@keyframes rainbowPulse {
    0% { color: #FF0000; }
    20% { color: #FF0000; }
    60% { color: #00FF00; }
    100% { color: #0000FF; }
 
}

/* Projects: Color Wave Effect */
@keyframes colorWave {
    0% { color: #FF0000; }
    20% { color: #FF0000; }
    60% { color: #00FF00; }
    100% { color: #0000FF; }
}

/* Event: Shimmer Effect */
@keyframes shimmerEffect {
    0% { color: #FFDD00; text-shadow: 2px 2px 8px rgba(255, 221, 0, 0.8); }
    50% { color: #FFFFFF; text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.8); }
    100% { color: #FFDD00; text-shadow: 2px 2px 8px rgba(255, 221, 0, 0.8); }
}

/* About: Gradient Glow */
@keyframes gradientGlow {
    0% { color: #FF00FF; }
    50% { color: #00FFFF; }
    100% { color: #FF00FF; }
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    
}

nav li {
    padding: 10px;
    position: relative;
}

nav a {
    color: white;
    text-decoration: none;
}

nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
}

nav li:hover ul {
    display: block;
}
/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  height: 24px;
  width: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 5px;
  transition: all 0.3s ease;
  z-index: 1000;

}

/* When the menu is active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  z-index: 1000;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header{
    z-index: 1000; /* Higher z-index to stay on top of other elements */
    position: fixed; /* Keep header fixed at the top */

  }
  .hamburger {
    display: flex;
  }
/* Hide menu on mobile by default */
.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
}

@media (max-width: 991px) {
  .nav-list {
    position: absolute;
    top: 70px;
    right: 0;
    background: #2b365d;
    flex-direction: column;
    width: 240px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  .nav-list.active {
    max-height: 500px; /* expand */
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }

  .nav-list li.open > .dropdown {
    display: flex;
    flex-direction: column;
  }
}

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #2b365d;
    padding: 10px 0;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
  }
}


footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}
 

/* Caret styling */
.caret {
    display: inline-block;
    margin-left: 5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    /* border-top: 5px solid #fff; Adjust color as needed */
    vertical-align: middle;
  }
  
  /* Optional: Add hover effect */
  .nav-links a:hover .caret {
    border-top-color: #ffcc00; /* Change color on hover */
  }
 
  
  /* Project References Section */
  .projects-sections {
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
  }
  
  .grid-container {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
  }
  
  .grid-item {
    background: #f4f4f4;
    padding: 1rem;
    text-align: center;
    border-radius: 5px;
  }
  
  .grid-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
  }
  .grid-item img:hover {
    transform: scale(1.1);  /* Increase size to 110% on hover */
  }
  
  /* Footer Section */
 /* Footer Styles */
.footer {
  background-color: #323b58;
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-item {
  flex: 1 1 300px;
  text-align: left;
}

.footer-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #809aff;
}

.footer-item p,
.footer-item a {
  color: white;
  font-size: 14px;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-item a:hover {
  text-decoration: underline;
}

.social-links,
.quick-links {
  list-style: none;
  padding: 0;
}

.social-links li,
.quick-links li {
  margin-bottom: 8px;
}

.social-links a,
.quick-links a {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background-color: #00ffff2b;
  padding: 5px 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}


/* Special Styling for "Projects" and "Request Quotation" */
.special-link {
  font-weight: bold;
  border-radius: 5px;
  padding: 8px 12px;
  text-align: center;
}

.special-link.projects {
  background-color: #1e90ff; /* Blue background for "Projects" */
  color: white;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.special-link.projects:hover {
  background-color: #105aa3; /* Darker blue on hover */
  transform: scale(1.05);
}

.special-link.quotation {
  background-color: #28a745; /* Green background for "Request Quotation" */
  color: white;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.special-link.quotation:hover {
  background-color: #1e7b31; /* Darker green on hover */
  transform: scale(1.05);
}

.social-links a:hover,
.quick-links a:hover {
  color: #ffdd00;
  background-color: #333333;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #ffffff;
  padding-top: 10px;
  font-size: 12px;
}

.back-to-top {
  color: #bbff00;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
}

.back-to-top:hover {
  color: #ffdd00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-item {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-item h3 {
    font-size: 16px;
  }

  .footer-item p,
  .footer-item a {
    font-size: 13px;
  }

  .social-links a,
  .quick-links a {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 11px;
  }

  .back-to-top {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 15px;
  }

  .footer-item h3 {
    font-size: 14px;
  }

  .footer-item p,
  .footer-item a {
    font-size: 12px;
  }

  .social-links a,
  .quick-links a {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 10px;
  }

  .back-to-top {
    font-size: 12px;
  }
}

  /* product */

h1 {
    text-align: center;
  }
  
  .product-sections {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .product-sections a {
    padding: 15px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .product-sections a:hover {
    background-color: #555;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  table, th, td {
    border: 1px solid #333;
    padding: 10px;
    text-align: left;
  }
  
  th {
    background-color: #f2f2f2;
  }
  
  img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto 20px auto;
  }

  main {
  padding: 20px;
}

/* Project Grid Styles */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-item {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  background-color: #f9f9f9;
}

.project-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.project-item h2 {
  font-size: 16px;
  margin-top: 10px;
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.pagination a {
  text-decoration: none;
  color: #007bff;
  margin: 0 10px;
}

.pagination a:hover {
  text-decoration: underline;
}

.pagination span {
  margin: 0 10px;
  font-weight: bold;
}


/* Section styling */
.carousel-section {
  
  padding: 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

/* Carousel styles */
.swiper-container {
  position: relative;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.swiper-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90%;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-content img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* Zoom effect when hovered */
.slide-content img:hover {
  transform: scale(1.1); /* Scale the image by 1.2x */
  cursor: pointer;  /* Change cursor to indicate interactive behavior */
}

/* Base styles for the image */
.slide-content img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;  /* Smooth transition for zoom effect */
}

/* Zoom effect when the image is hovered */
.slide-content:hover img {
  transform: scale(1.4);  /* Scale the image by 1.2 times */
}

/* Expanding effect on hover for the container */
.slide-content:hover {
  transform: scale(1.05);  /* Slightly increase the size of the container */
}

.slide-content p {
  position: absolute;
  bottom: 10px; /* Adjust as needed */
  left: 5px; /* Adjust as needed */
  margin: 0;
  color: white;
  font-size: 1rem;
  background-color: rgba(0, 4, 255, 0.5); /* Semi-transparent background for readability */
  padding: 2px 5px;
  border-radius: 10px;
}

/* Buttons */
button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #323b58;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}


/* Video Section  */
/* Video Carousel Styles */
.video-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.videos {
  position: relative;
  width: 100%;
  height: 100%;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hidden {
  display: none;
}


/* Content Overlay */
.content_vdo {
  position: absolute;
  z-index: 3; /* Above video */
  color: white;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.content_vdo h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #ffffff; /* Default Neon Blue */
  transition: color 0.5s ease-in-out, text-shadow 0.5s ease-in-out;
  text-shadow: 
      0 0 5px #00ffff58, 
      0 0 20px #00ffff92, 
      0 0 50px #00ffff81; /* Strong Neon Glow */
}



.content_vdo p {
  font-size: 1.2rem;
  color: white;

}

/* Video Carousel Styles */
.video-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Video Backgrounds */
.videos {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide inactive videos */
.hidden {
  display: none;
}

/* Content Overlay */
.content_vdo {
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 10px;
}

/* Pagination Bullets */
.pagination_vdo {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  background: none;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

/* Progress Circle */
.progress-circle {
  width: 36px;
  height: 36px;
  transform: rotate(-90deg);
  position: absolute;
}

.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 4;
}

.circle {
  fill: none;
  stroke: white;
  stroke-width: 4;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 5s linear;
}

.active .circle {
  stroke-dashoffset: 0;
}

/* Pagination Bullets */
.pagination_vdo {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.loading.swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  position: relative;
}

.loading .c-progress {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
}

.loading.swiper-pagination-bullet:hover {
  transform: scale(1.15);
}

.progress-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 4;
}

.circle {
  fill: none;
  stroke: #3498db;
  stroke-width: 4;
  stroke-dasharray: 100, 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 5s linear;
}

/* public posts  */

.post-section {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
}

.post-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.post-content {
  font-size: 1em;
  margin-bottom: 15px;
}

.post-image, .post-video {
  max-width: 100%;
  margin-bottom: 15px;
}

.post-link {
  display: block;
  color: #007bff;
  text-decoration: none;
  margin-bottom: 10px;
}

.related-posts h3 {
  margin-top: 20px;
}

.related-posts ul {
  list-style: none;
  padding: 0;
}

.related-posts ul li a {
  text-decoration: none;
  color: #333;
}

/* admin section panel  */

.admin-section {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
}

form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

form input, form textarea, form button {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #0056b3;
}


/* Product categories  */

.product-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}
.product-sections h1 {
  color: white;
}
.product-item {
  position: relative;
  overflow: hidden;
  width: 350px;
  height: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease;
}

.product-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.product-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease, color 0.3s ease;
}

.product-item:hover img {
  transform: scale(1.1); /* Smooth zoom-in effect */
}

.product-item:hover span {
  background: rgba(18, 19, 18, 0.4); /* Change background */
  color: #00fff2; /* Change text color */
}



.get-quote-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #1a73e8, #4caf50);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}

.get-quote-button:hover {
  background: linear-gradient(90deg, #4caf50, #1a73e8);
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  color: #0e0eff;

}

.get-quote-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: scale(0);
  border-radius: 50%;
  transition: all 0.5s ease-out;
}

.get-quote-button:hover::before {
  opacity: 1;
  transform: scale(3);
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
  .get-quote-button {
      font-size: 14px;
      padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  .get-quote-button {
      font-size: 12px;
      padding: 8px 16px;
  }
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1e3a8a;
  color: white;
}

.profile-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  /* padding: 60px; */
  margin-top: 50px;
}

.profile-content {
  flex: 1;
  max-width: 50%;
  padding: 40px;
}

.profile-content h2 {
  font-size: 30px;
  margin-bottom: 20px;

}

.profile-content ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 18px;
}

.profile-content ul li {
  margin-bottom: 15px;
}

.profile-images {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 40px;

}

.image-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.profile-images img {
  width: 45%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.profile-images img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .profile-section {
      flex-direction: column;
      align-items: center;
  }
  .profile-content, .profile-images {
      max-width: 90%;
      text-align: center;
  }
  .profile-content ul {
      padding-left: 0;
  }
}

@media (max-width: 768px) {
  .profile-content h1 {
      font-size: 36px;
  }
  .profile-content ul {
      font-size: 16px;
  }
  .profile-images img {
      width: 90%;
  }
}


/* General Styles for Links as Buttons */
.info-button {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  padding: 2px 5px;
  margin: 5px 0;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  color: white;
}

/* Button Colors */


.info-button.chat {
  background-color: #28a745; /* Green for Telegram Chat */
}

.info-button.chat:hover {
  background-color: #1e7b31;
  transform: scale(1.05);
}

.info-button.channel {
  background-color: #ffc107; /* Yellow for Telegram Channel */
  color: black;
}

.info-button.channel:hover {
  background-color: #e0a800;
  transform: scale(1.05);
}



/* Table Styling */
.table-section {
  margin-top: 40px;
  text-align: center;
  padding: 20px;
}

.table-section h2 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 15px;
}

table {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

table:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

th, td {
  padding: 15px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

th {
  background-color: #2b365d;
  color: white;
}

td {
  color: #333;
  background-color: #f9f9f9;
}

tr:nth-child(even) td {
  background-color: #f0f0f0;
}

tr:hover td {
  background-color: #d0e4ff;
  color: #2b365d;
}

/* Responsive Design */

/* Medium Screens (Tablets, Small Laptops) */
@media (max-width: 1024px) {
  table {
      width: 100%;
  }

  th, td {
      padding: 12px;
      font-size: 16px;
  }
}

/* Small Screens (Mobile Devices) */
@media (max-width: 768px) {
  table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
      border-radius: 0;
  }

  th, td {
      padding: 10px;
      font-size: 14px;
  }

  .table-section h2 {
      font-size: 22px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


h1 {
  margin-bottom: 20px;
  font-size: 30px;
  color: #ffffff;
}

.gallery-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  max-width: 1400px;
  margin: auto;
  padding: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-section {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}