:root {
    --primary: #050A4B;
    --secondary: #7fae78;
    --accent: #EA4335;
    --dark: #333;
    --light: #f8f9fa;
    --shadow: #63CE7433;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    padding-top: 76px; /* Account for fixed navbar */
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 20px rgba(5, 10, 75, 0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary) !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

img.img-fluid.top-logo {
    width: 200px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: var(--dark) !important;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background:var(--secondary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
    background: var(--secondary);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
    border-width: 2px;
    border-radius: 8px;
    padding: 8px 20px;
}

.btn-outline-primary:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
    border: 2px solid var(--secondary);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px 20px;
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px var(--shadow);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%285, 10, 75, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 15px 0;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        display: inline-block;
    }
    
    .d-flex {
        justify-content: center;
        padding-top: 10px;
    }
}

/*    Navbar end     */

/* Hero Section start */
/* Floating Elements Container */
.floating-container {
    width: 60%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.floating-element {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #63ce74;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 1.5rem;
    opacity: 0.2;
}

/* Element Sizes and Positions */
.element-1 {
    width: 70px;
    height: 70px;
    top: 12%;
    left: 14%;
    animation: float 18s ease-in-out infinite;
}

.element-2 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 5%;
    animation: float 22s ease-in-out infinite;
    animation-delay: 1s;
}

.element-3 {
    width: 60px;
    height: 60px;
    top: 16%;
    right: 10%;
    animation: float 20s ease-in-out infinite;
    animation-delay: 2s;
}

.element-4 {
    width: 80px;
    height: 80px;
    top: 65%;
    right: 8%;
    animation: float 25s ease-in-out infinite;
    animation-delay: 3s;
}

.element-5 {
    width: 60px;
    height: 60px;
    top: 57%;
    left: 35%;
    animation: float 24s ease-in-out infinite;
    animation-delay: 4s;
}

.element-6 {
    width: 70px;
    height: 70px;
    top: 40%;
    right: 5%;
    animation: float 19s ease-in-out infinite;
    animation-delay: 5s;
}

.element-7 {
    width: 60px;
    height: 60px;
    top: 4%;
    left: 60%;
    animation: float 21s ease-in-out infinite;
    animation-delay: 6s;
}

.element-8 {
    width: 65px;
    height: 65px;
    top: 80%;
    left: 50%;
    animation: float 23s ease-in-out infinite;
    animation-delay: 7s;
}

.element-9 {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 40%;
    animation: float 26s ease-in-out infinite;
    animation-delay: 8s;
}

.element-10 {
    width: 75px;
    height: 75px;
    top: 60%;
    right: 20%;
    animation: float 17s ease-in-out infinite;
    animation-delay: 9s;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, 30px) rotate(5deg);
    }
    50% {
        transform: translate(-15px, 40px) rotate(-5deg);
    }
    75% {
        transform: translate(25px, -20px) rotate(3deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .floating-element {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }
    
    .element-1, .element-2, .element-3, .element-4, .element-5,
    .element-6, .element-7, .element-8, .element-9, .element-10 {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .floating-element {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, var(--primary) 0%, #1a237e 100%); */
    background-color: #F9FAFB;
    color: white;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    /* backdrop-filter: blur(10px); */
}

.os-icon-top {
    text-decoration: none;
    color: var(--light);
    display: inline-flex;
    align-items: center;
    background:var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    animation: slideInDown 0.8s ease-out;
    cursor: default;

}

.os-icon-top:hover{
    transform: scale(1.05);
}


.hero-badge i {
    margin-right: 8px;
    color: var(--light);
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--dark);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.heading-text{
    color: var(--secondary) !important;
}


.hero-subtitle {
    font-size: 20px;
    color: rgb(45 52 54 / 0.8);
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin: 40px 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.countdown-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px 15px;
    min-width: 100px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item {
    background-color: white !important;
}



.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.countdown-item:hover::before {
    left: 100%;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    color: var(--dark);
}

.countdown-label {
     color: var(--dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Email Form */
.email-form {
    max-width: 500px;
    margin: 30px 0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.input-group {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-control {
    padding: 18px 25px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.form-control:focus {
    background: white;
    box-shadow: 0 0 0 3px var(--shadow);
}

.btn-notify {
    background: linear-gradient(135deg, var(--primary), #141b85);
    color: white;
    border-radius: 50px;
    padding: 18px 35px;
    font-weight: 600;
    border: none;
    margin-left: -60px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-notify::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-notify:hover {
    background: linear-gradient(135deg, var(--primary), #141b85);
    transform: translateX(5px);
    /* box-shadow: 0 5px 20px rgba(99, 206, 116, 0.4); */
}

.btn-notify:hover::before {
    left: 100%;
}

form.email-form .input-group input {
    height:60px;
    border: none;
}   

/* App Badges */
.app-badges {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.app-badge {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 180px;
    border: 2px solid var(--primary);
}

.app-badge:hover {
    background: var(--light);
    color: var(--primary);
    border: 2px solid var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}



.app-badge i {
    font-size: 2rem;
    color: var(--light);
}

.app-badge:hover i{
    color: var(--primary);
}

img.img-fluid.hero-img {
    /* height: 500px; */
    width: 75%;
}

.app-badge span {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.app-badge strong {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Coming Soon Text */
.coming-soon {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px 10px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .app-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .app-badge {
        width: 200px;
        justify-content: center;
    }
    
    .btn-notify {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        border-radius: 0px;
    }
    
    .input-group {
        flex-direction: column;
        background: none;
        box-shadow: none;
    }
    
    .form-control {
        margin-bottom: 10px;
    }

    .email-form{
        max-width: 100%;
    }

    form.email-form .input-group input{
        width:100%;
    }
}

/* Hero illustration/image placeholder */
.hero-illustration {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hero Section End */

/* Feature Section Start*/

 /* HEALTHY BLOCK SECTION */
.box-section {
    background: linear-gradient(135deg, #f9fef9 0%, #f0f7f0 100%);
    font-family: "Inter", sans-serif;
    position: relative;
    overflow: hidden;
}

.agree-container {
    max-width: 1300px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.agree-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary);
    animation: fadeInUp 0.8s ease-out;
}

.agree-subtitle {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0;
    opacity: 0.8;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.agree-phones {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.agree-phones img {
    width: 280px;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.2));
    transition: all 0.5s ease;
    position: absolute;
}

.phone-left {
    transform: rotate(-8deg) translateY(0);
    left: 20%;
    z-index: 2;
    animation: phoneLeft 8s ease-in-out infinite;
}

.phone-right {
    transform: rotate(12deg) translateY(0);
    right: 20%;
    z-index: 1;
    animation: phoneRight 8s ease-in-out infinite;
}

@keyframes phoneLeft {
    0%, 100% {
        transform: rotate(-8deg) translateY(0);
    }
    50% {
        transform: rotate(-8deg) translateY(-20px);
    }
}

@keyframes phoneRight {
    0%, 100% {
        transform: rotate(12deg) translateY(0);
    }
    50% {
        transform: rotate(12deg) translateY(20px);
    }
}

.agree-phones:hover .phone-left {
    transform: rotate(-8deg) translateY(-10px) scale(1.05);
}

.agree-phones:hover .phone-right {
    transform: rotate(12deg) translateY(10px) scale(1.05);
}

.feature-icon-card {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* gap: 20px; */
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    animation: fadeInRight 0.8s ease-out both;
}

.feature-icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 206, 116, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-icon-card:hover::before {
    left: 100%;
}

.feature-icon-card:nth-child(1) { animation-delay: 0.2s; }
.feature-icon-card:nth-child(2) { animation-delay: 0.4s; }
.feature-icon-card:nth-child(3) { animation-delay: 0.6s; }
.feature-icon-card:nth-child(4) { animation-delay: 0.8s; }

.feature-icon-card h3 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-icon-card:hover h3 {
    color: var(--secondary);
}

.feature-icon-card p {
    margin: 8px 0 0;
    font-size: 1rem;
    color: #6f7882;
    line-height: 1.6;
}

.feature-icon-card .feature-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(99, 206, 116, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: var(--secondary) !important;
}

.feature-icon-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.feature-icon-box:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: rgba(99, 206, 116, 0.25);
}

.feature-icon-card:hover .feature-icon-box::after {
    opacity: 0.1;
}

.feature-icon-box span {
    position: relative;
    z-index: 1;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .agree-title {
        font-size: 2.8rem;
    }
    
    .agree-subtitle {
        font-size: 1.1rem;
    }
    
    .agree-phones {
        height: 400px;
        margin-bottom: 40px;
    }
    
    .agree-phones img {
        width: 220px;
    }
    
    .phone-left {
        left: 10%;
    }
    
    .phone-right {
        right: 10%;
    }
}

@media (max-width: 768px) {
    .agree-title {
        font-size: 2.3rem;
    }
    
    .agree-phones {
        height: 350px;
    }
    
    .agree-phones img {
        width: 180px;
    }
    
    .feature-icon-card {
        padding: 20px;
        text-align: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-icon-box {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .agree-phones {
        height: 300px;
    }
    
    .agree-phones img {
        width: 150px;
    }
    
    .phone-left {
        left: 5%;
    }
    
    .phone-right {
        right: 5%;
    }
    
    .feature-icon-card {
        padding: 15px;
    }
}

        /* Feature Section End */

.analysis-section{
    padding: 80px 0;
    background:#f9fdfb;
}

.analysis-card{
    background:white;
    padding:50px 40px;
    border-radius:22px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    position:relative;
}

/* Top Badge */
.badge-box{
    position:absolute;
    top:-18px;
    right:30px;
    background:white;
    padding:10px 18px;
    border-radius:14px;
    box-shadow:0 6px 20px rgba(0,0,0,0.1);
    display:flex;
    align-items:center;
    gap:10px;
}
.badge-box span{
    font-weight:600;
    color:var(--primary-green);
}

/* Check List Buttons */
.check-item{
    background:white;
    border-radius:10px;
    padding:10px 18px;
    display:flex;
    align-items:center;
    text-align: center;
    gap:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
    /* width:max-content; */
    margin-bottom:15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.check-item:hover {
    transform: scale(1.08);
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px #63ce7459;
}

.check-item i{
    color:var(--primary-green);
    font-size:18px;
}

/* Right side image */
.phone-img{
    width:100%;
    margin:auto;
    display:block;
}

.divider-line{
    width:2px;
    height:100%;
    background:var(--primary-green);
    opacity:0.4;
    margin:auto;
}


/* Feature Section box */

.box-section{
    background:#f9fdfb;
    padding-top:60px;
    padding-bottom:60px;
}

.feature-card{
    background:white;
    padding:20px 25px;
    border-radius:22px;
    box-shadow:0 8px 30px rgba(0,0,0,0.06);
    transition:0.3s ease;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    animation: fadeInRight 0.8s ease-out both;
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    cursor: pointer;
    text-decoration: none;
}

.feature-card:hover{
    transform:translateY(-5px);
}

.feature-card .icon-box{
    width:55px;
    height:55px;
    background:var(--light-green);
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    color:var(--secondary);
    margin:auto;
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--secondary);
}

.feature-card p {
    margin: 8px 0 0;
    font-size: 1rem;
    color: #6f7882;
    line-height: 1.6;
}

.feature-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.feature-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: rgba(99, 206, 116, 0.25);
}

.feature-card:hover .icon-box::after {
    opacity: 0.1;
}

.icon-box span {
    position: relative;
    z-index: 1;
}

@media screen and (max-width:768px) {
     .feature-card {
        padding: 20px;
        text-align: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .icon-box {
        align-self: center;
    }

    .first-third-card {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media (max-width: 576px) {  
    .feature-card {
        padding: 15px;
    }
}


/* Feature Section end */

/* Footer */
.footer-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

/* .footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary);
} */

.footer-logo-box {
    width: 45px;
    height: 45px;
    background: rgba(99, 206, 116, 0.15);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.footer-logo-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
}

.footer-logo-box:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px var(--shadow);
}

.footer-logo-box:hover::after {
    opacity: 0.1;
}

.footer-logo-box i {
    position: relative;
    z-index: 1;
}

.social-box {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-size: 18px;
    color: var(--light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.social-box:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

.social-box:hover::before {
    left: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.footer-links li::before {
    content: '▸';
    position: absolute;
    left: -15px;
    color: var(--secondary);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    padding-left: 15px;
}

.footer-links li:hover::before {
    opacity: 1;
    left: 0;
}

.footer-links a {
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--dark);
    transition: all 0.3s ease;
    align-items: flex-start;
    text-decoration: none;
}

.footer-contact:hover {
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
    transition: all 0.3s ease;
}

.footer-contact:hover i {
    color: var(--secondary);
    transform: scale(1.2);
}

.footer-bottom-links a {
    text-decoration: none;
    font-size: 14px;
    color: var(--dark);
    position: relative;
    transition: all 0.3s ease;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

.footer-payments img {
    height: 28px;
    margin-left: 12px;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: grayscale(0.7);
}

.footer-payments img:hover {
    opacity: 1;
    transform: translateY(-3px);
    filter: grayscale(0);
}

hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 2rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-section .row {
        text-align: center;
    }
    
    .footer-logo-box {
        margin: 0 auto;
    }
    
    .social-box {
        margin: 0 auto;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin: 15px 0;
    }
    
    .footer-payments {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-payments img {
        margin: 0 6px;
    }
}
/* Footer End */


/* Contact Page */

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23050A4B' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.contact-section > * {
    position: relative;
    z-index: 1;
}

.contact-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #1a237e 100%);
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(5, 10, 75, 0.2);
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    transform: rotate(15deg) scale(1.05);
}

.contact-icon i {
    font-size: 32px;
}

.contact-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(5, 10, 75, 0.08);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-card:hover .icon-box {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}


.form-control {
    border-radius: 10px;
    height: 48px;
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(5, 10, 75, 0.15);
}

textarea.form-control {
    height: auto;
    resize: none;
}

.send-btn {
    background: var(--primary);
    color: white;
    height: 50px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.send-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.send-btn:hover::before {
    left: 100%;
}

.send-btn:hover {
    color: white;
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 206, 116, 0.4);
}

.send-btn:active {
    transform: translateY(0);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: scale(1.01);
}

.support-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.support-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 3px;
} */

.contact-info {
    color: var(--dark);
    transition: color 0.3s ease;
}

.contact-card:hover .contact-info {
    color: var(--primary);
}

@media (max-width: 768px) {
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon i {
        font-size: 28px;
    }
    
    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .footer-contact {
        text-align: left;
    }

    .social-box {
        margin: 0px 0px;
    }
}



/* Blog Section */

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.blog-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #EBF6EE;
    color: #55a46e;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-filter {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 6px 18px;
    border: none;
    transition: .3s;
    font-size: 14px;
    color: #555;
}

.btn-filter:hover,
.btn-filter.active {
    background: #E8F5E9;
    color: #2e7d32;
}

.page-link {
    border-radius: 6px !important;
    background: #f8f8f8;
    color: #666;
}

.page-link:hover {
    background: #E8F5E9;
    color: #2e7d32;
}


/* Referral page */

    .referral-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
        min-height: 100vh;
        padding: 80px 0;
    }

    .referral-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23050A4B' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        z-index: 0;
    }

    .referral-section > * {
        position: relative;
        z-index: 1;
    }

    .referral-icon {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary) 0%, #1a237e 100%);
        color: white;
        margin-bottom: 1.5rem;
        box-shadow: 0 10px 20px rgba(5, 10, 75, 0.2);
    }

    .referral-icon i {
        font-size: 32px;
    }

    .section-title {
        position: relative;
        display: inline-block;
        margin-bottom: 1rem;
        color: var(--primary);
    }

    /* .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background:var(--secondary) 100%;
        border-radius: 3px;
    } */

    .reward-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.05);
        text-align: center;
        transition: all 0.4s ease;
        border: 1px solid rgba(255, 255, 255, 0.8);
        position: relative;
        overflow: hidden;
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .reward-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    }

    .reward-highlight {
        background: linear-gradient(135deg, var(--primary) 0%, #1a237e 100%);
        color: white;
        border-radius: 16px;
        padding: 2.5rem;
        margin-bottom: 2rem;
        box-shadow: 0 10px 30px rgba(5, 10, 75, 0.2);
    }

    .step-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.05);
        text-align: center;
        transition: all 0.4s ease;
        border: 1px solid rgba(255, 255, 255, 0.8);
        position: relative;
        overflow: hidden;
        padding: 2rem 1.5rem;
        height: 100%;
    }


    .step-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .step-icon {
        width: 70px;
        height: 70px;
        background: rgba(5, 10, 75, 0.08);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 28px;
        color: var(--primary);
        margin: 0 auto 1.5rem;
        transition: all 0.3s ease;
    }

    .step-card:hover .step-icon {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
    }

    .step-number {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        background: var(--secondary);
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        font-size: 14px;
    }

    .form-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.05);
        border: 1px solid rgba(255, 255, 255, 0.8);
        position: relative;
        overflow: hidden;
        padding: 2rem;
    }

    .form-control {
        border-radius: 10px;
        height: 48px;
        border: 1px solid #e0e0e0;
        padding: 0.75rem 1rem;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.2rem rgba(5, 10, 75, 0.15);
    }

    .activate-btn {
        background: var(--primary);
        color: white;
        height: 50px;
        border-radius: 10px;
        transition: all 0.3s ease;
        font-weight: 600;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
        width: 100%;
        border:none !important;
    }

    .activate-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .activate-btn:hover::before {
        left: 100%;
    }

    .activate-btn:hover {
        background: var(--secondary);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(99, 206, 116, 0.4);
    }

    .activate-btn:active {
        transform: translateY(0);
    }

    .referral-code {
        background: rgba(5, 10, 75, 0.05);
        border-radius: 10px;
        padding: 1.5rem;
        text-align: center;
        margin: 1.5rem 0;
        /* border: 1px dashed var(--primary); */
    }

    .code-display {
        font-family: 'Courier New', monospace;
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--primary);
        background: white;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        display: inline-block;
        margin: 0.5rem 0;
        border: 1px solid #e0e0e0;
    }

    .copy-btn {
        background: var(--secondary);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 0.5rem 1.5rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .copy-btn:hover {
        background: #4fa85f;
        transform: translateY(-2px);
    }

    .progress-container {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.05);
        padding: 2rem;
        margin: 2rem 0;
    }

    .progress {
        height: 12px;
        border-radius: 10px;
        background-color: #e9ecef;
        margin: 1rem 0;
    }

    .progress-bar {
        background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
        border-radius: 10px;
    }

    .terms-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.05);
        padding: 2rem;
        margin-top: 2rem;
    }

    .terms-card h5 {
        color: var(--primary);
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid rgba(5, 10, 75, 0.1);
    }

    .terms-list {
        list-style-type: none;
        padding-left: 0;
    }

    .terms-list li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
        padding-left: 1.5rem;
    }

    .terms-list li:before {
        content: '•';
        color: var(--secondary);
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    .reward-badge {
        display: inline-block;
        background: var(--secondary);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-left: 0.5rem;
    }

    .social-share {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .share-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .share-btn:hover {
        transform: translateY(-5px);
    }

    .facebook { background: #3b5998; }
    .twitter { background: #1da1f2; }
    .whatsapp { background: #25d366; }
    .email { background: var(--primary); }

    @media (max-width: 768px) {
        .referral-icon {
            width: 70px;
            height: 70px;
        }
        
        .referral-icon i {
            font-size: 28px;
        }
        
        .step-icon {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }
        
        .reward-highlight {
            padding: 1.5rem;
        }
    }
.mobile_site, .mobile_show{
    display: none;
}
@media (max-width: 768px) {
    .navbar.navbar-expand-lg.navbar-light.fixed-top, section, .footer-section {
        
    }
    .mobile_show{
        display: block;
        z-index: 0;
    }
    .mobile_site {
        display: block;
        padding:0 10px 10px;
        text-align: left;
        width: 100%;
        position: fixed;
        background: #fff;
        top: 0px;
        z-index: 99;
    }
    .app-badges { 
        gap:15px;
        margin: 0px;
        transition:0s;
        animation:none;
    }
    .app-badge{
        text-align: left; 
        width:230px;
    }
    .app-badge i{
        font-size: 1.6rem;
    }
    .app-badge strong {
        font-size: 1.2rem;
        font-weight: 500;
        }
    .app-badges div{
        line-height: normal;
    }
    .app-badge span{
        font-size: 0.75rem;
    }
    .mobile-text { 
        align-content: center;
    }
    .mobile-text h2 {
        font-size: 18px;
        margin: 0;
        line-height: normal;
        font-weight: 600;
    }
    .mobile-text p{
        font-size: 12px;
    }
    .mobile_site img.img-fluid.top-logo {
        width: 70px;
        max-width: 70px;
    }
    .setlogotext{
        gap:15px;
        align-items: center;
    }
    .mobile-button {
        align-content: center;
    }
    .update_mobile {
        background: var(--secondary) !important;
        padding: 8px 15px;
        color: #fff;
        text-decoration: none;
        border-radius: 10px;
        font-size: 15px;
    }
    .add-topbar{
        padding-top: 80px;
    }
    .add-topbar .fixed-top{
        top:80px;
    }
    .close_mobile{
        align-items: center;
    }
    .set_mobile_bg {
        align-items: center;
    }
    .feature-card {
        grid: initial;
        padding: 15px;
        width: 100%;
    }
    .analysis-section .analysis-card .d-flex.flex-column.align-items-center {
        justify-content: center;
        padding-top: 10px;      
        flex-direction: initial !important;
        display: inline-block !important;
        width: 100%;
        text-align: center;
    }
    .analysis-section .analysis-card .d-flex.flex-column.align-items-center  .check-item{
        width:100%;
    }
    #feature-one, #feature-three{
        padding: 0px;
    }
    #feature-two{
        padding: 20px 0px;
    }
}


/* Terms And Condition page start*/

        /* Header */
        .page-header {
            background-color: rgba(5, 10, 75, 0.03);
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2.5rem;
            /* border-left: 5px solid var(--secondary); */
        }

        .page-header h1 {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .effective-date {
            background-color: var(--primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
        }

        /* Table of Contents */
        .toc-card {
            background-color: var(--light);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            border: none;
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .toc-title {
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--secondary);
        }

        .toc-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        .toc-item {
            margin-bottom: 0.75rem;
        }

        .toc-link {
            text-decoration: none;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0;
            transition: all 0.3s;
            border-left: 3px solid transparent;
            padding-left: 0.75rem;
        }

        .toc-link:hover, .toc-link.active {
            color: var(--primary);
            border-left: 3px solid var(--secondary);
            padding-left: 1rem;
        }

        .toc-number {
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Terms Sections */
        .terms-card {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: none;
        }

        .section {
            margin-bottom: 2.5rem;
            scroll-margin-top: 100px;
        }

        .section:last-child {
            margin-bottom: 0;
        }

        .section-header1 {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .section-number {
            background-color: var(--primary);
            color: white;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        .section-title {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 0;
        }

        .section-content {
            padding-left: 0.5rem;
        }

        .section-content p {
            margin-bottom: 1.25rem;
        }

        .section-content ul {
            margin-bottom: 1.25rem;
            padding-left: 1.5rem;
        }

        .section-content li {
            margin-bottom: 0.5rem;
            position: relative;
        }

        .section-content li:before {
            content: "•";
            color: var(--secondary);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
            font-size: 1.2rem;
        }

        .highlight-box {
            background-color: rgba(127, 174, 120, 0.08);
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }

        .contact-info {
            background-color: rgba(5, 10, 75, 0.03);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
            border: 1px solid rgba(5, 10, 75, 0.1);
        }

        .contact-info a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

      
        /* Mobile Optimizations */
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .navbar-custom {
                padding: 0.5rem 0;
            }
            
            .page-header {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .page-header h1 {
                font-size: 1.75rem;
            }
            
            .toc-card {
                position: static;
                margin-bottom: 1.5rem;
            }
            
            .terms-card {
                padding: 1.5rem;
            }
            
            .section-header1 {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .section-title {
                font-size: 1.3rem;
            }
            
            .section-number {
                width: 2.2rem;
                height: 2.2rem;
                font-size: 0.9rem;
            }
            
            .footer {
                padding: 2rem 0;
            }
            
            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
        }

        /* Small mobile devices */
        @media (max-width: 576px) {
            .page-header {
                padding: 1.25rem;
            }
            
            .page-header h1 {
                font-size: 1.5rem;
            }
            
            .effective-date {
                font-size: 0.9rem;
                padding: 0.4rem 1.2rem;
            }
            
            .terms-card {
                padding: 1.25rem;
            }
            
            .section-title {
                font-size: 1.2rem;
            }
            
            .highlight-box {
                padding: 1.25rem;
            }
        }

        /* Print Styles */
        @media print {
            
            .container {
                max-width: 100%;
            }
            
            .page-header, .terms-card {
                box-shadow: none !important;
                border: 1px solid #ddd !important;
            }
        }
 


/* Terms And Condition page end*/

/* Privacy policy */


        /* Header */
        .privacy-header {
            background: linear-gradient(135deg, rgba(5, 10, 75, 0.05) 0%, rgba(127, 174, 120, 0.05) 100%);
            border-radius: 16px;
            padding: 3rem 2.5rem;
            margin-bottom: 3rem;
            /* border-left: 6px solid var(--secondary); */
            position: relative;
            overflow: hidden;
        }

        .privacy-header::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background-color: rgba(127, 174, 120, 0.08);
            border-radius: 50%;
            z-index: 0;
        }

        .privacy-header-content {
            position: relative;
            z-index: 1;
        }

        .privacy-header h1 {
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 0.75rem;
            font-size: 2.75rem;
        }

        .privacy-header p {
            color: #555;
            font-size: 1.1rem;
            max-width: 800px;
        }

        .effective-date-privacy {
            background-color: var(--primary);
            color: white;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            margin-top: 1rem;
            box-shadow: 0 4px 12px rgba(5, 10, 75, 0.2);
        }

        /* Table of Contents */
        .privacy-toc-card {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(5, 10, 75, 0.08);
        }

        .privacy-toc-title {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--secondary);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .privacy-toc-title i {
            color: var(--secondary);
        }

        .privacy-toc-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        .privacy-toc-item {
            margin-bottom: 0.85rem;
            counter-increment: toc-counter;
        }

        .privacy-toc-item:before {
            content: counter(toc-counter) ".";
            color: var(--secondary);
            font-weight: 700;
            margin-right: 0.75rem;
            font-size: 0.95rem;
        }

        .privacy-toc-link {
            text-decoration: none;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 0;
            transition: all 0.3s;
            border-radius: 6px;
            padding: 0.6rem 0.8rem;
        }

        .privacy-toc-link:hover, .privacy-toc-link.active {
            color: var(--primary);
            background-color: rgba(127, 174, 120, 0.08);
            transform: translateX(5px);
        }

        /* Privacy Content Sections */
        .privacy-content-card {
            background-color: white;
            border-radius: 16px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(5, 10, 75, 0.05);
        }

        .privacy-section {
            margin-bottom: 3rem;
            scroll-margin-top: 100px;
        }

        .privacy-section:last-child {
            margin-bottom: 0;
        }

        .privacy-section-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.75rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .privacy-section-icon {
            background-color: rgba(5, 10, 75, 0.08);
            color: var(--primary);
            width: 3rem;
            height: 3rem;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        .privacy-section-title {
            color: var(--primary);
            font-size: 1.6rem;
            margin-bottom: 0;
            font-weight: 700;
        }

        .privacy-section-content {
            padding-left: 1rem;
        }

        .privacy-section-content p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .privacy-section-content ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        .privacy-section-content li {
            margin-bottom: 0.75rem;
            position: relative;
            padding-left: 0.5rem;
        }

        .privacy-section-content li:before {
            content: "•";
            color: var(--secondary);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
            font-size: 1.4rem;
            position: absolute;
            left: 0;
        }

        /* Special Styling for Data Collection Section */
        .data-collection-item {
            background-color: rgba(127, 174, 120, 0.05);
            border-left: 4px solid var(--secondary);
            padding: 1.25rem;
            margin-bottom: 1rem;
            border-radius: 0 8px 8px 0;
            transition: transform 0.2s;
        }

        .data-collection-item:hover {
            transform: translateX(5px);
            background-color: rgba(127, 174, 120, 0.08);
        }

        .data-collection-icon {
            color: var(--secondary);
            font-size: 1.2rem;
            margin-right: 0.75rem;
        }

        /* Highlight Box */
        .privacy-highlight-box {
            background-color: rgba(5, 10, 75, 0.05);
            border-left: 4px solid var(--primary);
            padding: 1.75rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }

        /* Contact Box */
        .privacy-contact-box {
            background: linear-gradient(135deg, rgba(5, 10, 75, 0.03) 0%, rgba(127, 174, 120, 0.03) 100%);
            padding: 2.5rem;
            border-radius: 12px;
            margin-top: 2.5rem;
            border: 1px solid rgba(5, 10, 75, 0.1);
            text-align: center;
        }

        .privacy-contact-box h4 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .privacy-contact-email {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background-color: white;
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .privacy-contact-email:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            color: var(--primary);
            text-decoration: none;
        }

        .privacy-contact-email i {
            color: var(--secondary);
        }

        /* Mobile Optimizations */
        @media (max-width: 992px) {
            body {
                padding-top: 72px;
            }
            
            .privacy-header {
                padding: 2rem 1.5rem;
                margin-bottom: 2rem;
            }
            
            .privacy-header h1 {
                font-size: 2.25rem;
            }
            
            .privacy-content-card {
                padding: 2rem;
            }
            
            .privacy-section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
            
            .privacy-section-title {
                font-size: 1.4rem;
            }
            
            .privacy-contact-box {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .privacy-header h1 {
                font-size: 2rem;
            }
            
            .privacy-toc-card, .privacy-content-card {
                padding: 1.5rem;
            }
            
            .privacy-section-content {
                padding-left: 0;
            }
            
            .privacy-contact-email {
                font-size: 1.1rem;
                padding: 0.85rem 1.5rem;
            }
           
        }

        @media (max-width: 576px) {
            .privacy-header {
                padding: 1.5rem;
            }
            
            .privacy-header h1 {
                font-size: 1.75rem;
            }
            
            .effective-date-privacy {
                font-size: 0.9rem;
                padding: 0.5rem 1.5rem;
            }
            
            .privacy-content-card {
                padding: 1.25rem;
            }
            
            .privacy-section-title {
                font-size: 1.3rem;
            }
            
            .privacy-highlight-box {
                padding: 1.5rem;
            }
        }

        /* Print Styles */
        @media print {
            .navbar-privacy, .privacy-toc-card, .footer-privacy {
                display: none !important;
            }
            
            body {
                padding-top: 0;
                background-color: white;
            }
            
            .privacy-header, .privacy-content-card {
                box-shadow: none !important;
                border: 1px solid #ddd !important;
            }
        }

        /* Referal */

        li.list_il {
        list-style-type: none;
    }