* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --primary-orange: #FF5F15;
    --secondary-orange: #FFA802;
    --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    --gradient-light: linear-gradient(135deg, #fff5f0 0%, #fff9f0 100%);
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --shadow-light: 0 10px 40px rgba(255, 95, 21, 0.1);
    --shadow-hover: 0 20px 60px rgba(255, 95, 21, 0.2);
    --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);

}

body {
    font-family: 'DM Sans', sans-serif;
    /* background-color: #000000; */
    background-color: #0d163e !important;
    color: rgb(0, 0, 0);
    line-height: 1.6;
    overflow-x: hidden;
}


.container-fluid {
    max-width: 1850px !important;
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: #0d163e;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

img {
    max-width: 100%;
    height: auto;
}

.hero {
    /* background-image: url('../assets/backhero.png'); */
    background-size: cover;
    background-position: center;
    padding: 200px 0;
    /* or adjust height */
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}



.safety-section {
    /* padding: 3rem 2rem; */
    color: white;
    text-align: center;
}

.safety-section h2 {
    color: #ffa500;
    font-size: clamp(24px, 5vw, 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 {
    background: #0d163e !important;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 168, 2, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.safety-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 95, 21, 0.05), rgba(255, 168, 2, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.safety-card:hover::before {
    opacity: 1;
}

.safety-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 95, 21, 0.3);
    border-color: rgba(255, 168, 2, 0.4);
}

.safety-card img {
    transition: all 0.3s ease;
}

.safety-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.safety-card img {
    width: clamp(80px, 15vw, 120px);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.safety-card h3 {
    /* color: #ff6600; */
    font-size: clamp(18px, 3.5vw, 26px);
    margin-bottom: 0.5rem;
    text-align: center !important;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff5f15 0%, #ffa802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.safety-card p {
    color: #fff;
    font-size: clamp(14px, 2.5vw, 20px);
    text-align: left;
}



.payment-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2b2b2b;
    border-radius: 20px;
    padding: 2rem;
    margin: 40px 0px;
    color: white;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.payment-section::before {
    content: "";
    position: absolute;
    right: 90px;
    width: 300px;
    height: 300px;
    background-color: orange;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-radius: 50% 50% 50% 50%;
    z-index: 0;
}



.content h2 {
    color: #fca311;
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 1rem;
}

.learn-btn {
    background-color: #f75e2e;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: clamp(14px, 2vw, 16px);
}

.image-container {
    flex: 1;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
}

/* Optimized animations for better performance */
.typewriter {
    overflow: hidden;
    border-right: 2px solid #fded0d;
    font-family: monospace;
    animation: typing 2s steps(16) infinite alternate, blink 1s step-end infinite;
    will-change: width, border-color;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 16ch;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Optimized slide animations with hardware acceleration */
.slide-in-right {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: transform, opacity;
}

.slide-in-right.show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.slide-in-left {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: transform, opacity;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .logo {
        display: flex;
        align-items: center;
        margin-left: 0px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .hero-image {
        flex: 1 1 100%;
        padding: 0;
    }

    .hero-text h1 {
        font-size: 50px;
        color: #ffa500;
        margin-bottom: 5px;
    }

    .navbar {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
    }

    .nav-links li {
        margin-bottom: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .hero-image {
        flex: 1 1 100%;
        padding: 0;
        text-align: left;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .safety-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .safety-card {
        padding: 1.2rem;
    }

    .safety-section h2 {
        font-size: 1.5rem;
    }

    .highlight-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .highlight-text,
    .highlight-image {
        flex: 1 1 100%;
    }

    .highlight-text h4 {
        font-size: 1rem;
    }



    .consult-btn {
        position: static;
        margin: 2rem auto 0;
    }

    .payment-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin: 0;
    }

    .payment-section::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 50% 50% 0 0;
    }

    .content h2 {
        font-size: 1.2rem;
    }

    .learn-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .image-container {
        margin-top: 1.5rem;
    }
}

/* Simplified background animation for better performance */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(255, 95, 21, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 168, 2, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 30%);
    background-size: 200px 200px, 300px 300px, 150px 150px;
}

/* Optimized hexagonal pattern animation */
.hex-newsletter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.1) 25%,
            transparent 25%,
            transparent 75%,
            rgba(255, 255, 255, 0.1) 75%);
    background-size: 30px 30px;
    animation: hexPattern 12s linear infinite;
    will-change: transform;
}

@keyframes hexPattern {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(30px, 30px, 0);
    }
}

/* Optimized flag wave animation */
.flag-icon {
    width: 24px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    animation: wave 4s ease-in-out infinite;
    will-change: transform;
}

@keyframes wave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

/* Optimized glow effect with reduced complexity */
.light-glow {
    position: relative;
}

.light-glow::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff5f15, #ffa802, #ff5f15);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.2;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.light-glow:hover::after {
    opacity: 0.3;
}

/* Simplified pulse animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.02, 1.02, 1);
    }
}

/* Optimized float animation */
.floating-element {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 95, 21, 0.6), rgba(255, 168, 2, 0.4));
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
    will-change: transform;
}

@keyframes float {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -15px, 0);
    }
}

/* Added performance optimizations */
.partner-card {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Reduced animation complexity for better performance */
.fade-in {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: transform, opacity;
}

.fade-in.show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* footer section */
footer ul li,
footer ul li a {
    font-size: clamp(16px, 2.5vw, 22px);
    color: #000000;
    font-weight: 500;
}

/* Terms & Conditions Hero Section - Unique Design */
/* .data-policy-section {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
  overflow: hidden;

  margin-top: 4rem;


} */

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInLeft 1.2s ease-out 0.9s both;
}


.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-3px);
    text-decoration: none;
}

.hero-btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hero-btn-primary::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;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
    text-decoration: none;
}

.hero-btn-primary:hover::before {
    left: 100%;
}


/* Terms & Conditions Hero Section - Updated to match services.html dimensions */
.data-policy-section {
    position: relative;
    min-height: 75vh;
    /* Changed from 65vh to 75vh */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
    overflow: hidden;
    padding: clamp(80px, 15vw, 100px) 0 clamp(60px, 12vw, 70px);
    margin-top: 5rem;
}

.data-policy-section .container-fluid {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 max(40px, 3vw);
}



.data-policy-section .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* Changed from default to 60px */
    align-items: center;
    width: 100%;
}

.data-policy-section .content {
    position: relative;
    z-index: 3;
    margin-top: 0;
    max-width: 700px;
    width: 100%;
}

.data-policy-section .image-col {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    max-height: calc(100vh - 200px);
    width: 100%;
    max-width: 700px;
    justify-self: end;
}


/* Animated Grid Background */
.terms-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #FF5F15, transparent);
    animation: gridPulse 3s ease-in-out infinite;
}

.grid-line:nth-child(1) {
    width: 100%;
    height: 2px;
    top: 20%;
    animation-delay: 0s;
}

.grid-line:nth-child(2) {
    width: 100%;
    height: 2px;
    top: 40%;
    animation-delay: 0.6s;
}

.grid-line:nth-child(3) {
    width: 100%;
    height: 2px;
    top: 60%;
    animation-delay: 1.2s;
}

.grid-line:nth-child(4) {
    width: 100%;
    height: 2px;
    top: 80%;
    animation-delay: 1.8s;
}

.grid-line:nth-child(5) {
    width: 2px;
    height: 100%;
    left: 50%;
    animation-delay: 2.4s;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.3;
    }
}


/* Content Styling */
.content {
    position: relative;
    z-index: 5;
    animation: fadeInLeft 1s ease-out;
}

/* Terms Badge */
.terms-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: rgba(255, 95, 21, 0.1) !important;
    border: 2px solid rgba(255, 95, 21, 0.3) !important;
    color: var(--secondary-orange) !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 30px !important;
    backdrop-filter: blur(10px) !important;
    animation: slideInLeft 1s ease-out !important;

}

.terms-badge:hover {
    background: rgba(255, 95, 21, 0.2);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

@keyframes pulseBadge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 95, 21, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 95, 21, 0);
    }
}


.terms-badge i {
    font-size: 16px !important;
    animation: pulse 2s infinite !important;
}

/* Main Title */
.terms-main-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 750;
    line-height: 1.1;
    color: white;
    margin-bottom: 25px;
    animation: slideInLeft 1.2s ease-out 0.3s both;
}

.highlight-word {
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    border-radius: 2px;
}


/* Subtitle */
.terms-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.6 !important;
    margin-bottom: 35px !important;
    animation: slideInLeft 1.2s ease-out 0.6s both !important;
}

/* Key Points */
.terms-key-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.point-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon i {
    font-size: 16px;
    color: white;
}

/* Action Buttons */
.terms-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.terms-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.terms-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 95, 21, 0.3);
}

.terms-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 95, 21, 0.4);
    color: white;
}

.terms-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.terms-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-3px);
}

/* Right Illustration */
/* Right Illustration */
.image-col {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terms-illustration {
    position: relative;
    width: 100%;
    max-width: 550px;
    /* Changed from 450px */
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central N1 Logo Container */
.central-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    z-index: 5;
}

.logo-glow-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.logo-glow-rings .glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 95, 21, 0.3);
    animation: expandRing 4s ease-out infinite;
}

.logo-glow-rings .glow-ring:nth-child(1) {
    width: 250px;
    height: 250px;
    animation-delay: 0s;
}

.logo-glow-rings .glow-ring:nth-child(2) {
    width: 240px;
    height: 240px;
    animation-delay: 1.3s;
}

.logo-glow-rings .glow-ring:nth-child(3) {
    width: 300px;
    height: 300px;
    animation-delay: 2.6s;
}

@keyframes expandRing {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.central-n1-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 95, 21, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 30px rgba(255, 95, 21, 0.4),
        inset 0 0 20px rgba(255, 95, 21, 0.2);
    animation: logoPulse 3s ease-in-out infinite;
}

.central-n1-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(255, 95, 21, 0.5));
}

@keyframes logoPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow:
            0 0 30px rgba(255, 95, 21, 0.4),
            inset 0 0 20px rgba(255, 95, 21, 0.2);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow:
            0 0 50px rgba(255, 95, 21, 0.6),
            inset 0 0 30px rgba(255, 95, 21, 0.3);
    }
}

/* Orbiting N1 Logos */
.logo-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(255, 95, 21, 0.2);
    border-radius: 50%;
    animation: rotateOrbit 20s linear infinite;
    z-index: 4;
}

.orbit-logo {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.orbit-logo img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(255, 95, 21, 0.3));
}

.orbit-logo:hover {
    transform: scale(1.3);
    background: rgba(255, 95, 21, 0.2);
    border-color: #FF5F15;
    box-shadow:
        0 8px 30px rgba(255, 95, 21, 0.4),
        0 0 20px rgba(255, 95, 21, 0.3);
}

.orbit-1 {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}

.orbit-3 {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.orbit-4 {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

@keyframes rotateOrbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Document Stack */
.document-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.document {
    position: absolute;
    width: 150px;
    height: 210px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.document i {
    font-size: 40px;
    color: var(--secondary-orange);
}

.document span {
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.doc-1 {
    top: 50px;
    left: 10px;
    transform: rotate(-12deg);
    z-index: 3;
}

.doc-2 {
    top: 50px;
    right: 10px;
    transform: rotate(12deg);
    z-index: 2;
}

.doc-3 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    z-index: 1;
}

.document:hover {
    transform: translateY(-10px) scale(1.05) rotate(0deg) !important;
    border-color: var(--primary-orange);
    z-index: 10 !important;
}

/* Trust Seal */
.trust-seal {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    z-index: 6;
}

.seal-inner {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 15px 40px rgba(255, 95, 21, 0.5);
    /* animation: sealFloat 3s ease-in-out infinite; */
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.seal-inner i {
    font-size: 40px;
    color: white;
    /* animation: sealIconSpin 8s linear infinite; */
}

.seal-inner span {
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

@keyframes sealFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes sealIconSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




@keyframes sealRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 30px;
    height: 45px;
    border: 2px solid rgba(255, 95, 21, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.scroll-arrow i {
    font-size: 14px;
    color: var(--secondary-orange);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .data-policy-section .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .data-policy-section .content {
        text-align: center;
        order: 2;
        margin-top: 1rem;
        max-width: 100%;
        justify-self: center;
    }

    .data-policy-section .image-col {
        order: 1;
        max-height: none;
        justify-self: center;
    }

    .terms-illustration {
        max-width: 450px;
    }
}


@media (max-width: 768px) {
    .data-policy-section {
        padding: 60px 0;
        min-height: 60vh;
    }

    .data-policy-section .container-fluid {
        padding: 0 20px;
    }

    .data-policy-section .row {
        gap: 20px;
    }

    .data-policy-section .content {
        margin-top: 0.5rem;
    }

    .terms-illustration {
        max-width: 380px;
    }
}

/* Responsive Design */
@media (max-width: 991px) {


    .terms-main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .terms-illustration {
        max-width: 300px;
        height: 300px;
        margin-top: 40px;
    }

    .document {
        width: 150px;
        height: 200px;
    }

    .document i {
        font-size: 35px;
    }

    .trust-seal {
        width: 80px;
        height: 80px;
    }

    .seal-inner i {
        font-size: 30px;
    }

}

@media (max-width: 768px) {
    .terms-actions {
        flex-direction: column;
        width: 100%;
    }

    .terms-btn {
        width: 100%;
        justify-content: center;
    }

    .terms-key-points {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .data-policy-section {
        padding: 70px 0 50px;
    }

    .terms-illustration {
        max-width: 250px;
        height: 250px;
    }

    .document {
        width: 120px;
        height: 160px;
    }
}








/* Enhanced Safety Section - RESPONSIVE */
.safety-section {
    /* padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem); */
    color: white;
    text-align: center;
    position: relative;
}


@media (min-width: 576px) and (max-width: 780px) {
    .col-sm-3 {
        flex: 0 0 auto !important;
        width: 50% !important;
        /* 2 cards ek row me */
    }
}


@media (min-width: 200px) and (max-width:575) {
    .col-sm-3 {
        flex: 0 0 auto !important;
        width: 100% !important;
    }
}

/* Safety Section Main Title - RESPONSIVE */
.safety-section h2 span {
    font-size: clamp(24px, 6vw, 45px) !important;
    line-height: clamp(32px, 8vw, 62px) !important;
}

.safety-card {
    background: #0d163e !important;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 168, 2, 0.1);
    animation: fadeInUp 0.8s ease-out;
    padding: clamp(1rem, 3vw, 1.5rem);
}






@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Container - RESPONSIVE */
.icon-container {
    border: 3px solid orange;
    border-radius: clamp(15px, 3vw, 25px);
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(8px, 2vw, 12px);
}

.icon-container img {
    height: clamp(80px, 15vw, 200px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Content Container - RESPONSIVE */
.content-container {
    flex: 1;
    min-width: 0;
    /* Prevents flex item from overflowing */
}



.star-icon {
    color: darkorange;
    font-size: clamp(16px, 3vw, 20px);
}




/* Banner Section - RESPONSIVE */
.banner-wrapper {
    margin: clamp(20px, 4vw, 40px) 0;
}

.banner-wrapper img {
    width: 100%;
    height: auto;
    border-radius: clamp(15px, 3vw, 30px);
    object-fit: cover;
}

/* Utility Classes */
.text-center {
    text-align: center !important;
}

.no-break {
    white-space: nowrap;
}



/* Scroll-triggered animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced gradient text animations */
span[style*="background: linear-gradient"] {
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

a {
    color: white;
    text-decoration: none;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-up 15s infinite linear;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.particle:nth-child(1) {
    left: 10%;
    width: 4px;
    height: 4px;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    width: 6px;
    height: 6px;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 30%;
    width: 3px;
    height: 3px;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 40%;
    width: 5px;
    height: 5px;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    left: 50%;
    width: 4px;
    height: 4px;
    animation-delay: 8s;
}

.particle:nth-child(6) {
    left: 60%;
    width: 7px;
    height: 7px;
    animation-delay: 10s;
}

.particle:nth-child(7) {
    left: 70%;
    width: 3px;
    height: 3px;
    animation-delay: 12s;
}

.particle:nth-child(8) {
    left: 80%;
    width: 5px;
    height: 5px;
    animation-delay: 14s;
}

.particle:nth-child(9) {
    left: 90%;
    width: 4px;
    height: 4px;
    animation-delay: 1s;
}

/* Image Styling */
.image-col {
    position: relative;
    z-index: 3;
    text-align: center;
}

.data-policy-section img {
    max-width: 100%;
    height: auto;
    animation: slideInRight 1.2s ease-out 0.4s both, floatImage 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.data-policy-section img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Decorative Elements */
.glow-orb {
    position: absolute;
    width: clamp(80px, 15vw, 150px);
    height: clamp(80px, 15vw, 150px);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

.glow-orb:nth-child(2) {
    width: clamp(60px, 12vw, 100px);
    height: clamp(60px, 12vw, 100px);
    top: 70%;
    left: 15%;
    animation-delay: 2s;
}

/* Enhanced Banner Images */
.banner-wrapper img {
    transition: all 0.4s ease;
    filter: brightness(1.05) contrast(1.1);
    border-radius: clamp(15px, 3vw, 30px);
}

.banner-wrapper img:hover {
    transform: scale(1.02);
    filter: brightness(1.1) contrast(1.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes pulseOverlay {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Animated Background Elements */


.terms-section div[style*="background:#0d163e"] {
    border-radius: 25px;
    background: #0d163e !important;
    border: 2px solid rgba(255, 168, 2, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.terms-section div[style*="background:#0d163e"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 168, 2, 0.08), transparent);
    transition: left 0.6s ease;
}

.terms-section div[style*="background:#0d163e"]:hover::before {
    left: 100%;
}

.terms-section div[style*="background:#0d163e"]:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 15px 35px rgba(255, 95, 21, 0.2);
    border-color: rgba(255, 168, 2, 0.3);
}


/* policy secction */


.policy-card {
    border-radius: clamp(15px, 3vw, 25px);
    background: #0d163e !important;
    border: 2px solid rgba(255, 168, 2, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    padding: clamp(12px, 3vw, 24px);
    margin-bottom: clamp(20px, 4vw, 50px);
    display: flex;
    align-items: center;
    gap: clamp(10px, 3vw, 20px);
    flex-direction: row;
}

/* Mobile First Approach */
@media (max-width: 768px) {
    .policy-card {
        flex-direction: column;
        text-align: center;
        padding: clamp(15px, 4vw, 20px);
        gap: clamp(15px, 4vw, 25px);
    }

    .policy-card.reverse-mobile {
        flex-direction: column;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .policy-card {
        gap: clamp(15px, 2.5vw, 20px);
        padding: clamp(18px, 3.5vw, 22px);
    }
}

/* Animation Effects */
.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 168, 2, 0.08), transparent);
    transition: left 0.6s ease;
}

.policy-card:hover::before {
    left: 100%;
}

.policy-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 15px 35px rgba(255, 95, 21, 0.2);
    border-color: rgba(255, 168, 2, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Container - RESPONSIVE */
.icon-container {
    border: 3px solid orange;
    border-radius: clamp(15px, 3vw, 25px);
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(8px, 2vw, 12px);
}

.icon-container img {
    height: clamp(80px, 15vw, 200px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Content Container - RESPONSIVE */
.content-container {
    flex: 1;
    min-width: 0;
    /* Prevents flex item from overflowing */
}

/* Typography - FULLY RESPONSIVE */
.policy-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(18px, 4.5vw, 35px) !important;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: clamp(24px, 5.5vw, 42px) !important;
    letter-spacing: clamp(-0.5px, -0.2vw, -1.2px);
    text-align: center;
    background: linear-gradient(90deg, #ff5f15 0%, #ffa802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: clamp(10px, 2vw, 15px);
}

.policy-text {
    text-align: justify;
    font-size: clamp(14px, 3vw, 22px) !important;
    line-height: clamp(20px, 4vw, 32px);
    margin-bottom: clamp(8px, 2vw, 15px);
}

/* Table Styles - FULLY RESPONSIVE */
.policy-table {
    width: 100%;
    font-size: clamp(14px, 3vw, 22px) !important;
    background-color: transparent;
    border-collapse: collapse;
    margin-top: clamp(8px, 2vw, 15px);
}

.policy-table td {
    padding: clamp(6px, 1.5vw, 8px) !important;
    vertical-align: top;
    /* word-break: break-word; */
}

.policy-table .star-cell {
    width: clamp(25px, 5vw, 30px);
    text-align: center;
}

.policy-table .colon-cell {
    width: clamp(15px, 3vw, 20px);
    text-align: center;
    padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2vw, 20px) clamp(6px, 1.5vw, 8px) clamp(6px, 1.5vw, 8px) !important;
}

.policy-table .content-cell {
    text-align: justify;
}

.policy-table strong {
    font-size: clamp(13px, 2.8vw, 20px);
    font-weight: 700;
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(90deg, #ff5f15 0%, #ffa802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-transform: uppercase;
}

.star-icon {
    color: darkorange;
    font-size: clamp(16px, 3vw, 20px);
}

/* Special Mobile Adjustments */
@media (max-width: 480px) {
    .policy-card {
        margin-bottom: clamp(25px, 8vw, 50px);
        border-radius: 15px;
    }

    .policy-title {
        font-size: clamp(16px, 5vw, 24px) !important;
        line-height: clamp(22px, 6vw, 30px) !important;
    }

    .policy-text {
        font-size: clamp(13px, 3.5vw, 18px) !important;
        text-align: left;
    }

    .policy-table {
        font-size: clamp(13px, 3.5vw, 18px) !important;
    }

    .policy-table strong {
        font-size: clamp(12px, 3.2vw, 16px);
    }

    .icon-container {
        border-radius: 15px;
    }

    .icon-container img {
        height: clamp(60px, 20vw, 120px);
    }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
    .policy-section {
        /* max-width: 1200px; */
        margin: 0 auto;
        padding-top: 4rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center !important;
}

/* .no-break {
  white-space: nowrap;
} */

/* Fix for long words in table cells */
/* .policy-table td {
  word-wrap: break-word;
  overflow-wrap: break-word;
} */

/* Ensure proper spacing on all devices */
.policy-section>div:last-child {
    margin-bottom: 0;
}