@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-color: #101010;
    /* Maroon */
    --secondary-color: #F3A63C;
    /* Golden */
    --light-bg-text-color: #000;
    /* Black */
    --dark-bg-text-color: #fff;
    /* White */
    --heading-color: #16243E;
    /* Navy */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'orbitron';
    src: url('../fonts/Orbitron/Orbitron-VariableFont_wght.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}


h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'orbitron';
}

p,
a,
button {
    font-family: "poppins";
}

/* 1️⃣ Remove default outline on focus */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: none;
    /* optional, agar koi shadow bhi nahi chahiye */
}

/* 2️⃣ Remove number input spinners (arrows) */

/* Chrome, Edge, Safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.header-sec {
    background: #191919;
    width: 100%;
    padding: 24px 34px;
}

.navbar-nav .nav-link {
    position: relative;
    display: inline-block;
}

.navbar-nav .nav-link span {
    color: #fff;
    font-size: 18px;
    position: relative;
}

/* underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

/* hover effect */
.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* active link */
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-item {
    padding-right: 16px;
}

.logo-wrapper a img {
    width: 38%;
}

.search-cart {
    display: flex;
    gap: 35px;
    align-items: center;
    margin-left: 34px;
}

.nav-icon-wrapper {
    display: flex;
    justify-content: end;
}

.search-cart a i {
    color: #fff;
    font-size: 20px;
}

/* banner sec */
.slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 12px;
    /* height: 100vh; */
    background: #191919;
    position: relative;
}

.slider-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Image */
.image-box {
    width: 40%;
    text-align: right;
    overflow: hidden;
    position: relative;
}

.image-mask {
    position: relative;
    width: 100%;
}

#mainImage {
    width: 70%;
}

.curtain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #101010;
    /* color jo curtain cover kare */
    z-index: 2;
}
#title {
    white-space: pre-wrap; 
    word-break: break-word;
}
#title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
     white-space: pre; 
}

#desc,
.slider-arrow img {
    opacity: 0;
    transform: translateY(20px);
}

.image-box img {
    width: 100%;
    border-radius: 10px;
    transition: 0.5s ease;
    width: 70%;
}

/* Right Content */
.content {
    width: 50%;
    position: relative;
}

.content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 62px;
    margin-bottom: 20px;
    color: #fff;
}

.date {
    margin: 20px 0;
    color: #fff;
    letter-spacing: 2px;
    font-family: 'orbitron';
    font-size: 16px;
}

.content p {
    font-size: 16px;
    color: #fff;
    max-width: 100%;
}

/* Counter */
.counter {
    /* margin: 40px 0; */
    font-size: 18px;
    color: orange;
}

/* Thumbnails */
.thumbnails {
    display: flex;
    gap: 15px;
    position: absolute;
    right: 80px;
    bottom: 0px;
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: 0.3s;
}

.thumb.active {
    opacity: 1;
    border-color: orange;
}

.thumb:hover {
    opacity: 1;
}

.counter {
    position: absolute;
    bottom: 0px;
    transform: translate(-50%);
    left: 50%;
}

.counter span {
    font-size: 30px;
    font-family: 'orbitron';
}

.counter span#current {
    color: #fff;
}

.thumbnails img {
    width: 180px;
    height: 115px;
}

.slider-arrow {
    position: absolute;
    left: -110px;
    bottom: 100px;
}


/* Events Section */
section.events-sec {
    background: #101010;
    padding: 64px 12px;
}

.events-heading-wrapper h2 {
    font-size: 58px;
    color: #fff;
    line-height: 68px;
}

.events-para {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.para p {
    color: #8e8e8e;
    font-size: 16px;
    font-weight: 500;
    max-width: 84%;
}

.view-more-btn a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 17px;
}

.view-more-btn a i {
    margin-left: 10px;
}


.events-grid {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* event card - box with hover animation */
.event-boxes-wrapper {
    /* background: #111111; */
    /* border-radius: 24px; */
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* hover effect: scale, border glow, background shift */
.event-boxes-wrapper:hover {
    transform: translateY(-6px);
    background: #161616;
    border-color: rgba(229, 160, 13, 0.4);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(229, 160, 13, 0.2);
}

/* ========== COLUMN 1: DATE ========== */
.date {
    text-align: left;
    min-width: 85px;
    padding-right: 0.5rem;
    /* border-right: 1px solid rgba(255, 255, 255, 0.1); */
}

.date h6 {
    font-size: 2.4rem;
    font-weight: 700;
    /* background: linear-gradient(135deg, #FFFFFF 0%, #E5A00D 100%); */
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'poppins';
}

.date p {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9A9A9A;
}

/* ========== COLUMN 2: IMAGE + TITLE WRAPPER (flex row) ========== */
.image-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

/* image container with overflow for zoom effect */
.event-img {
    width: 190px;
    height: 130px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
    background: #1E1E1E;
    position: relative;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: block;
}

/* hover zoom effect on image */
.event-boxes-wrapper:hover .event-img img {
    transform: scale(1.12);
}

/* event details column */
.event-detail {
    flex: 1;
}

.event-detail h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.event-boxes-wrapper:hover .event-detail h4 {
    color: #E5A00D;
}

/* location wrapper */
.location-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    row-gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.location {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    /* background: rgba(229, 160, 13, 0.12); */
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    letter-spacing: 0.3px;
}

.location-date {
    font-size: 16px;
    font-weight: 400;
    color: #8F8F8F;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.location-date i {
    font-size: 0.7rem;
    color: #E5A00D;
}

/* ===== READ MORE BUTTON (hidden by default, slides from left on hover) ===== */
.event-read-more {
    margin-top: 0.6rem;
    overflow: hidden;
}

.event-read-more a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: #E5A00D;
    background: rgba(229, 160, 13, 0.08);
    padding: 0.35rem 0.9rem 0.35rem 1rem;
    border-radius: 40px;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transform: translateX(-20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.event-read-more a span {
    transition: transform 0.25s;
}

.event-read-more a i {
    font-size: 0.7rem;
    transition: transform 0.25s;
}

/* on hover of entire box: read more slides in from left, becomes visible */
.event-boxes-wrapper:hover .event-read-more a {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* force show read more button (used on detail page) */
.event-read-more.is-visible a {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.event-read-more a:hover {
    background: #E5A00D;
    color: #0A0A0A;
    gap: 0.8rem;
}

.event-read-more a:hover i {
    transform: translateX(3px);
    color: #0A0A0A;
}

/* ========== COLUMN 3: TICKET SECTION (right aligned, row-wise text-end) ========== */
.ticket-sec {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 90px;
}

.ticket-sec p {
    font-size: 1.5rem;
    font-weight: 700;
    /* background: linear-gradient(135deg, #FFFFFF 20%, #E5A00D 90%); */
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: -0.3px;
}

.ticket-sec p span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ticket-sec p i {
    font-size: 1.1rem;
    color: #E5A00D;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #fff;
    transform: rotate(-45deg);
}

/* optional: subtle shine overlay on hover */
.event-boxes-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 160, 13, 0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.events-content-wrapper {
    padding-bottom: 52px;
}

.event-boxes-wrapper:hover::after {
    left: 100%;
}

/* About section */

section.about-us-sec {
    padding: 64px 12px;
    background: #000;
}

.about-us-heading-wrapper h6 {
    color: #fff;
    font-size: 19px;
    line-height: 29px;
}

.about-us-heading-wrapper h2 {
    font-size: 64px;
    color: #fff;
    line-height: 74px;
}

.about-us-heading-wrapper p {
    color: #fff;
    font-size: 23px;
    max-width: 85%;
}

.about-us-heading-wrapper {
    padding-bottom: 112px;
}

.about-content-wrapper {
    position: relative;
    top: -39px;
}

.content-img-sec img {
    width: 100%;
}

.custom-gutter {
    --bs-gutter-x: 6rem;
}

.about-content {
    padding-top: 72px;
}

.about-content h3 {
    font-size: 40px;
    color: #fff;
    line-height: 50px;
}

.about-content p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
}

.about-content a {
    padding: 20px 50px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    display: inline-block;
    margin-top: 22px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

/* Hover Effect - Main Styles */
.about-content a:hover {
    background: #e08e1a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(243, 166, 60, 0.4);
}


/* Portfolio Sec */
section.portfolio-sec {
    padding: 64px 12px 0 12px;
    background: #191919;
}

.portfolio-heading-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 72px;
}

.portfolio-heading h3 {
    color: #fff;
    font-size: 19px;
}

.portfolio-heading h2 {
    font-size: 57px;
    color: #fff;
}

.portfolio-para p {
    color: #8e8e8e;
    max-width: 47%;
}

.portfolio-heading {
    width: 40%;
}

.portfolio-para {
    width: 60%;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* hover zoom effect */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Cta Sec */
section.cta-sec {
    padding: 100px 12px;
    background: var(--secondary-color);
}

section.cta-sec h6 {
    font-size: 19px;
    color: #fff;
}

section.cta-sec h2 {
    font-size: 58px;
    color: #fff;
    margin-bottom: 22px;
}

section.cta-sec p {
    font-size: 16px;
    color: #fff;
}

section.cta-sec a {
    padding: 20px 50px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    display: inline-block;
    margin-top: 22px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 2px solid #fff;
    cursor: pointer;
}

/* Hover Effect - Main Styles */
section.cta-sec a:hover {
    background: #e08e1a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(243, 166, 60, 0.4);
}

/* Testimonials Section */
section.testimonials-sec {
    padding: 100px 12px;
    background: #101010;
}

.reviews-heading-wrapper i {
    font-size: 160px;
    color: var(--secondary-color);
}

.reviews-headings h6 {
    font-size: 19px;
    color: #fff;
}

.reviews-headings h2 {
    font-size: 58px;
    color: #fff;
}

.reviews-wrapper {
    text-align: center;
}

.review-ratings {
    padding-top: 16px;
    padding-bottom: 16px;
}

.review-ratings i {
    color: #fff600;
    font-size: 18px;
}

.review-items p {
    font-size: 18px;
    color: #fff;
}

/* default dots hide */
.slick-dots li button:before {
    display: none;
}

/* dots base */
.slick-dots li {
    margin: 0 5px;
}

/* dot shape */
.slick-dots li button {
    width: 8px !important;
    height: 8px !important;
    border: 2px solid #fff !important;
    background: #fff !important;
    border-radius: 50%;
    background: transparent;
    padding: 0;
}

/* active dot */
.slick-dots li.slick-active button {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

section.contact-sec {
    padding: 64px 12px;
    background: #101010;
}

.contact-form-wrapper {
    padding: 30px 25px;
    background: #282828;
    height: 100%;
}

.contact-form-wrapper h6 {
    color: #fff;
    font-size: 19px;
    line-height: 29px;
}

.contact-form-wrapper h2 {
    font-size: 57px;
    color: #fff;
    line-height: 67px;
}

.contact-form-wrapper p {
    font-size: 16px;
    color: #fff;
    line-height: 26px;
}

.contact-form input,
.contact-form textarea {
    background: none;
    border-bottom: 2px solid #fff !important;
    padding: 35px 24px;
    width: 100%;
    border: 0;
    color: #fff;
}

.contact-form button {
    padding: 15px 70px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    display: inline-block;
    margin-top: 22px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 0;
}

/* Hover Effect - Main Styles */
.contact-form button:hover {
    background: #e08e1a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(243, 166, 60, 0.4);
}

/* Footer */
footer.footer-sec {
    padding: 64px 12px 0 12px;
    background: #282828;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    /* 1st column 2 times wider */
    gap: 20px;
    /* columns ke beech gap */
    padding: 60px 20px;
    color: #fff;
    flex-wrap: wrap;
}

.footer-wrapper a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    /* margin-bottom: 20px; */
}

.footer-wrapper a:hover {
    color: #f39c12;
    /* accent color on hover */
}

.footer-col-1 p {
    margin-top: 15px;
    line-height: 1.6;
}

.quick-links ul {
    padding: 0;
}

.quick-links ul li {
    list-style-type: none;
    margin-bottom: 10px;
}

.quick-links h4 {
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.newsletter-sec {
    position: relative;
    min-height: 200px;
    padding: 64px 0px 0px 102px;
}

.newsletter-sec img {
    position: absolute;
    bottom: 0;
    right: -22px;
    width: 50%;
}

.newsletter-sec h5 {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 400;
}

.newsletter-sec input {}

.email-wrapper {
    position: relative;
    max-width: 600px;
}

.email-wrapper input {
    border: 0;
    background: none;
    border-bottom: 2px solid #fff;
    padding: 10px 23px 12px 7px;
    width: 95%;
    position: relative;
    z-index: 101;
    font-size: 19px;
    color: #8e8e8e;
    font-family: 'poppins';
    font-weight: 500;
}

.email-btn {
    position: absolute;
    top: 0;
    right: 0;
}

.email-btn button {
    background: none;
    border: none;
    color: #fff;
}

.email-btn button i {
    font-size: 20px;
    color: var(--secondary-color);
}

section.footer-copyright {
    background: var(--secondary-color);
    padding: 13px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.footer-copyright p {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.inner-banner {
    background: url(../images/inner-banner.webp) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 64px 12px;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-banner h2 {
    font-size: 70px;
    font-weight: 700;
    font-style: normal;
    color: #fff;

}

.inner-banner h2 span {
    color: var(--secondary-color);
}

.about-us-container {
    max-width: 1300px !important;
    margin: 0 auto;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: #0000005c;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.gallery-overlay a {
    background: #fff;
    color: #000;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 12px;
    text-decoration: none;
}

.gallery-items-pack {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Characters Inner */

section.character-sec {
    background: #101010;
    padding: 64px 12px;
}

.character-box {
    padding: 12px 0;
    text-align: center;
}

.character-content {
    /* text-align: center; */
    padding: 12px 0px;
}

.character-content h3 {
    color: #fff;
    font-size: 29px;
    font-weight: 400;
}

.character-content p {
    font-size: 19px;
    color: #fff;
    font-family: 'orbitron';
    font-weight: 400;
}



.character-content a {
    color: var(--secondary-color);
    font-size: 20px;
}

.characters-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
}

.character-box {
    position: relative;
    /* overflow: hidden; */
    text-align: center;
}
.character-box::before{
       content: "";
       position: absolute;
       left: 50%;
       top: 23px;
    /* initially hidden above */
       transform: translateX(-50%);
       width: 220px;
       height: 110px;
       background: var(--secondary-color);
       border-top-left-radius: 220px;
       border-top-right-radius: 220px;
       transition: 0.4s ease;
       z-index: 0;
}
.sketchbook-box::before{
    background-color: var(--dark-bg-text-color);
}
/* Image wrapper */
.character-img {
    position: relative;
    overflow: hidden;
}



/* Hover pe slide down */
.character-box:hover::before {
    top: -69px;
}

/* Image */
.character-img img {
    width: 100%;
    display: block;
    transition: 0.4s ease;
}

/* Optional zoom */
.character-box:hover img {
    transform: scale(1.05);
}

.inner-sketchbook {
    background: var(--primary-color);
    padding: 64px 12px 120px 12px;
}

.sketchbook-content h2 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 15px;
}

.sketchbook-content p {
    font-size: 20px;
    color: #fff;
    line-height: 35px;
}

/* Our Process */
.process-sec {
    background: var(--primary-color);
    padding: 14px 12px;
    min-height: 600px;
    position: relative;
}

.process-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bg-number-1 {
    font-family: "Inter", Sans-serif;
    font-size: 150px;
    font-weight: 700;
    color: #F3A63C38;
    position: absolute;
    bottom: -70px;
    right: 100px;
    z-index: 1;
}

.bg-number-2 {
    font-family: "Inter", Sans-serif;
    font-size: 150px;
    font-weight: 700;
    color: #F3A63C38;
    position: absolute;
    top: -80px;
    right: 60px;
    z-index: 1;
}

.bg-number-3 {
    font-family: "Inter", Sans-serif;
    font-size: 150px;
    font-weight: 700;
    color: #F3A63C38;
    position: absolute;
    bottom: -70px;
    right: 30px;
    z-index: 1;
}

.process-img-1 {
    position: relative;
}

.process-img-2 {
    position: relative;
}

.process-img-3 {
    position: relative;
}

.process-img-1 img {
    position: relative;
    z-index: 3;
}

.process-img-2 img {
    position: relative;
    z-index: 3;
}

.process-img-3 img {
    position: relative;
    z-index: 3;
}

.number-ball-1 {
    position: absolute;
    bottom: -30px;
    left: -30px;
}

.number-ball-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
}

.number-ball-3 {
    position: absolute;
    bottom: -30px;
    left: -30px;
}

.process-content {
    padding: 54px 0;
    position: relative;
    left: -60px;
}

.process-content h4 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 18px;
}

.process-content p {
    font-size: 19px;
    color: #505D7B;
    font-family: 'Inter';
}

.process-box-1 {
    padding-top: 490px;
}

.process-box-2 {
    padding-top: 320px;
}

.process-box-3 {
    padding-top: 92px;
    padding-left: 42px;
}

section.terms-sec {
    padding: 64px 12px;
    background: #101010;
}

section.terms-sec h6 {
    color: #fff;
    font-size: 19px;
    font-family: 'poppins';
}

section.terms-sec p {
    color: #fff;
    font-size: 19px;
    font-family: 'poppins';
}

section.terms-sec ul li {
    color: #fff;
    font-size: 19px;
    font-family: 'poppins';
}

.terms-content-wrapper {
    padding-bottom: 30px;
}
