/* Reset and Base */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: #fff;
    background-color: #000 !important;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation */
.navbar {
    background-color: #000 !important;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand img {
    height: 3.2rem;
}

/* Nav links */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffa802 !important;
}

/* Active nav link with gradient */
.navbar-nav .nav-link.active {
    font-weight: 600;
    background: linear-gradient(90deg, #FF5F15 0%, #FFA802 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* Mobile toggle icons (hamburger & close) */
#navbar-menu-open-icon,
#navbar-menu-close-icon {
    color: white;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

/* Responsive hamburger button */
.navbar-toggler {
    border: none;
    background: transparent !important;
    outline: none;
}

/* Bill Pay button */
.navbar-nav .btn {
    background: #e95429 !important;
    border-color: #e95429 !important;
    border-radius: 50px !important;
    color: white !important;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.navbar-nav .btn:hover {
    background: #ff6f2c !important;
    border-color: #ff6f2c !important;
}

/* Hero Section */
.policy-section {
    color: white;
    padding: 3rem 2rem;
    padding-top: 0px !important;
}

.policy-container {
    max-width: 1000px;
    margin: auto;
}

.policy-container h3 {
    color: orange;
    /* margin-top: 2rem; */
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.policy-container p,
.policy-container ul {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.policy-container ul {
    padding-left: 1.2rem;
}

.policy-container ul li {
    margin-bottom: 0.5rem;
}

.policy-header {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(90deg, #FF5F15 0%, #FFA802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.safety-section {
    padding: 3rem 2rem;
    color: white;
    text-align: center;
}

.safety-section h2 {
    color: #FFA500;
    font-size: 34px;
    margin-bottom: 15px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 350px;
    max-width: 1000px;
    margin: 0 auto;
}

.safety-card {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
}

.safety-card img {
    width: 120px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.safety-card h3 {
    color: #ff6600;
    font-size: 26px;
    margin-bottom: 0.5rem;
    text-align: center !important;
}

.safety-card p {
    color: #fff;
    font-size: 15px;
    text-align: left;

}

/* Policy Content */
.policy-content {
    color: #e0e0e0;
}

.policy-content h2 {
    font-size: 40px;
    font-weight: 600;
    background: linear-gradient(90deg, #FF5F15 0%, #FFA802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.policy-content ul,
.policy-content ol {
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* Table */
.table {
    color: #fff;
}

.table th {
    background-color: #333;
    color: #ffc107;
}

.table-bordered {
    border: 1px solid #444;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #1a1a1a;
}

/* Footer */
footer {
    background-color: #111;
}

footer h5 {
    font-weight: bold;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer a {
    color: #ccc;
}

footer a:hover {
    color: #fff;
}

footer .fa {
    font-size: 1.25rem;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* CTA Footer Section */
footer .bg-dark.rounded-pill {
    background-color: #1f1f1f !important;
}

.btn-primary-grad {
    background: linear-gradient(to right, #ff5f15, #ffa802);
    color: #fff;
    border: none;
}

.btn-primary-grad:hover {
    background: linear-gradient(to right, #ff7738, #ffc107);
}

/* Icons and Spacing */
.iconsContact img {
    width: 30px;
    height: 30px;
}

/* Fade Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* GSAP fade sections */
.whoWeCard {
    opacity: 0;
    transform: translateY(40px);
}

/* Responsive */
@media (max-width: 992px) {
    .policy-header {
        font-size: 2.2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .iconsContact {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    footer .text-md-start {
        text-align: center !important;
    }

    footer .d-flex {
        justify-content: center;
    }

    footer .rounded-pill {
        padding: 2rem 1rem;
    }
}



/* REDRESSAL MATRIX STYLING */
.redressal-matrix-container {
    border-radius: 20px;
    border: 3px dotted orange;
    background: url('../privacy/seperatebackground1.png');
    background-size: cover;
    padding: 24px;
}

.redressal-matrix-container .row {
    display: flex;
    flex-wrap: wrap;
}

.matrix-heading {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 40px;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 48px;
    background: linear-gradient(90deg, #ff5f15 0%, #ffa802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    animation: gradientText 3s infinite alternate;
}

/* Cards */
.matrix-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #161616;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
    border: 2px solid orange;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

.matrix-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(255, 165, 0, 0.8);
}

.level-heading {
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(90deg, #ff5f15, #ffa802);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    font-weight: 700;
    animation: gradientText 3s infinite alternate;
}

.matrix-card-body {
    text-align: center;
    color: #ffffff;
}

.matrix-card-body p strong {
    font-size: 22px;
}

.matrix-card-body p {
    font-size: 20px;
}

.matrix-card-body ul li {
    font-size: 20px;
}

.matrix-card-body a {
    color: #ffa802;
}

.matrix-card-body ul li span {
    color: orange;
    margin-right: 5px;
}

/* Gradient animation for text */
@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}