/* resources/styles.css */

/* Base styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F0F8FF; /* Light blue */
    color: #333333; /* Standard dark text color */
}

/* Custom styles for Hero Section background overlay */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-section .relative {
    z-index: 1;
}

/* Specific styling for the 18+ icon in footer */
.footer-logo-link img.18-plus-icon {
    max-width: 80px; /* Slightly smaller for the 18+ icon */
    height: auto;
    object-fit: contain;
}

/* Styling for the disclaimer section */
.disclaimer-section {
    background-color: #FFF3F3; /* Very light red/pink background */
    border-color: #FFCCCC; /* Light red border */
    color: #CC0000; /* Dark red text */
    font-weight: 500;
}

.disclaimer-section h3 {
    color: #CC0000; /* Ensure heading color matches */
}

/* Slider specific styles */
.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s linear; /* Smooth, linear transition */
}

.slider-wrapper img {
    width: 100%;
    flex-shrink: 0;
    object-fit: contain;
    padding: 14px;
    height: 500px;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.75);
    padding: 1rem;
    border-radius: 9999px; /* Fully rounded */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #333333;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background-color: rgba(255, 255, 255, 1);
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-dots .dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: #D1D5DB; /* Light gray */
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dots .dot.active-dot {
    background-color: #3B82F6; /* Blue */
}

/* No hover animations or other UI animations as per requirements */
.feature-card:hover {
    transform: scale(1.05); /* Only transform allowed for feature cards */
}

.app-button:hover {
    background-color: inherit; /* Prevent default hover, handled by Tailwind */
}

/* Ensure images in footer are always colored */
.footer-logo-link img {
    filter: none; /* Remove any grayscale or other filters */
}
/* New styles for text content within .policyScopeWrap */
.policyScopeWrap {
    padding: 2rem; /* Padding on all sides for the wrapper */
    margin-top: 3rem; /* Top margin for separation */
    line-height: 1.6; /* Default line height for readability */
    color: #333333; /* Standard text color */
}

.policyScopeWrap h1 {
    font-size: 2.25rem; /* ~36px */
    font-weight: 700; /* Bold */
    margin-top: 2.5rem; /* Top margin for separation */
    margin-bottom: 1.5rem; /* Bottom margin */
    line-height: 1.2; /* Tighter line height for headings */
    color: #222222; /* Slightly darker heading color */
}

.policyScopeWrap h2 {
    font-size: 1.875rem; /* ~30px */
    font-weight: 600; /* Semi-bold */
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    color: #222222;
}

.policyScopeWrap h3 {
    font-size: 1.5rem; /* ~24px */
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #222222;
}

.policyScopeWrap h4 {
    font-size: 1.25rem; /* ~20px */
    font-weight: 500; /* Medium */
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    color: #333333;
}

.policyScopeWrap h5 {
    font-size: 1.125rem; /* ~18px */
    font-weight: 500;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #333333;
}

.policyScopeWrap p {
    font-size: 1rem; /* Base font size ~16px */
    margin-bottom: 1rem; /* Spacing between paragraphs */
    line-height: 1.6; /* Readability */
    color: #333333;
}

.policyScopeWrap ul {
    list-style: disc; /* Default disc bullets */
    margin-left: 1.5rem; /* Indent list items */
    margin-bottom: 1rem; /* Spacing after the list */
    padding-left: 0; /* No extra padding */
}

.policyScopeWrap li {
    font-size: 1rem; /* Base font size for list items */
    margin-bottom: 0.5rem; /* Spacing between list items */
    line-height: 1.6;
    color: #333333;
}


.flex.justify-center.items-center.space-x-6.mt-12{
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
   justify-content: center;
   
   a{
    margin: 0;
   }
}

.fgap{
    gap: 14px;
}