/* Reset some basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styles */
  body {
    font-family: 'Poppins', sans-serif;
  }
  

  
 /* Header and Navigation */
header {
  background-color: #000; /* Black background */
  padding: 10px 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
a {
  text-decoration:none; /* Adds underline */
  text-decoration-thickness: 2px; /* Adjusts the thickness */
  text-underline-offset: 3px; /* Adds space between the text and underline */
  color: #ffffff;
   /* Link color */
}

a:hover {
  text-decoration-color: #ff6600; /* Changes underline color on hover */
}
h4 ,h2 {
  
    color: #f4d03f;
   
}

/* Logo */
.logo img {
  height: 80px; /* Logo size */
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0;
  flex-grow: 1;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  padding: 10px;
  transition: background-color 0.3s;
}

.nav-links a:hover {
  background-color: #333;
  border-radius: 5px;
}

.contact-us {
  background-color: black;
  color: white;
  padding: 50px;
  text-align: center;
}
.contact-us h2 {
  color: goldenrod;
  margin-bottom: 20px;
}
.contact-us p {
  margin-bottom: 30px;
  line-height: 1.6;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: 1px solid goldenrod;
  background-color: black;
  color: white;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}
.contact-form button {
  background-color: goldenrod;
  color: black;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}
.contact-form button:hover {
  background-color: white;
  color: goldenrod;
}
/* Right Button */
.right-button-container {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.get-id-btn {
  background-color: goldenrod;
  color: black;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.get-id-btn:hover {
  background-color: #ffd700;
  transform: scale(1.1);
}

/* Hamburger menu icon for mobile */
.menu-icon {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    ul{
    padding:40px;
    list-style-position: inside;
    text-align: left;
}
      html,body{
      margin:0;
      padding:0;
      width:100%;
      height:100%;
      overflow-x:hidden;
  }
    .mobile{
        display:none;
    }
  .nav-links {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .right-button-container {
    display: none; /* Hide the button on mobile unless toggled */
  }
}

@media (max-width: 480px) {
    .table-container {
    padding:0px;}
  .get-id-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

  
  /* Banner Slider */
  .banner-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .slides {
    display: flex;
    transition: transform 1s ease-in-out;
  }
  
  .slide {
    min-width: 100%;
    display: none; /* Hide all slides initially */
  }
  
  .slide img {
    width: 100%;
    height: auto;
  }
  /* Section styles */
.live-casino-section {
    background-color: black; /* Black background */
    padding: 50px 0;
    text-align: center;
    color: white; /* White text color */
    /* border: 5px solid white;
    border-radius: 15px; 
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); 
    margin: 20px;  */
}

.live-casino-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-family: Arial, sans-serif; /* Use a sans-serif font for clarity */
}

/* Grid container */
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 images per row on larger screens */
    gap: 20px; /* Space between images */
    justify-items: center; /* Center the images in their grid cells */
}

/* Image styling */
.image-item img {
    width: 100%; /* Images take up full width of grid cells */
    height: auto;
    border-radius: 8px; /* Rounded corners for images */
    BORDER: 2PX SOLID GOLD;
}
.border-line {
    height: 1px; /* Height of the line */
    background-color: white; /* White color for the line */
    margin: 2px 0; /* Space before and after the line */
}
/* Mobile-friendly adjustments */

/* Tablets and below (max-width 768px) */
@media (max-width: 768px) {
    ul{
    padding:40px;
}
    .image-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row */
    }
}

/* Phones and below (max-width 480px) */
@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr; /* 1 image per row on small screens */
    }
    
    .live-casino-section h2 {
        font-size: 28px; /* Adjust heading size for mobile */
    }
    
    .image-item img {
        width: 90%; /* Make images a little smaller on very small screens */
    }
}

/* Section Styling */
.whatsapp-section {
    background-image: url(img/bg9.jpg);
    /* background-attachment: fixed; */
    background-position: 50%;
    background-size: cover;
    color: white; /* White text color */
    padding: 10px 0;
    text-align: center;

}

.whatsapp-section h2 {
    font-size: 32px;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
}

.whatsapp-text {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.button-container {
    margin-top: 20px;
}

/* Button Styling */
.get-id-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    background-color: goldenrod; /* Golden button color */
    color: white; /* White text */
    border-radius: 25px; /* Rounded corners for the button */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Animation for hover */
}

.get-id-btn:hover {
    background-color: yellow; /* Button color on hover */
    transform: scale(1.1); /* Slightly enlarge the button on hover */
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-section h2 {
        font-size: 28px;
    }

    .whatsapp-text {
        font-size: 16px;
    }

    .get-id-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}
/* Section Styling */
.cricket-id-section {
    background-image: url(img/bg4.jpeg);
    /* background-color: #1c1c1c; */
    color: white; /* White text color */
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    margin: 2px 0; /* Margin to separate from other sections */
    position: relative;
    overflow: hidden;
}

.cricket-id-section h2 {
    font-size: 36px;
    font-family: 'Montserrat', sans-serif; /* Elegant sans-serif font */
    color: #FFD700; /* Golden color for the heading */
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); /* Slight shadow for a glow effect */
}

.cricket-id-section p {
    font-size: 20px;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Flex Container for Video and List */
.content-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 30px;
    padding: 20px;
    border-radius: 20px;
    background-color: #2a2a2a; /* Slightly lighter background for content area */
}

.video-container {
    width: 50%;
    border-radius: 15px;
    overflow: hidden; /* Make sure the video has rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
}

.steps-container {
    width: 50%;
    text-align: left;
}

/* List and Icons */
.steps-container ul {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.steps-container li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 20px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease-in-out;
}

.steps-container li:hover {
    transform: translateX(10px); /* Slide effect on hover */
    color: #FFD700; /* Change text color on hover */
}

.icon {
    width: 45px;
    height: auto;
    margin-right: 20px;
    transition: transform 0.3s ease-in-out;
}

.icon:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
    .content-flex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .video-container,
    .steps-container {
        width: 100%;
    }

    .steps-container li {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cricket-id-section h2 {
        font-size: 28px; /* Smaller heading size on mobile */
    }

    .cricket-id-section p {
        font-size: 16px;
    }

    .steps-container li {
        font-size: 16px;
    }

    .icon {
        width: 40px; /* Smaller icons for mobile */
    }
}
.container {
    /* width: 80%; */
    /* margin: 50px auto; */
    padding: 10px;
    background-color: #111; /* Dark background for content section */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /*border-radius: 8px;*/
}
/* Style for the new section */
.online-betting-id {
    background-color: black; /* Black background for the section */
    padding: 50px 0;
    color: white; /* White text color */
  }
  
  /* Flexbox layout for the content */
  .content-flex {
    display: flex;
    align-items: center; /* Vertically align content */
    justify-content: center; /* Center content horizontally */
    gap: 30px; /* Add some space between image and text */
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Image container styles */
  .image-container img {
    width: 100%;
    max-width: 500px; /* Set a max width for the image */
    height: auto;
    border-radius: 8px; /* Optional: for rounded corners on the image */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional: add shadow for a nice effect */
  }
  
  /* Text container styles */
  .text-container {
    max-width: 600px; /* Limit the text container width */
  }
  
  /* Golden heading styling */
  .golden-heading {
    font-size: 2.5rem;
    color: gold; /* Golden color for the heading */
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase; /* Make the heading uppercase */
  }
  
  /* Text styling */
  .text-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  .info-table-section {
    text-align: center;
    padding: 20px;
    background-color: #121212; /* Dark background */
    color: white;
  }
  
  .info-table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
    max-width: 1000px;
    background-color: black; /* Black table background */
    color: white;
    border: 1px solid #555;
  }
  
  .info-table th, .info-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #555;
  }
  
  .info-table th {
    background-color: #333;
    font-weight: bold;
  }
  
  .info-table tr:nth-child(even) {
    background-color: #1a1a1a; /* Alternating row color */
  }
  
  .info-table tr:hover {
    background-color: #444;
  }
  .flex-section {
    display: flex;
    flex-wrap: wrap; /* Enables wrapping for smaller screens */
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #121212; /* Dark background for consistency */
    color: white;
    gap: 20px; /* Space between items */
  }
  
  .section-heading {
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: white;
  }
  
  .section-heading .golden-text {
    color: gold;
  }
  
  .text-content {
    flex: 1;
    max-width: 600px;
    font-family: 'Poppins', sans-serif;
  }
  
  .text-content p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .text-content ul {
    list-style-type: disc;
    margin-left: 20px;
  }
  
  .image-content {
    flex: 1;
    max-width: 500px;
    text-align: center;
  }
  
  .image-content img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px; /* Adds rounded corners */
  }
  
  @media (max-width: 768px) {
    .flex-section {
      flex-direction: column; /* Stack items vertically on smaller screens */
      text-align: center;
    }
  
    .text-content, .image-content {
      max-width: 100%;
    }
  
    .text-content ul {
      margin-right: 11px !important;
      text-align:left!important;
    }
      ul{
      margin-right: 11px !important;
      text-align:left!important;
    }
      ol{
      margin-right: 11px !important;
      text-align:left!important;
    }
  }
  .match-prediction-section {
    padding: 20px;
    background-color: #121212;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-align: left;
  }
  
  .golden-heading {
    font-size: 2rem;
    margin-bottom: 15px;
    color: gold;
    text-align: center;
  }
  
  .match-prediction-section p {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .flex-content {
    display: flex;
    flex-wrap: wrap; /* Enables wrapping for smaller screens */
    gap: 20px; /* Adds space between items */
  }
  
  .left-content, .right-content {
    flex: 1;
    max-width: 50%;
  }
  .right-content img {
    width:80%;
  }
  .left-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
  }
  
  .left-content ul {
    list-style-type: disc;
    margin-left: 2
  }
  @media (max-width: 768px) {
    .flex-content {
      flex-direction: column; /* Stack items vertically */
      gap: 15px; /* Reduce space between elements */
    }
  
    .left-content, .right-content {
      max-width: 100%; /* Full width for mobile */
      text-align: center; /* Center-align text */
    }
  
    .right-content img {
      width: 80%; /* Reduce image width for smaller screens */
      margin: 0 auto; /* Center the image */
    }
  }


  #bg{
    background-image: url("img/bg5.jpeg"); /* Replace with your background image URL */
  background-size: cover;
  background-position: center;
  text-align: center;
  }
  /* Section Styling */
.betting-star-section {
background-image: url("img/bg5.jpeg"); /* Replace with your background image URL */
  background-size: cover;
  background-position: center;
  text-align: center;
  /* padding: 100px 20px; */
  color: white;
  position: relative;
}

/* Overlay for better text visibility */
.betting-star-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  z-index: 1;
}

.betting-star-section .content {
  position: relative;
  z-index: 2;
}

/* Heading Styling */
.betting-star-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Button Styling */
.golden-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

/* Button Hover Animation */
.golden-button:hover {
  background-color: #FFA500;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.5);
  transform: translateY(-3px);
}

.content {
    text-align: center;
    /* margin-bottom: 40px; */
}

.content h1 {
    font-size: 40px;
    color: #f39c12; /* Golden color for headings */
    font-weight: bold;
    margin-bottom: 10px;
}

.content p {
    font-size: 18px;
    color: #fff; /* White text for paragraphs */
}

 /* Desktop View - Default Grid Layout */
  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .step {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }

  .step h2 {
    font-size: 24px;
    color: #f39c12;
    margin-bottom: 10px;
  }

  .step p {
    font-size: 16px;
    color: #fff;
  }

  .cta-btn {
    text-align: center;
    margin-top: 40px;
  }

  .cta-btn a {
    text-decoration: none;
    background-color: #f39c12;
    color: #000;
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .cta-btn a:hover {
    background-color: #e67e22;
  }

  /* Mobile View - Stacked Grid Items */
  @media (max-width: 768px) {
    .steps {
      display: grid;
      grid-template-columns: 1fr; /* Single column layout */
      gap: 20px; /* Space between items */
    }

    .step {
      padding: 15px; /* Adjust padding for mobile view */
    }

    .step h2 {
      font-size: 20px; /* Slightly smaller font size for mobile */
    }

    .step p {
      font-size: 14px;
    }

    .cta-btn a {
      font-size: 16px;
      padding: 10px 20px;
    }
  }
  /* Content Section with White Text and Black Background */
  .content {
    padding: 50px 20px;
    text-align: center;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
  }
  
  .content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .content h1 .highlight {
    color: goldenrod; /* Golden color for "Online Cricket ID" */
    font-weight: bold;
  }
  
  .content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto 20px;
    font-weight:100;
  }
  /* Main Footer Styling */
  /* Footer Bottom Section Styling */
.footer-bottom {
  background-color: #111;
  color: #ddd;
  padding: 20px 10px;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  border-top: 2px solid goldenrod;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* General Paragraph Styling */
.footer-bottom p {
  margin-bottom: 10px;
}

/* Games & Partners Styling */
.game-partners,
.partner-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}

.game-partners ul,
.partner-info ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.game-partners li,
.partner-info li {
    background: goldenrod;
    padding: 5px 10px;
    border-radius: 4px;
    transition: transform 0.2s ease;
    color: black;
}

.game-partners li:hover,
.partner-info li:hover {
  transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-bottom {
    padding: 15px 5px;
    gap: 15px;
  }

  /* Stack game-partners & partner-info vertically */
  .game-partners,
  .partner-info {
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
  }

  .game-partners li,
  .partner-info li {
    font-size: 12px;
    padding: 5px 8px;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 1.6;
  }
}


@media (max-width: 480px) {
  .game-partners li,
  .partner-info li {
    font-size: 10px;
    padding: 3px 6px;
  }

  .footer-bottom p {
    font-size: 10px;
  }
}

.footer {
  background: #000;
  color: #ddd;
  padding: 20px 10px;
  font-family: 'Poppins', sans-serif;

  border-top: 4px solid goldenrod;
}

/* Footer container responsive */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

/* Logo Section */
.footer-logo img {
  max-width: 100px;
  border-radius: 5px;
  margin-bottom: 10px;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 8px;
  margin: 10px 0;
}

.social-icon {
  height: 30px;
  width: 30px;
  color: white;
  background-color: goldenrod;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: #ffd700;
}

/* List Styling */
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-column {
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
  padding: 5px 0;
}

.footer-column ul li {
  margin: 5px 0;
}

/* Goldenrod Headings */
.goldenrod-heading {
  color: goldenrod;
  font-size: 16px;
  margin-bottom: 8px;
}

/* Load More Button */
.load-more-container {
  text-align: center;
  margin: 20px 0;
}

.load-more {
  background-color: goldenrod;
  border: none;
  padding: 10px 20px;
  color: black;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.load-more:hover {
  transform: scale(1.1);
}

  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      width: 100%;
      flex-direction: column; /* Stack links vertically */
      align-items: center;
      gap: 20px;
      margin-top: 10px;
    }
  
    .nav-links.active {
      display: flex; /* Show nav links when active */
    }
  
    .menu-icon {
      display: block; /* Show hamburger icon on mobile */
    }
  
    .logo img {
      height: 60px; /* Adjust logo size for mobile */
    }
  
    .content h1 {
      font-size: 28px; /* Smaller heading on mobile */
    }
  
    .content p {
      font-size: 16px; /* Smaller font size for mobile */
    }
  }
  .tigerexch-vip-section {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping for responsiveness */
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: #000; /* Black background */
  color: #fff; /* White text */
}

.content-container {
  flex: 1 1 50%; /* 50% width, responsive to screen size */
  max-width: 600px;
}

.image-container {
  flex: 1 1 50%; /* 50% width, responsive to screen size */
  max-width: 600px;
}

.image-container img {
  width: 100%;
  height: auto; /* Ensures the image maintains aspect ratio */
  border-radius: 10px;
}

.section-heading {
  font-size: 1.8rem;
  color: #FFD700; /* Golden color for heading */
  margin-bottom: 15px;
}

.content-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #fff; /* White text */
}

.content-container ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #fff; /* White text */
}

.content-container ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}



.halfsection{
  background-color: black;
  display: flex;
  width: 100%;
  padding: 25px;
}
.contents{

  width:50%;
}
.contents p{
  color: white;
  font-family: 'Poppins', sans-serif;

}
.contents h3 {
  color: goldenrod;
  font-family: 'Poppins', sans-serif;
}
.rightimage{
  width:50%;
}
.rightimage img {
  width: 100%;
}
#ww{
  background-image: url(img/bg3.jpeg);
}
#bg1{
  background-image: url(img/bg5.jpeg);
}
/* General Section Styling */
.grid-section {
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  padding: 20px;
  text-align: center;
}

.golden-heading {
  font-size: 2rem;
  color: goldenrod; /* Goldenrod for heading */
  margin-bottom: 20px;
}

/* Grid Container */
.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 20px; /* Space between grid items */
  text-align: left;
}

/* Grid Items */
.grid-item {
  background-color: #1a1a1a; /* Slightly lighter black for contrast */
  padding: 15px;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

.grid-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: goldenrod; /* Goldenrod for subheadings */
}

.grid-item p {
  font-size: 1rem;
  line-height: 1.6;
}
/* General Container */
.table-container {
  padding: 0px;
  color: #fff;
  background-color: #000;
  max-width: 1200px;
  margin: 4px auto;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-size: 1rem;
  text-align: center;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
/* Header Row */
thead th {
  background-color: goldenrod;
  color: #000;
  padding: 10px;
  border: 1px solid #555;
  font-weight: bold;
}

/* Table Body Rows */
tbody tr {
  transition: background-color 0.3s ease;
}

tbody tr:nth-child(even) {
  background-color: #1a1a1a; /* Dark grey for even rows */
}

tbody tr:hover {
  background-color: #333; /* Slightly lighter grey on hover */
}

/* General Cell Styling */
td {
  padding: 10px;
  border: 1px solid #555;
  line-height: 1.6;
}
/* FAQ Section Main Wrapper */
.faq-section {
  padding: 30px 20px;
  max-width: 1200px;
  margin: 2px auto;
  background-color: #222; /* Subtle greyish background */
  /* border-radius: 8px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

/* Section Heading */
.section-heading {
  text-align: center;
  color: #f4d03f; /* Golden color for the heading */
  font-size: 2.2rem;
  margin-bottom: 25px;
}

/* FAQ Container */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Individual FAQ Item */
.faq-item {
  background-color: #333;
  border: 1px solid #555;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

/* FAQ Question Button */
.faq-question {
  background: linear-gradient(to right, #555, #333);
  color: #f4d03f;
  font-size: 1rem;
  width: 100%;
  padding: 12px 20px;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f4d03f;
  color: black;
}

/* FAQ Answer Section */
.faq-answer {
  display: none;
  padding: 12px 20px;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
  background-color: #222;
  transition: all 0.3s ease;
}

/* Active Logic - When clicked */
.faq-item.active .faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .table-container {
        padding:0px!important;
    }
  table {
    font-size: 0.9rem;
  }
}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr; /* Single column for small screens */
  }
}

/* Mobile-Friendly Design */
@media (max-width: 768px) {

  .halfsection{
    display: block;
    padding:0px;

  }
  .contents{
    width:100%;
  }
  .rightimage{
    width:100%;
  }
  .tigerexch-vip-section {
    flex-direction: column; /* Stack content vertically on smaller screens */
  }

  .content-container,
  .image-container {
    flex: 1 1 100%; /* Take full width */
  }
}

 /* Section Styling */
 .blogs-section {
  background-color: #000;
  color: #ddd;
  padding: 50px 20px;
  font-family: 'Arial', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: goldenrod;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Blog Container Grid */
.blogs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Blog Card */
.blog-card {
  background-color: #1a1a1a;
  border: 1px solid #daa520;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.7);
}

/* Blog Image */
.blog-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid goldenrod;
}

/* Blog Content */
.blog-content {
  padding: 15px 20px;
  color: #ddd;
  text-align: center;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: goldenrod;
  transition: color 0.2s ease;
}

.blog-title:hover {
  color: #ffd700;
}

.blog-excerpt {
  font-size: 14px;
  margin-bottom: 15px;
  color: white;
  line-height: 1.6;
}

/* Read More Button */
.read-more {
  text-decoration: none;
  color: white;
  background-color: goldenrod;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.read-more:hover {
  background-color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blogs-container {
      grid-template-columns: 1fr;
  }

  .blog-card {
      margin:22px;
  }

  .blog-image img {
      height: 150px;
  }
}

@media (max-width: 480px) {
  .blogs-container {
      grid-template-columns: 1fr;
  }

  .section-title {
      font-size: 24px;
  }

  .blog-title {
      font-size: 18px;
  }

  .blog-excerpt {
      font-size: 12px;
  }
}
 /* Banner Section */
.blog-banner {
    background: linear-gradient(to right, #000, #333); /* Smooth gradient effect */
    padding: 50px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    border-bottom: 3px solid goldenrod;
    /* margin-bottom: 30px; */
    /* border-radius: 8px; */
  }
  
  .banner-title {
    font-size: 36px;
    color: goldenrod;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    .banner-title {
      font-size: 28px;
    }
  }
  
  @media (max-width: 480px) {
    .banner-title {
      font-size: 22px;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .blogs-container {
      grid-template-columns: 1fr;
    }
  }
  