/* General Reset */
body, h1, h2, h3, p, ul, ol, form, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header Styles */
.header {
    background: linear-gradient(90deg, #000, #444);
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(255, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: auto;
    color: #ff0000;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
    list-style: none; /* Removes bullet points */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
    justify-content: flex-end; /* Right align the menus */
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 15px;
    transition: background 0.3s, color 0.3s;
    border-radius: 5px;
}

.nav-links a:hover {
    background: #ff0000;
    color: #fff;
}

.menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #000000d7; /* or your preferred background color */
    border-bottom: 1px solid #ccc; /* optional for styling */
}

.logo img {
    height: 50px; /* Adjust logo size */
    max-height: 100%;
}
.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: none; /* Show this for mobile view using media queries */
}

.menu-toggle.active + .nav-links {
    display: flex;
}

/* Main Content Styles */
.content-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.3s;
}

.content-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


.content-section h2, .content-section h3 {
    color: #ff0000;
    margin-bottom: 10px;
    animation: fadeIn 1s ease-in-out;
}

.content-section p {
    margin-bottom: 15px;
    animation: fadeIn 1s ease-in-out;
}

.content-section ul, .content-section ol {
    padding-left: 20px;
    margin-bottom: 20px;
    animation: slideInUp 1s ease-in-out;
}

.content-section li {
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.a3-template-container {
    position: relative;
    display: inline-block;
}

.a3-template-container area {
    cursor: pointer;
}

.a3-template-container area:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    top: 0;
    left: 0;
    transform: translate(-50%, -100%);
    white-space: nowrap;
    z-index: 10;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: 10% auto; /* 10% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Responsive iframe */
  .responsive-iframe {
    width: 100%;
    height: 60vh; /* Adjust height as needed */
    border: none;
  }
  

/* Styling for Tiles */
.tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    background: #111;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(255, 0, 0, 0.5);
}

/* Styling for Each Tile */
.tile {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.tile h2, .tile h3 {
    color: #ff0000;
    margin-bottom: 10px;
}

.tile p {
    margin-bottom: 15px;
}

.tile ul, .tile ol {
    margin: 10px 0;
    padding-left: 20px;
}

.tile ul li, .tile ol li {
    margin-bottom: 10px;
}



/* Premium Ad Space Styling */
.ad-banner {
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    color: #333;
  }
  
  .ad-top {
    position: relative;
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
  }
  
  .ad-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100px;
  }
  
  .ad-right {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: -3px 0 5px rgba(0, 0, 0, 0.1);
    padding-top: 10px;
  }
  
  .ad-right-inner {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
  }
  

  .ad-top {
    position: relative;
    width: 100%;
    /* Ensures full width */
    height: auto;
    /* Adjusts height to content */
    margin: 0;
    /* Removes margin */
    padding: 10px;
    /* Add padding as needed */
    background-color: #f4f4f4;
    /* Banner background color */
    border: 1px solid #ccc;
    /* Optional: border for clarity */
    text-align: center;
    box-sizing: border-box;
    /* Includes padding in width calculations */
  }
  
  


/* Keyframes for Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations for Different Effects */
.animated.fadeIn {
    animation: fadeInUp 0.5s forwards;
}

.animated.slideInUp {
    animation: fadeInUp 0.8s forwards;
}


/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

input, textarea, button {
    padding: 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-size: 1rem;
}

button {
    background: #ff0000;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #cc0000;
}



/* contact section */
.contact-section-container {
    padding: 4rem 2rem;
    background-color: #000;
    text-align: center;
  }
  .contact-section-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color:  #ff0000;
  }
  .contact-section-container p {
    margin-bottom: 2rem;
  }
  .contact-section-container form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .contact-section-container input,
  .contact-section-container textarea {
    /* width: 100%; */
    padding: 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color:  #fdf9f9;
  }
  .contact-section-container button {
    background-color:  #ff0000;
    color: #000;
    font-size: 1.2rem;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
  }
  .contact-section-container button:hover {
    background-color:  #ff0000;
  }
  .dropdown{
    padding: 1rem;
    font-family: "Poppins", serif;  
    background-color: #333;  
    color: white;
    border-radius: 5px;
  }
  

/* Footer Styles */
.footer {
    background-color: #f8f8f8;
    color: #333;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #ddd;
}

.disclaimer-banner {
    background-color: #ffcccb; /* Light red background for visibility */
    color: #000; /* Black text for contrast */
    padding: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    border-radius: 5px;
    border: 1px solid #e6b8b7; /* Slightly darker border for effect */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


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

    .nav-links {
        flex-direction: column;
        gap: 10px;
        display: none;
        text-align: center;
        width: 100%;
        margin-top: 10px;
        background: rgba(0, 0, 0, 0.95);
        padding: 10px 0;
        border-radius: 5px;
    }

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

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active {
        color: #ff0000;
    }
}