/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Positioning for 'INDIAN CARRIERS' text */
.indian-carriers-text {
    position: fixed;
    top: 24px;
    left: 110px;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    z-index: 9999;
    background: linear-gradient(
        270deg,
        #FF9933,
        #FFFFFF,
        #138808,
        #FFFFFF,
        #FF9933
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flagWave 6s ease infinite;
}

@keyframes flagWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Transparent Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #00bfff;
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 8px;
}

/* Apply Button */
.apply-btn {
    background-color: #00bfff;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    border: none;
}

.apply-btn:hover {
    background-color: #009fe3;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
}

.hero .overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
    text-align: center;
    border-radius: 15px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: bold;
    background: linear-gradient(
        270deg,
        #FF9933,
        #FFFFFF,
        #138808,
        #FFFFFF,
        #FF9933
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flagWave 6s ease infinite;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    background: linear-gradient(
        270deg,
        #FF9933,
        #FFFFFF,
        #138808,
        #FFFFFF,
        #FF9933
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flagWave 6s ease infinite;
}


.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.btn {
    padding: 20px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.apply {
    background-color: #00bfff;
    color: white;
}

.discord {
    background-color: #f39130;
    color: white;
}

.truckersmp {
    background-color: #ff0000;
    color: white;
}

.apply:hover {
    background-color: #009fe3;
}

.discord:hover {
    background-color: #d77d28;
}

.truckersmp:hover {
    background-color: #9f2b2b;
}

/* Features Section */
.features-section {
    padding: 50px;
    background-color: #ffffff;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.feature {
    text-align: center;
    max-width: 300px;
}

.feature i {
    font-size: 3rem;
    color: #00bfff;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Statistics Section */
.statistics-section {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 2px solid #ddd;
}

.statistics-section p {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #666;
}

.statistics-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.statistics-section .subtitle {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 40px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 200px;
}

.stat {
    text-align: center;
    max-width: 150px;
}

.stat i {
    font-size: 3rem;
    color: #00bfff;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Convince Section */
#convince {
    padding: 60px;
    background: linear-gradient(to right, #ff9933, #138808);
    text-align: center;
    color: white;
}

.convince-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.convince-buttons a {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.apply {
    background-color: #00bfff;
}

.learn-more {
    background-color: #f39130;
}

.convince-buttons a:hover {
    transform: translateY(-3px);
}

.facebook-link {
    margin-top: 20px;
}

.facebook-btn {
    background-color: #3b5998;
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.facebook-btn:hover {
    background-color: #2d4373;
}

#convince {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#convince.visible {
    opacity: 1;
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 25px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    font-size: 1.2rem;
    margin: 0;
}

/* Scroll Down Arrow Styles */
#scrollArrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(128, 128, 128, 0.3); /* Transparent grey background */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: bounce 2s infinite; /* Arrow bounce animation */
    transition: background-color 0.3s;
}

#scrollArrow:hover {
    background-color: rgba(128, 128, 128, 0.5); /* Slightly darker on hover */
}

#scrollArrow i {
    color: white;
    font-size: 24px;
    opacity: 0.8; /* Slight transparency */
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features {
        flex-direction: column;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* About Us Hero Section Styling */
.about-hero {
    position: relative;
    background: url('Aboutus2.png') center/cover no-repeat;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}


.about-hero h1 {
    font-size: 4rem;
    font-weight: bold; /* Make the text bold */
    margin-top: -10px; /* Move the heading up (negative value) or down (positive value) */
    color: #ffffff; /* Dark text for contrast */
}


.about-hero p {
    margin-top: 20px; /* Add space below the heading for the paragraph */
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    line-height: 1.5;
    color: #ffffff; /* Medium text color for better readability */
}


/* About Content Section */
.about-content {
    padding: 2rem 10%;
    background-color: #f9f9f9;
}

.about-content .content-box {
    background: white;
    border-left: 5px solid #007BFF; /* Highlight border */
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.about-content .content-box p {
    line-height: 1.8;
    font-size: 1.3rem;
}


/* Timeline Section */
.timeline {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    position: relative;
}

.timeline h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.timeline p {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 40px;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Vertical Line */
.timeline-container::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #ddd;
    top: 0;
    bottom: 0;
    left: 50%; /* Place the line in the center */
    transform: translateX(-50%);
    z-index: 0;
}

/* Timeline Item */
.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
    opacity: 0; /* Initially hidden */
    transform: translateY(30px); /* Move them a bit lower */
    transition: opacity 0.6s ease, transform 0.6s ease; /* Animation for fade-in */
}

/* Visible class to be added when item is in view */
.timeline-item.visible {
    opacity: 1;
    transform: translateY(0); /* Move to the original position */
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse; /* Alternate layout */
}

.timeline-item .content,
.timeline-item .date {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 40%;
    z-index: 1; /* Ensure it overlaps the line */
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .timeline-item .date {
        width: 60%; /* Adjust for mobile screens */
    }
}

.timeline-item .content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.timeline-item .content p {
    font-size: 1rem;
    color: #555;
}

.timeline-item .date {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

/* Circle Marker */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #0078D7; /* Circle color */
    border: 2px solid #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%; /* Place marker on the line */
    transform: translate(-50%, -50%);
    z-index: 2;
} 

/* FAQ Section */
.faq {
  text-align: center;
  padding: 50px 20px;
}

.faq h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 10px; /* Add smooth, rounded edges */
  margin-bottom: 15px;
  overflow: hidden;
  text-align: left;
  width: 60%; /* Adjust the width for smaller boxes */
  margin: 15px auto; /* Center the boxes horizontally */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a slight shadow for a softer look */
}

.faq-question {
  background: #f9f9f9;
  padding: 10px 15px;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  border-radius: 10px; /* Apply smooth edges to match the container */
}

.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 10px 15px;
  background: #fff;
  font-size: 0.9rem;
  color: #555;
  border-radius: 0 0 10px 10px; /* Smooth edges for the bottom */
}

.faq-answer p {
  margin: 0;
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}

/* Social Section */
.social-section {
  position: relative;
  width: 100%;
  height: 300px;
  background: url('aboutbg2.jpg') center center / cover no-repeat;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* White transparent overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.social-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link a {
  font-size: 2.5rem;
  color: inherit;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

#discord-btn a {
  color: #5865F2; /* Discord purple-blue */
}

#discord-btn a:hover {
  color: #4752C4; /* Slightly darker on hover */
  transform: scale(1.2);
}

#instagram-btn a {
  color: #E1306C; /* Instagram pink */
}

#instagram-btn a:hover {
  color: #78072d; /* Lighter pink on hover */
  transform: scale(1.2);
}

#youtube-btn a {
  color: #FF0000; /* YouTube red */
}

#youtube-btn a:hover {
  color: #C30909; /* Darker red on hover */
  transform: scale(1.2);
}


/* Partners Page Styling */

/* Header Section */
.partners-header {
    position: relative;
    background-image: url('aboutbg2.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.partners-header h1,
.partners-header p {
    position: relative;
    z-index: 2; /* Ensures text appears above the overlay */
}

.partners-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff
}

.partners-header p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ffffff
}



/* Partners Benefits Section */
.partners-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 10%;
    background-color: #f9f9f9; /* Light background color */
}

.partners-benefits .container {
    max-width: 800px;
    background-color: white; /* Box background color */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 30px;
    text-align: center;
    border: 2px solid #ddd; /* Optional border for the box */
}

.benefits-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
    border-bottom: 2px solid #00c4cc; /* Underline effect */
    display: inline-block;
    padding-bottom: 5px;
}

.benefits-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: left; /* Align the text to the left inside the box */
}

.benefits-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.benefits-content ul li::before {
    content: "✔"; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #00c4cc; /* Icon color */
    font-size: 1.2rem;
}

.partners-apply-btn {
    padding: 20px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.partners-apply-btn:hover {
    transform: translateY(-3px);
}

.partners-apply-btn {
    background-color: #00bfff;
    color: white;
}

.partners-apply-btn:hover {
    background-color: #009fe3;
}

.partner-info {
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.9); /* White box with slight transparency */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.partner-info h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
}

.partner-info p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}


/* Partners Grid Section */
.partners-grid {
    display: flex;
    justify-content: center; /* Centers the content horizontally */
    gap: 40px; /* Space between the logos */
    padding: 40px 10%;
    background-color: #f9f9f9;
}

.partner-logo img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #ddd; /* Add border to logos */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-logo img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Gallery Header Section */
.gallery-header {
    position: relative;
    background: url('gallerybg.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.gallery-header h1 {
    font-size: 4rem;
    font-weight: bold; /* Make the text bold */
    margin-top: -10px; /* Move the heading up (negative value) or down (positive value) */
    color: #ffffff; /* Dark text for contrast */
}

.gallery-header p {
    margin-top: 20px; /* Add space below the heading for the paragraph */
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    line-height: 1.5;
    color: #ffffff; /* Medium text color for better readability */
}

/* Grid Layout for Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 20px;
    background-color: #f9f9f9;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Lightbox Modal */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Semi-transparent black background */
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #ff6b6b; /* Highlight close button on hover */
}


/* Team Header Section */
.team-header {
    position: relative;
    background: url('eventbg.jpg') center/cover no-repeat; /* Customize background */
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.team-header h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #ffffff;
}

.team-header p {
    margin-top: 20px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Team Members Section */
.team-section {
    padding: 30px 20px;
}

.team-title, .team-subtitle {
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin: 30px 0 10px;
}

.team-subtitle {
    font-size: 1.5rem;
    color: #666;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.team-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.team-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.team-card:hover {
    transform: scale(1.05);
}

/* Founder Section */
.founder-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

.founder-links a {
    font-size: 1.2rem;
    color: #555;
    margin: 0 6px;
    transition: color 0.3s;
}

#instaR-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaR-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamR-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamR-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordR-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordR-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeR-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeR-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckR-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckR-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

/* PartnerShip Manager Section */
.partnership-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

.partnership-links a {
    font-size: 1.2rem;
    color: #555;
    margin: 0 6px;
    transition: color 0.3s;
}

#instaAW-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaAW-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamAW-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamAW-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordAW-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordAW-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeAW-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeAW-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckAW-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckAW-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

/* HR Manager And Team Section */
.HRm-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

.HRm-links a {
    font-size: 1.2rem;
    color: #555;
    margin: 0 6px;
    transition: color 0.3s;
}

#instaCZ-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaCZ-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamCZ-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamCZ-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordCZ-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordCZ-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeCZ-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeCZ-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckCZ-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckCZ-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

.HRt-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

.HRt-links a {
    font-size: 1.2rem;
    color: #555;
    margin: 0 6px;
    transition: color 0.3s;
}

#instaWA-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaWA-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamWA-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamWA-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordWA-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordWA-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeWA-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeWA-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckWA-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckWA-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#instaLJ-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaLJ-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamLJ-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamLJ-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordLJ-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordLJ-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeLJ-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeLJ-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckLJ-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckLJ-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#instaYP-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaYP-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamYP-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamYP-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordYP-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordYP-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeYP-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeYP-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckYP-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckYP-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#instaRP-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaRP-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamRP-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamRP-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordRP-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordRP-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeRP-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeRP-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckRP-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckRP-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#instaAP-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaAP-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamAP-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamAP-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordAP-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordAP-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeAP-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeAP-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckAP-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckAP-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

/* Event Manager And Team Section */
.eventm-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

.eventm-links a {
    font-size: 1.2rem;
    color: #555;
    margin: 0 6px;
    transition: color 0.3s;
}

#instaN-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaN-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamN-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamN-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordN-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordN-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeN-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeN-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckN-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckN-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

.eventt-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

.eventt-links a {
    font-size: 1.2rem;
    color: #555;
    margin: 0 6px;
    transition: color 0.3s;
}

#instaHS-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaHS-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamHS-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamHS-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordHS-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordHS-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeHS-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeHS-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckHS-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckHS-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#instaAG-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaAG-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamAG-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamAG-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordAG-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordAG-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeAG-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeAG-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckAG-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckAG-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#instaKG-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaKG-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamKG-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamKG-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordKG-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordKG-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeKG-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeKG-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckKG-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckKG-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#instaPP-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaPP-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamPP-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamPP-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordPP-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordPP-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubePP-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubePP-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckPP-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckPP-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}


/* Support Manager And Team Section */
.supportm-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

.supportm-links a {
    font-size: 1.2rem;
    color: #555;
    margin: 0 6px;
    transition: color 0.3s;
}

#instaJL-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaJL-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamJL-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamJL-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordJL-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordJL-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeJL-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeJL-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckJL-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckJL-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

.supportt-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

.supportt-links a {
    font-size: 1.2rem;
    color: #555;
    margin: 0 6px;
    transition: color 0.3s;
}

#instaPY-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaPY-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamPY-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamPY-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordPY-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordPY-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubePY-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubePY-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckPY-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckPY-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#instaCM-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaCM-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamCM-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamCM-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordCM-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordCM-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeCM-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeCM-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckCM-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckCM-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

/* Media Manager And Team Section */
.mediam-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

.mediam-links a {
    font-size: 1.2rem;
    color: #555;
    margin: 0 6px;
    transition: color 0.3s;
}

#instaMM-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaMM-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamMM-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamMM-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordMM-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordMM-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeMM-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeMM-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckMM-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckMM-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

.mediat-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

.mediat-links a {
    font-size: 1.2rem;
    color: #555;
    margin: 0 6px;
    transition: color 0.3s;
}

#instaSD-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaSD-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamSD-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamSD-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordSD-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordSD-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeSD-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeSD-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckSD-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckSD-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#instaGHO-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaGHO-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamGHO-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamGHO-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordGHO-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordHO-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeGHO-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeGHO-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckGHO-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckGHO-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}


/* Developer */
.developer-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

.developer-links a {
    font-size: 1.2rem;
    color: #555;
    margin: 0 6px;
    transition: color 0.3s;
}

#instaZC-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaZC-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamZC-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamZC-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordZC-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordZC-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeZC-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeZC-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckZC-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckZC-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#instaGA-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaGA-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamGA-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamGA-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordGA-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordGA-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeGA-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeGA-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckGA-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckGA-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#instaSPL-btn {
    color: #E1306C; /* Instagram's pink color */
}

#instaSPL-btn:hover {
    color: #f71c65; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#steamSPL-btn {
    color: #280a89; /* Twitter blue on hover */
}

#steamSPL-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#discordSPL-btn {
    color: #1DA1F2; /* Twitter blue on hover */
}

#discordSPL-btn:hover {
    color: #0979bf; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#youtubeSPL-btn {
    color: #FF0000; /* Twitter blue on hover */
}

#youtubeSPL-btn:hover {
    color: #c30909; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}

#truckSPL-btn {
    color: #c30909; /* Twitter blue on hover */
}

#truckSPL-btn:hover {
    color: #252525; /* Slightly lighter pink on hover */
    transform: scale(1.2);
}


/* Event Page
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header Styling */
.event-header {
    background: url('eventbg.jpg') center/cover no-repeat; /* Adjusted to relative path */
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.event-header h1 {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Events Section Styling */
#events {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #ffffff;
}

#events h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Event Cards */
.event-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card p {
    font-size: 1rem;
    margin: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
}

.card p i {
    color: #007bff;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.view-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.view-btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    #events h2 {
        font-size: 2rem;
    }
}



