/* Hide Header Social Media Icons by Default (Desktop View) */
.social-media-icons-footer {
    display: none; /* Ensure these are hidden on desktop by default */
}

/* General Body Styling */
body {
    background-color: #000; /* Black background */
    color: white; /* White text for readability */
    margin: 0;
    font-family: Rajdhani, sans-serif;
}

/* Container for Content */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    padding: 10px 20px;
}

/* Logo */
.logo img {
    width: 120px;
    height: 120px;
    position: fixed;
    top: 5px;
    left: 5px;
    z-index: 1001;
}

/* Navbar */
.navbar {
    position: fixed;
    right: 20px;
    top: 10px;
    z-index: 1001;
    display: flex;
    gap: 15px;
    font-family: Arial, sans-serif; /* Only navbar uses Arial */
    font-weight: bold;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex; /* Always visible */
    gap: 15px;
}

/* Navbar Link Styling */
.nav-links a {
    color: white; /* Default link color */
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.nav-links a:hover {
    color: #00aced; /* Blue highlight on hover */
}

.nav-links a.active {
    color: #00aced; /* Blue for active page */
    font-weight: bold;
}

/* Social Media Bar */
.social-media-bar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-media-bar a {
    color: white;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center; /* Center icon vertically */
    justify-content: center; /* Center icon horizontally */
}

/* Set icon width and height specifically */
.social-media-bar a img {
    width: 40px; /* Set width of the icon */
    height: 40px; /* Set height of the icon */
}

.social-media-bar a:hover {
    background-color: #00aced;
}

/* Hero/Banner Section */
.hero {
    position: relative;
    margin-top: 120px; /* To offset the fixed header */
    height: 150px; /* Reduced height for the hero section */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 150px;
}

.hero-content {
    position: absolute;
    text-align: center;
}

.introduction {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    color: white;
}

.legal-terms-section {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    color: white;
}

/* General modal styling for both desktop and mobile */
.modal {
    display: none;  /* Hide all modals by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);  /* Adjust as needed */
    padding: 20px;
    z-index: 1002;  /* Ensure it sits above other elements */
    color: white;  /* Text color */
    max-width: 500px;  /* Restrict modal width */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Style for links inside the modal */
.modal a {
    color: #00aced;  /* Choose a color that contrasts well with the black background */
    text-decoration: none;  /* Optional: remove underline */
}

.modal a:hover {
    color: #ffffff;  /* Optional: make link white on hover for better visibility */
}

/* Style for the modal close button */
.modal .close {
    position: absolute;          /* Position it at the top right */
    top: 10px;                   /* Adjust as needed */
    right: 10px;
    font-size: 1.5em;            /* Make the "X" larger */
    color: #ffffff;              /* White color for contrast */
    background-color: rgba(0, 0, 0, 0.6); /* Dark, semi-transparent background */
    border-radius: 50%;          /* Circular background */
    width: 30px;                 /* Set width for circle */
    height: 30px;                /* Set height for circle */
    display: flex;               /* Center the "X" */
    align-items: center;
    justify-content: center;
    cursor: pointer;             /* Make it look clickable */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Soft blur effect around */
    transition: transform 0.2s, background-color 0.2s; /* Smooth hover effect */
}

/* Hover effect for close button */
.modal .close:hover {
    background-color: rgba(255, 255, 255, 0.8); /* Lighter background on hover */
    color: #000;                 /* Darker "X" for contrast */
    transform: scale(1.1);       /* Slightly enlarge on hover */
}

/* Footer Section */
.footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 0.9em;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Spread columns evenly across the width */
    align-items: center; /* Center content within each column */
    text-align: center; /* Center-align text within each column */
    gap: 20px;
    font-size: 0.9em;
}

.footer-left, .footer-center, .footer-right {
    flex: 1; /* Ensures each section occupies equal width */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center-align content within each individual column */
    font-size: 0.9em;
}


.footer-content a {
    color: #00aced;
    text-decoration: none;
    padding: 5px;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: white;
}