/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-zinc-950: #09090b;
    --color-zinc-900: #18181b;
    --color-zinc-800: #27272a;
    --color-zinc-700: #3f3f46;
    --color-zinc-600: #52525b;
    --color-zinc-500: #71717a;
    --color-zinc-400: #a1a1aa;
    --color-zinc-300: #d4d4d8;
    --color-blue-600: #18012b;
    --color-blue-500: #3b82f6;
    --color-blue-400: #18012b;
    --color-purple-600: #9333ea;
    --color-purple-500: #a855f7;
    --color-red-600: #18012b;
    --color-red-700: #b91c1c;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--color-zinc-950);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
    margin-top: 70px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-zinc-800);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5.5rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
    width: 150px;
    gap: 0.5rem;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}



.nav-desktop {
    display: none;
    gap: 2rem;

}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-zinc-400);
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: block;
    }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--color-zinc-400);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: #fff;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--color-zinc-800);
}

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

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-gradient {
    background: linear-gradient(90deg, #3a0366, #7c3aed);
}

.btn-gradient-1 {
    background: linear-gradient(90deg, #3a0366, #7c3aed);
    margin-left:520px ;
    margin-top: 50px;
}

.btn-gradient-1:hover {
    background:linear-gradient(90deg, #2d094a, #390692);
    margin-left:520px ;
    margin-top: 50px;
}

.btn-gradient-2 {
    background: linear-gradient(90deg, var(--color-blue-600), var(--color-purple-600));
}

.btn-gradient-2:hover {
    background: linear-gradient(90deg, #3a0366, #7c3aed);

}
.btn-gradient:hover {
    background: linear-gradient(90deg, #2d094a, #390692);
}

.btn-red {
    background-color:#7c3aed;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-red:hover {
    background-color: #3a0366;
}

.btn-white {
    background-color:  linear-gradient(90deg, var(--color-blue-600), var(--color-purple-600));
    color: var(--color-blue-600);
    padding: 1rem 2rem;
}

.btn-white:hover {
    background-color: #f4f4f5;
}

.btn-white-lg {
    background-color: #fff;
    color: var(--color-blue-600);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-white-lg:hover {
    background-color: #f4f4f5;
}

.btn-play {
    background-color: #fff;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.btn-play:hover {
    background-color: #f4f4f5;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-blue-600), var(--color-purple-600));
    color: #fff;
    padding: 1rem 2rem;
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--color-blue-500), var(--color-purple-500));
}

.btn-secondary {
    background-color: var(--color-zinc-800);
    color: #fff;
    padding: 1rem 2rem;
}

.btn-secondary:hover {
    background-color: var(--color-zinc-700);
}

/* Banner Sections */
.banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-1 {
    background: url('../images/banner/banner-1.jpeg') center/cover no-repeat;
}

.banner-2 {
    background: url('../images/banner/banner-2.jpeg') center/cover no-repeat;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
}

.banner-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: -0.5rem;
} 

@media (min-width: 1024px) {
    .banner-title {
        font-size: 3.75rem;
    }
}

.banner-text {
    font-size: 1.25rem;
    color: #d4d4d8;
    margin-bottom: 2rem;
}

.banner-cta {
    margin-bottom: 1.5rem;
}

.banner-login {
    font-size: 0.875rem;
    color: var(--color-zinc-400);
    margin-bottom: 2rem;
}

.banner-login a {
    color: #fff;
    text-decoration: underline;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .app-buttons {
        flex-direction: row;
    }
}

.app-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.app-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.app-btn-small {
    font-size: 0.75rem;
}

.app-btn-large {
    font-weight: 600;
}

.platforms {
    margin-top: 1.5rem;
}

.platforms-title {
    font-size: 0.875rem;
    color: var(--color-zinc-400);
    margin-bottom: 0.75rem;
}

.platforms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.platforms-list span {
    font-size: 0.75rem;
    color: var(--color-zinc-500);
}

/* Banner Devices Section */
.banner-devices {
    background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, var(--color-zinc-900) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.banner-devices::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDQwIDAgTCAwIDAgMCA0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLW9wYWNpdHk9IjAuMDUiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPjwvc3ZnPg==') repeat;
    opacity: 0.5;
}

.banner-devices .container {
    position: relative;
    z-index: 10;
}

.devices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .devices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.device-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.device-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.device-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.device-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.device-card p {
    color: var(--color-zinc-400);
}

/* Featured Content */
.featured-content {
    background-color: var(--color-zinc-950);
    padding: 5rem 0;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.carousel-controls {
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    background-color: var(--color-zinc-800);
    border: none;
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: var(--color-zinc-700);
}

.carousel-wrapper {
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
}

.movie-card {
    min-width: calc(33.333% - 1rem);
    cursor: pointer;
}

@media (max-width: 1024px) {
    .movie-card {
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 640px) {
    .movie-card {
        min-width: 100%;
    }
}

.movie-poster {
    position: relative;
    aspect-ratio: 2/3;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.movie-card:hover .movie-poster img {
    transform: scale(1.1);
}

.movie-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.movie-card:hover .movie-overlay {
    opacity: 1;
}

.movie-genre {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-blue-600);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.movie-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.movie-card > p {
    font-size: 0.875rem;
    color: var(--color-zinc-400);
}

/* Sections */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-zinc-400);
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.section-text {
    font-size: 1.25rem;
    color: var(--color-zinc-400);
    margin-bottom: 2rem;
}

/* Features Section */
.features-section {
    background-color: rgba(24, 24, 27, 0.5);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--color-zinc-900);
    border: 1px solid var(--color-zinc-800);
    border-radius: 1rem;
    padding: 2rem;
    transition: border-color 0.3s;
}

.feature-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.feature-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-blue-400);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-zinc-400);
}

/* Channels Section */
.channels-section {
    padding: 5rem 0;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .channels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .channels-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.channel-card {
    background-color: var(--color-zinc-900);
    border: 1px solid var(--color-zinc-800);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s;
}

.channel-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.channel-count {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--color-blue-400), var(--color-purple-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
    display: inline-block;
}

.channel-card:hover .channel-count {
    transform: scale(1.1);
}

.channel-name {
    color: var(--color-zinc-400);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(90deg, var(--color-blue-600), var(--color-purple-600));
    padding: 5rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-image {
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.benefits-content h2 {
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.benefits-list svg {
    color: var(--color-blue-400);
    background-color: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    padding: 0.25rem;
    flex-shrink: 0;
}

.benefits-list span {
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: var(--color-zinc-950);
    border-top: 1px solid var(--color-zinc-800);
    margin-top: 5rem;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand p {
    color: var(--color-zinc-400);
    font-size: 0.875rem;
    max-width: 28rem;
    margin-top: 1rem;
}

.footer h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: var(--color-zinc-400);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--color-blue-400);
}

.footer-bottom {
    border-top: 1px solid var(--color-zinc-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: var(--color-zinc-500);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--color-zinc-500);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-blue-400);
}

/* Responsive utilities */
@media (max-width: 640px) {
    .banner-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.875rem;
    }
}
   /* SECTION */
.subscription-section{
    background:#0b0b0b;
    padding:100px 0;
    color:#ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* CONTAINER */
.subscription-section .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* TITLES */
.subscription-section .title{
    color:#9333ea;
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
}

.subscription-section .subtitle{
    color:#bdbdbd;
    max-width:850px;
    margin-bottom:50px;
    line-height:1.6;
    font-size:16px;
}

.subscription-section .plan-title{
    color:#9333ea;
    font-size:28px;
    font-weight:600;
    margin-bottom:45px;
}

/* PLAN GRID */
.plans{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

/* CARD */
.plan-card{
    background:linear-gradient(145deg,#1b1b1b,#141414);
    padding:40px 30px;
    border-radius:12px;
    position:relative;
    transition:all .35s ease;
    border:1px solid rgba(255,255,255,0.05);
}

/* CARD HOVER */
.plan-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.5);
    border-color:  #9333ea;
}

/* PLAN NAME */
.plan-card h4{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:8px;
}

/* PLAN TYPE */
.plan-type{
    color:#a0a0a0;
    font-size:14px;
    margin-bottom:18px;
}

/* PRICE */
.price{
    font-size:36px;
    font-weight:700;
    color:#fff;
    margin-bottom:25px;
}

/* FEATURES LIST */
.plan-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.plan-card ul li{
    color:#d4d4d4;
    font-size:15px;
    margin-bottom:12px;
    padding-left:22px;
    position:relative;
}

/* CUSTOM BULLET */
.plan-card ul li::before{
    content:"•";
    color: linear-gradient(90deg, rgb(0, 191, 98), #9333ea);
;
    position:absolute;
    left:0;
    font-size:18px;
}

/* BUTTON WRAPPER */
.signup-btn{
    text-align:left;
    margin-top:40px;
}

/* BUTTON */
.signup-btn a{
    display:inline-block;
    background:linear-gradient(90deg, var(--color-blue-600), var(--color-purple-600));
    color:#fff;
    padding:14px 32px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
}

/* BUTTON HOVER */
.signup-btn a:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(255,0,0,0.35);
}

/* RESPONSIVE */
@media (max-width:768px){

    .subscription-section{
        padding:70px 0;
        text-align:center;
    }

    .signup-btn{
        text-align:center;
    }

    .price{
        font-size:32px;
    }

}
/*About-us-page*/
.about-section{
    padding:80px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:10px;
}

.about-content h2{
    font-size:32px;
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:15px;
    line-height:1.7;
}
.features{
    background:#0f0f0f;
    padding:80px 0;
    color:#fff;
    text-align:center;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:40px;
}

.feature-box{
    background:#1a1a1a;
    padding:35px;
    border-radius:10px;
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
    background:#222;
}
.why-us{
    padding:80px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.why-us ul{
    margin-top:20px;
}

.why-us li{
    margin-bottom:10px;
}

.cta{
    background:#e50914;
    color:#fff;
    text-align:center;
    padding:80px 0;
}

.btn-primary{
    display:inline-block;
    margin-top:20px;
    background:linear-gradient(90deg, var(--color-blue-600), var(--color-purple-600));
    color:#000;
    padding:12px 30px;
    border-radius:6px;
    text-decoration:none;
}

.btn-primary:hover{
    background:linear-gradient(90deg, rgb(63, 9, 88), rgb(49, 20, 99));
}
   @media(max-width:768px){

.about-grid,
.why-grid{
grid-template-columns:1fr;
}

}
.difference-section{
    padding:80px 0;
    background:#0f0f0f;
    color:#fff;
}

.section-header{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
}

.section-header h2{
    font-size:36px;
    margin-bottom:15px;
}

.section-header p{
    color:#ccc;
    line-height:1.6;
}

.difference-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.difference-card{
    background:#1a1a1a;
    padding:30px;
    border-radius:10px;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.05);
}

.difference-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,0.4);
}

.difference-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:linear-gradient(90deg, var(--color-blue-600), var(--color-purple-600));;
}

.difference-card p{
    color:#d0d0d0;
    line-height:1.6;
}


.hero-about{
    position:relative;
    background:url('assets/images/banner/banner-about.jpeg') center/cover no-repeat;
    padding:120px 0;
    color:#fff;
}

/* overlay */
.hero-about::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

/* keep text above overlay */
.hero-about .container{
    position:relative;
    z-index:2;
}


/*popup-form-css*/
   .subscription .container{
    display: flex;
    justify-content: center;   /* centers horizontally */
    align-items: center;
    gap: 20px;                 /* space between buttons */
    flex-wrap: wrap;           /* responsive for mobile */
}

.subscription .btn{
    min-width: 200px;
    text-align: center;
}

/* POPUP BACKGROUND */
.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

/* POPUP BOX */
.popup-box{
    background:#fff;
    padding:40px;
    width:400px;
    border-radius:10px;
    text-align:center;
    position:relative;
    animation:popupFade .3s ease;
}

/* TITLE */
.popup-box h2{
    margin-bottom:25px;
}

/* INPUTS */
.popup-box input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:14px;
}

/* BUTTON */
.popup-submit{
    width:100%;
    padding:12px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 1), rgba(124, 58, 237, 1));
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:16px;
    cursor:pointer;
}

.popup-submit:hover{
    background:linear-gradient(90deg, var(--color-blue-600), var(--color-purple-600));
}

/* CLOSE BUTTON */
.close-popup{
    position:absolute;
    right:15px;
    top:10px;
    font-size:24px;
    cursor:pointer;
}

/* ANIMATION */
@keyframes popupFade{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}



   .banner-slider .swiper-slide{
    height:100vh;
    display:flex;
    align-items:center;
    margin-top: -164px;
}

.banner{
    width:100%;
}

/*Contact-Page-Css*/


.contact-hero {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.contact-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 0;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 1rem;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero h1 span {
    color: #60a5fa; /* accent color */
}

.contact-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero .btn-hero {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    color: #fff;
    font-weight: 600;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-hero .btn-hero:hover {
    background: linear-gradient(135deg, #2563eb, #9333ea);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/*affliation-page-css*/
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* General Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    background-color: #4f46e5;
    color: #fff;
}

.btn-primary:hover {
    background-color: #4338ca;
}

.btn-light {
    background-color:linear-gradient(90deg, rgb(37, 235, 86), rgba(124, 58, 237, 1));
    color: #fff;
}

.btn-light:hover {
    background-color:linear-gradient(90deg, rgba(37, 99, 235, 1), rgba(124, 58, 237, 1));
}

/* Stats Section */
section.bg-light {
    background-color: #000;
}

section.bg-light .row.text-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

section.bg-light .col-md-3 {
    flex: 1 1 200px;
    padding: 20px;
}

section.bg-light h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

section.bg-light p {
    font-size: 1rem;
}

/* Benefits Section */
section.py-5 .text-center.mb-5 h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

section.py-5 .text-center.mb-5 p {
    font-size: 1.1rem;
    color: #555;
}

section.py-5 .row.text-center {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

section.py-5 .col-md-3 {
    flex: 1 1 250px;
    padding: 20px;
    border-radius: 8px;
    background-color: #000;
     border:1px solid #9333ea;
    box-shadow: 0 20px 40px rgba(15, 133, 66, 0.4);
    text-align: center;
}

section.py-5 .col-md-3 h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* How It Works Section */
section.bg-light .row.text-center .col-md-3 {
    background-color: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(15, 133, 66, 0.4);
    margin-bottom: 20px;
    border: 1px solid #9333ea;
}

section.bg-light .col-md-3 h3 {
    font-size: 2rem;
    color: #4f46e5;
    margin-bottom: 10px;
}

section.bg-light .col-md-3 h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Commission Section */
section.py-5 .row.text-center .col-md-4 {
    flex: 1 1 300px;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #000;
     border:1px solid #9333ea;
    box-shadow: 0 20px 40px rgba(15, 133, 66, 0.4);

}

section.py-5 .col-md-4 h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #4f46e5;
}

section.py-5 .col-md-4 h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Features Section */
section.bg-light .row.align-items-center {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

section.bg-light img.img-fluid {
    width: 100%;
    border-radius: 8px;
}

section.bg-light h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

section.bg-light ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #555;
}

section.bg-light ul li {
    margin-bottom: 10px;
}

/* Marketing Materials Section */
section.py-5 .row.text-center .col-md-4 {
    flex: 1 1 250px;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #000;
    border:1px solid #9333ea;
    box-shadow: 0 20px 40px rgba(15, 133, 66, 0.4);
}

/* CTA Section */
section.text-center.bg-primary {
    background-color: #000;
    color: linear-gradient(90deg, rgba(37, 99, 235, 1), rgba(124, 58, 237, 1));;
    padding: 80px 20px;
}

section.text-center.bg-primary h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

section.text-center.bg-primary p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    section.py-5 .row.text-center,
    section.bg-light .row.text-center,
    section.bg-light .row.align-items-center {
        flex-direction: column;
    }
    section.bg-light .col-md-6,
    section.py-5 .col-md-3,
    section.py-5 .col-md-4 {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    section.text-center.bg-primary h2 {
        font-size: 1.6rem;
    }
}
/*-------------*/

/*Support-page*/

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f1f1f1;
    background-color: #121212;
}

/* Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==============================
   Contact Hero Section
   ============================== */
/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 80vh; /* ensures banner is tall enough */
    padding: 8rem 1rem;
    text-align: center;
    color: #fff;

    /* Background settings */
    background-image: url('assets/images/banner.png'); /* replace with your actual image path */
    background-size: cover;       /* cover entire section */
    background-repeat: no-repeat; /* no tiling */
    background-position: center;  /* center the image */
    background-attachment: scroll; /* optional: makes image scroll with content */
    overflow: hidden;
}

/* Dark overlay for better text readability */
.contact-hero .overlay {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    z-index: 0;
}

/* Container holding text & buttons */
.contact-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Headings */
.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero h1 span {
    color: #4f46e5; /* accent color for highlights */
}

/* Paragraph */
.contact-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d1d1;
}

/* Hero button */
.contact-hero .btn-hero {
    padding: 1rem 2rem;
    background-color: #4f46e5;
    color: #fff;
    font-weight: 600;
    border-radius: 1rem;
    text-decoration: none;
    transition: 0.3s;
}

.contact-hero .btn-hero:hover {
    background-color: #4338ca;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 1rem;
    }

    .contact-hero h1 {
        font-size: 2.25rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 4rem 1rem;
    }

    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .contact-hero p {
        font-size: 0.9rem;
    }
}
/* ==============================
   Support Hero / Search Section
   ============================== */
.relative.py-20 {
    position: relative;
    padding: 6rem 1rem;
    text-align: center;
    overflow: hidden;
}

.relative.py-20 .container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.relative.py-20 h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.relative.py-20 h1 span {
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.relative.py-20 p {
    font-size: 1.25rem;
    color: #a1a1aa;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.relative.py-20 input[type="text"] {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    background-color: #1f1f1f;
    border: 1px solid #27272a;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.relative.py-20 input::placeholder {
    color: #71717a;
}

.relative.py-20 input:focus {
    outline: none;
    border-color: #2563eb;
}

/* ==============================
   Support Channels / Cards
   ============================== */
.py-20 .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.py-20 .grid div {
    background-color: #1f1f1f;
    border: 1px solid #27272a;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.py-20 .grid div:hover {
    border-color: #7c3aed;
}

.py-20 h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.py-20 p {
    color: #a1a1aa;
    margin-bottom: 0.5rem;
}

.py-20 p.text-sm {
    color: #60a5fa;
    font-size: 0.875rem;
}

.py-20 button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 1rem;
    background-color: #27272a;
    border: none;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.py-20 button:hover {
    background-color: #3f3f46;
}

/* ==============================
   FAQ & Resources Section
   ============================== */
.bg-zinc-900-50 {
    background-color: rgba(31,31,31,0.3);
    padding: 5rem 1rem;
}

.bg-zinc-900-50 .grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.bg-zinc-900-50 .grid div {
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #27272a;
    background-color: #1f1f1f;
    text-align: center;
}

.bg-zinc-900-50 img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* FAQ Cards */
.max-w-4xl .space-y-6 > div {
    background-color: #1f1f1f;
    border: 1px solid #27272a;
    border-radius: 1rem;
    padding: 1.5rem;
}

.max-w-4xl h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.max-w-4xl p {
    color: #a1a1aa;
}

/* ============================= */
/* Professional Contact Form CSS */
/* ============================= */

/* Section Background */
section.py-20.bg-gradient-to-r {
    padding: 6rem 1rem;
    background: #000;
    color: #fff;
    position: relative;
    font-family: 'Inter', sans-serif;
}

/* Container */
section.py-20 .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Heading */
section.py-20 h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
}

section.py-20 p {
    font-size: 1.25rem;
    opacity: 0.85;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Form Wrapper (Glass Effect) */
section.py-20 .bg-white\/10 {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.py-20 .bg-white\/10:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(92, 17, 168, 0.3);
}

/* Inputs & Textarea */
section.py-20 input[type="text"],
section.py-20 input[type="email"],
section.py-20 textarea {
    width: 80%;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

section.py-20 input::placeholder,
section.py-20 textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Input Focus */
section.py-20 input:focus,
section.py-20 textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Submit Button */
section.py-20 button[type="submit"] {
    width: 100%;
    padding: 1.3rem;
    border-radius: 1rem;
    background: linear-gradient(90deg, #ffffff, #e5e7eb);
    color: #2563eb;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

section.py-20 button[type="submit"]:hover {
    background: #ffffff;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Two-column Grid for Inputs */
section.py-20 .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    section.py-20 h2 {
        font-size: 2rem;
    }

    section.py-20 p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    section.py-20 .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    section.py-20 .bg-white\/10 {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    section.py-20 h2 {
        font-size: 1.75rem;
    }

    section.py-20 p {
        font-size: 0.95rem;
    }
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 1024px) {
    .relative.py-20 h1 {
        font-size: 2.5rem;
    }
    .relative.py-20 p {
        font-size: 1.1rem;
    }
    .bg-zinc-900-50 .grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    .contact-hero p {
        font-size: 1rem;
    }
    .py-20 .grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .relative.py-20 h1 {
        font-size: 2rem;
    }
    .relative.py-20 p {
        font-size: 0.9rem;
    }
}
/*-------------------*/
/*CONTACT-PAGE*/
/* Contact Page Hero */
section.contact-hero {
    position: relative;
    padding: 5rem 1rem;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: #000; /* gradient background */
}

section.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4); /* semi-transparent overlay */
    z-index: 0;
}

section.contact-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

section.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

section.contact-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Form Section */
section.py-20.bg-zinc-900 {
    padding: 5rem 1rem;
    background-color: #121212;
    margin-top: 90px;
}

section.py-20.bg-zinc-900 .container {
    max-width: 800px;
    margin: 0 auto;
}

section.py-20.bg-zinc-900 form {
    background-color: #1f1f1f;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

section.py-20.bg-zinc-900 input,
section.py-20.bg-zinc-900 textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    background-color: #121212;
    border: 1px solid #27272a;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

section.py-20.bg-zinc-900 input::placeholder,
section.py-20.bg-zinc-900 textarea::placeholder {
    color: #71717a;
}

section.py-20.bg-zinc-900 input:focus,
section.py-20.bg-zinc-900 textarea:focus {
    outline: none;
    border-color: #7c3aed;
    background-color: #1f1f1f;
}

section.py-20.bg-zinc-900 button {
    padding: 1rem;
    border-radius: 1rem;
    background-color: #2563eb;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

section.py-20.bg-zinc-900 button:hover {
    background-color: #1e40af;
}

/* Contact Info Section */
section.py-20 .container > .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

section.py-20 .grid > div {
    background-color: #1f1f1f;
    border: 1px solid #27272a;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

section.py-20 .grid > div:hover {
    border-color: #7c3aed;
}

section.py-20 .grid h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

section.py-20 .grid p {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

section.py-20 .grid p.text-blue-400 {
    color: #60a5fa;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    section.contact-hero h1 {
        font-size: 2.5rem;
    }

    section.contact-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    section.contact-hero h1 {
        font-size: 2rem;
    }

    section.contact-hero p {
        font-size: 1rem;
    }
}
/* Contact Form Section */
.contact-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 1rem;
    background:  rgba(0,0,0,0.7); /* gradient background */
    min-height: 100vh;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Form Container */
.contact-form-section .form-container {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 2rem;
    max-width: 600px;
    width: 100%;
    border:1px solid #9333ea;
    box-shadow: 0 20px 40px rgba(15, 133, 66, 0.4);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-form-section .form-container:hover {
    transform: translateY(-5px);
}

/* Heading & Description */
.contact-form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

/* Form Fields */
.contact-form-section form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-section input,
.contact-form-section textarea {
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-section input::placeholder,
.contact-form-section textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
    outline: none;
    border-color: #60a5fa; /* light blue focus */
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

/* Form Row for 2 columns */
.contact-form-section .form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-form-section .form-row input {
    flex: 1;
    min-width: 45%;
}

/* Submit Button */
.contact-form-section button {
    padding: 1rem;
    border-radius: 1rem;
    border: none;
    background: linear-gradient(90deg, rgb(27, 141, 86), rgb(147, 51, 234));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-section button:hover {
    background:linear-gradient(90deg, rgb(0, 191, 98), rgb(147, 51, 234));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-section h2 {
        font-size: 2rem;
    }

    .contact-form-section .form-row input {
        min-width: 100%;
    }
}
/*Packages-css*/
 /* Subscription Buttons */
.subscription .container {
    display: flex;
    justify-content: center;   /* centers horizontally */
    align-items: center;
    gap: 20px;                 /* space between buttons */
    flex-wrap: wrap;           /* responsive for mobile */
}

.subscription .btn {
    min-width: 200px;
    text-align: center;
}

/* POPUP BACKGROUND */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* POPUP BOX */
.popup-box {
    background: #0c0c0c;
    padding: 40px;
    width: 400px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    animation: popupFade 0.3s ease;
}

/* TITLE */
.popup-box h2 {
    margin-bottom: 25px;
}

/* INPUTS */
.popup-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* BUTTON */
.popup-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, rgb(37, 235, 86), rgba(124, 58, 237, 1));
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.popup-submit:hover {
    background: linear-gradient(90deg, rgb(60, 227, 124), rgba(124, 58, 237, 1));
}

/* CLOSE BUTTON */
.close-popup {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* ANIMATION */
@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/*faq*/
    /* Support Section */
.support-section{
    padding:80px 0;
    background:rgba(24,24,27,0.5);
}

/* Container */
.support-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* Grid Layout */
.support-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* Image */
.support-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.35);
}

/* Content */
.support-content h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:20px;
}

.support-content p{
    font-size:18px;
    color:#a1a1aa;
    margin-bottom:35px;
    line-height:1.6;
}

/* Support Cards */
.support-box{
    background:#18181b;
    border:1px solid #27272a;
    border-radius:12px;
    padding:18px 20px;
    margin-bottom:15px;
    transition:all 0.3s ease;
}

/* Hover Effect */
.support-box:hover{
    border-color:#3b82f6;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.support-box h3{
    font-size:16px;
    font-weight:600;
    margin-bottom:4px;
}

.support-box p{
    font-size:14px;
    color:#9ca3af;
}

/* Responsive */
@media (max-width: 992px){

.support-grid{
grid-template-columns:1fr;
gap:40px;
}

.support-content h2{
font-size:32px;
}

}

/*faq*/
 /* FAQ Section */
.faq-section{
    padding:80px 0;
}

/* Container */
.faq-container{
    max-width:1100px;
    margin:auto;
    padding:0 20px;
}

/* Section Title */
.faq-title{
    text-align:center;
    margin-bottom:60px;
}

.faq-title h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
}

.faq-title p{
    color:#9ca3af;
    font-size:18px;
}

/* FAQ Cards */
.faq-box{
    background:#18181b;
    border:1px solid #27272a;
    border-radius:12px;
    padding:25px;
    margin-bottom:20px;
    transition:all 0.3s ease;
}

/* Hover Effect */
.faq-box:hover{
    border-color:#7c3aed;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* Question */
.faq-box h4{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
    color:#ffffff;
}

/* Answer */
.faq-box p{
    color:#a1a1aa;
    line-height:1.7;
    font-size:15px;
}
