:root {
    --orange: #ff8a00;
    --dark-orange: #cc6600;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
p{
    margin-bottom: 0 !important;
}
body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}


.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.main-screen {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    width: 100%;
    background-image: url('assests/bg.jpg'); 
    background-size: cover;
    background-position: center;
    align-items: center;
    position: relative;
    padding: 60px 10px 10px 0px;
}
@media (max-width:767px) {

    .main-screen {
            height: 860px;
    }
    
}

.logo { 
    width: 150px; 
    display: block;
    margin: -8px auto 10px auto; 
    position: relative; 
    top: -7px;
}

@media (max-width:767px) {
    .logo{
        width: 120px !important;
        top: 0px;
    }
    
}
.headlines {
    margin-top: -30px; 
    position: relative;
    z-index: 5;
}

.top-title { 
    font-family: "Montserrat", Sans-serif;
    font-size: 34px;      
    font-weight: 800;      
    text-transform: uppercase;
    line-height: 46px;    
    color:var(--orange);
    letter-spacing: 1px;
    margin-bottom: 0px;  
    margin-top: 30px; 
}
@media (max-width:767px)  {
    .top-title {
        font-size: 20px; 
        line-height: 30px; 
    }
    
}

.sub-title { 
    font-family: "Montserrat", Sans-serif;
    font-size: 34px;    
    font-weight: 800;      
    text-transform: uppercase;
    line-height: 46px;     
    color: var(--orange);  
    margin-top: -2px;      
}
@media (max-width:767px)  {
   .sub-title {
        font-size: 20px; 
        line-height: 30px; 
    }
    
}
.orange-line { 
    height: 1.0px; 
    background: var(--orange); 
    width: 95%; 
    margin: 30px auto; 
}

.content-row {
    margin-top: 20px !important;
    padding-left: 0;
}

.main-copy { 
    color: white;
    font-size: 24px;
    line-height: 28px;
    font-weight: 550;
   
}
@media (max-width:767px)  {
  .main-copy {
        font-size: 20px; 
        line-height: 24px; 
        text-align: center;
    }
    
}

.price-box {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.0rem;
    font-weight: 800; 
    font-style: italic; 
    color: white; 
}

.offer-txt {
    margin-right: 15px;
}

.old-price { 
    text-decoration: line-through; 
    color: #ff8a00; 
    margin-right: 10px; 
}

.arrow {
    margin-right: 10px;
    font-style: normal;
}

.new-price {
    font-weight: 900;
}

.price-box { font-size: 2.5rem; }
.offer-txt { font-size: 1.8rem; }
.old-price { text-decoration: line-through; opacity: 0.8; }
.new-price { font-size: 3.2rem; }

.offer-text-red {
    color: #d10000 !important; 
    font-weight: 800 !important;
    font-style: italic !important;
    font-family: 'Montserrat', sans-serif;
}
.old-price-style {
    text-decoration: line-through; 
    font-size: 1.9rem;
    margin-right: 5px;
}
.offer-orange-italic {
    color: #fcfbfa !important; 
    font-weight: 900 !important; 
    font-style: italic !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin: 0;
    display: inline-block;
    white-space: nowrap;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 1px #FF0D0D;
}
.auto-hover {
    animation: autoHoverPulse 1.8s ease-in-out infinite;
}

@keyframes autoHoverPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width:767px) {
    .offer-orange-italic {
         font-size:20px!important;
        }  
}


.offer-orange-italic del {
    text-decoration: line-through;
    color: #fcfbfa; 
    font-size: 2rem;
    margin: 0 10px;
}

.offer-orange-arrow {
    font-style: normal !important;
    margin: 0 5px;
    color: #ffffff; 
}

@media (max-width: 768px) {
    .offer-orange-italic { font-size: 1.5rem; }
    .offer-orange-italic del { font-size: 1.2rem; }
}

.offer-red-italic {
    color: #d10000 !important; 
    font-family: "Arial", Sans-serif !important; 
    font-size: 28px !important; 
    font-weight: 900 !important;
    font-style: italic !important;
    text-shadow: 1px 1px 1px #FF0D0D; 
    display: inline-block;
    white-space: nowrap;
    letter-spacing: -0.5px;
    margin: 8px;
}


.offer-red-italic del {
    text-decoration: line-through;
    font-size: 28px;
    color: #d10000;
}
.auto-hover {
    animation: offerPulse 1.8s ease-in-out infinite;
}

@keyframes offerPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes arrowMove {
    0%,100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@media (max-width: 767px) {
    .offer-red-italic {
        font-size: 24px !important;
    }
    .offer-red-italic del {
        font-size: 24px;
        padding: 10px !important;
    }
}

.question { 
    color: white; 
    font-size: 1.3rem; 
    font-weight: 600;
    margin: 0 !important; 
}
@media (max-width:767px) {
    .question {
        font-size: 18px;
    }
    
}
@media (max-width:767px) {
    .question:last-of-type {
        margin-bottom: 18px !important;
    }
}
.q-mark { 
    color: #ffffff; 
    font-weight: 900; 
}

.cta-btn {
    background: linear-gradient(to bottom, #f47b20, #d45d00) !important;
    border: none !important; 
    color: white !important; 
    padding: 14px 15px !important; 
    font-weight: 800 !important;
    font-size: 1.6rem !important; 
    border-radius: 12px !important; 
    margin-left: 0 !important; 
    display: inline-block;
    align-self: flex-start !important; 
}
.auto-hover {
    animation: offerPulse 1.8s ease-in-out infinite;
}
@media (max-width:767px) {
    .cta-btn
    {
    font-size: 16px !important;
    font-weight: 600 !important;
    align-self: center !important; 
    }
    
}

.caption-head { 
    color: #ff8a00; 
    font-weight: 800; 
    font-size: 1.4rem; 
    margin-top: 20px;
}

.caption-body { 
    color: white; 
    font-size: 1.1rem; 
    margin-top: 10px;
    font-weight: 500;
}
.cta-btn:hover
 { transform: scale(1.05); }
 
.video-preview {
  position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 0px 0px 40px 0px;
}
@media (max-width:767px) {
    .video-preview {
        padding: 40px 0px 40px 0px;
    }
    
}

.video-img {
    width: 100%;
}

.video-captions {
    max-width: 460px;
    margin: 16px auto 0;
    text-align: left;
}

.caption-head {
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.caption-body {
    line-height: 1.6;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .video-captions {
        max-width: 100%;
        padding: 0 16px;
        text-align: center;
    }
}



.caption-head {
     color: var(--orange); 
     font-weight: 700; 
     font-size: 1.3rem; 
    }
.caption-body { color: #ddd; font-size: 0.95rem; }

.ticker-container {
    width: 100%;
    overflow: hidden;
    border-top: 4px solid var(--orange);
    padding: 12px 0;
}

.ticker-wrapper {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: ticker-scroll 20s linear infinite;
}

.ticker-item {
    font-size: 2rem;
    font-weight: 800;
    padding: 0 16px;
    text-transform: uppercase;
    color: #000;
}

.orange-dot {
    color: var(--orange);
    margin-left: 16px;
    font-size: 1.2rem;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile tweak */
@media (max-width: 480px) {
    .ticker-item {
        font-size: 0.95rem;
        padding: 0 16px;
    }
}


.text-orange {
    color: #ff8a00 !important;
}

.exp-card-custom {
    border: 1px solid #e0e0e0 !important;
    border-radius: 15px !important;
    transition: all 0.3s ease;
    background: #fff;
}

.exp-card-custom:hover {
    border-color: #ff8a00 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.exp-num {
    font-size: 2.8rem !important; 
    line-height: 1;
}
.text-orange {
    color: #ff8a00 !important;
}

.border-orange {
    border: 5px solid #ff8a00 !important;
}

.fw-900 {
    font-weight: 900;
}

.btn-orange-gradient {
    background: linear-gradient(180deg, #ff8c00 0%, #d35400 100%) !important;
    transition: transform 0.2s ease-in-out;
}

.btn-orange-gradient:hover {
    transform: scale(1.05);
}

.tracking-tight {
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.about-highlight-box {
    border-left: 6px solid var(--orange) !important; 
    padding-left: 20px;
    margin: 25px 0;
    display: block;
}

.mentorship-divider, .achievers-divider, .bottom-divider {
    height: 4px !important;
    background-color: var(--orange) !important;
    width: 100%;
    display: block;
    margin: 40px 0;
    opacity: 1;
    border: none;
}

.about-section { background-color: #fffdec; padding: 60px 0; color: #000; }

.about-name {
    font-family: 'Caveat', cursive !important;
    font-size: 4.5rem !important;
    color: var(--orange) !important;
    text-shadow: none !important;
    filter: none !important;
    -webkit-text-stroke: 0px !important;
    display: block;
    margin-bottom: 5px;
}

.profile-img-frame { border: 5px solid var(--orange); border-radius: 25px; overflow: hidden; max-width: 320px; margin: 0 auto; }


.more-content { display: none; }
.read-more-btn { text-decoration: none; color: #000; font-weight: 700; font-size: 1.2rem; display: inline-flex; align-items: center; cursor: pointer; }
.arrow-icon { width: 10px; height: 10px; border-bottom: 3px solid #000; border-right: 3px solid #000; transform: rotate(45deg); margin-left: 12px; transition: 0.3s; }
.read-more-btn.active .arrow-icon { transform: rotate(-135deg); margin-top: 5px; }

.section-top-divider {
    height: 6px;
    background-color: #ff8a00;
    width: 100%;
}

.section-bottom-divider {
    height: 10px; 
    background-color: #ff8a00;
    width: 100%;
}

.practice-system-container {
    background-color: #ffffff;
}

.guided-practice-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06); 
    text-align: center;
    border: 1px solid #f0f0f0;
}

.guided-practice-card p {
    font-weight: 900;
    font-size: 1.6rem;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.7;
    letter-spacing: 0.8px;
}

.faq-btn {
    background-color: #ffffff !important;
    color: #000000 !important;
    transition: all 0.3s ease !important;
    font-family: 'Montserrat', sans-serif;
}

.faq-btn.collapsed:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
}

.faq-btn:not(.collapsed) {
    background-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: none !important;
}

.faq-btn::after {
    background-image: none !important;
    content: '+' !important;
    font-weight: bold;
    color: inherit;
    font-size: 26px !important;
}

@media (max-width:767px) {
    .faq-btn::after {
        font-size: 30px !important;
    }
    
}
.faq-btn:not(.collapsed)::after {
    content: '−' !important;
}


.final-conversation-section {
    padding-bottom: 150px !important; 
}

.custom-footer-hidden {
    background-color: #FFFCF2 !important; 
    border-top: 5px solid #FF8000 !important; 
    border-radius: 40px 40px 0 0 !important; 
    box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999 !important;
    padding: 10px 0;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
/* Main Footer Wrapper */
#sticky-offer-footer {
    padding: 0;
    margin: 0;
    z-index: 9999;
    border: none !important; /* Black line hatane ke liye */
}

.custom-footer-wrapper {
    background-color: #fffdf5 !important; /* Cream Color from Image 2 */
    border-top: 6px solid #ff8a00 !important; /* Thick Orange Top Border */
    border-radius: 45px 45px 0 0 !important; /* Rounded top corners */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    width: 100% !important;
    position: relative;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
}

/* Text Styling */
.offer-text-design {
    color: #ff8a00 !important;
    font-family: 'Arial Black', Gadget, sans-serif !important;
    font-size: 2.2rem !important; /* Large Font */
    font-weight: 900 !important;
    font-style: italic !important;
    display: flex;
    align-items: center;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.8;
    margin-left: 8px;
}

.arrow-icon {
    font-style: normal !important; /* Arrow should not be italic */
    margin: 0 15px;
    font-weight: bold;
}

/* Footer Positioning */
#new-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
}

.footer-content-wrapper {
    background-color: #fffdf5 !important; /* Cream Background */
    border-top: 5px solid #ff8a00 !important; /* Orange Top Border */
    border-radius: 40px 40px 0 0 !important;
    box-shadow: 0 -10px 25px rgba(0,0,0,0.1);
    width: 100%;
    padding: 10px 0;
}

.footer-container-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

/* --- GRADIENT & SHADOW TEXT (FIXED) --- */
.offer-text-container {
    display: flex;
    align-items: center;
}

.full-offer-text {
    /* Font Size ek jaisa rakha hai (1.9rem) */
    font-size: 1.9rem !important; 
    font-family: 'Arial Black', sans-serif !important;
    font-weight: 900 !important;
    font-style: italic !important;
    padding-right:1.4px;
    /* Aapka Gradient: Red to Orange */
    background: linear-gradient(to right, #ff0000 0%, #f67c00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Shadow jo text ko pop karayega */
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.2));
    
    display: inline-block;
    line-height: 1.2;
}

/* ₹2000 ka strike-through fix */
.full-offer-text del {
    text-decoration: line-through;
    /* Strike line ka color bhi gradient ke saath match hoga */
    -webkit-text-fill-color: transparent; 
    margin: 0 8px;
}

.arrow {
    font-style: normal !important;
    margin: 0 10px;
}

/* Button Styling */
.book-call-btn {
    background: linear-gradient(180deg, #f7941d 0%, #e66e00 100%) !important;
    color: #ffffff !important;
    padding: 10px 30px !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(230, 110, 0, 0.3);
    display: inline-flex;
    align-items: center;
    border: none !important;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .footer-content-wrapper {
        padding: 8px 0 !important;
    }
    .footer-container-inner {
       display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; 
        align-items: center !important;
        justify-content: center !important; 
        gap: 20px !important;
        padding: 0 10px !important;
    }
    .full-offer-text {
        font-size: 15px !important;
        margin: 0px 0px 8px 2px !important;
        animation: offerAutoHover 1.8s ease-in-out infinite;

    }
     @keyframes offerAutoHover {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.08);
           
        }
        100% {
            transform: scale(1);
        }
    }
    .book-call-btn {
        width: auto !important;
        white-space: nowrap;
    }
}

.intro{
    font-weight: 900;
     font-size: 3rem;
      letter-spacing: 1px;
}
@media (max-width: 767px) {
    .intro{
        font-size: 30px;
    }   
}
.meet-text{
    font-size: 1.1rem;
     line-height: 1.6;
     color: #333;
}
@media (max-width:767px) {
    .meet-text{
        font-size: 16px;
        text-align: center;
    }
    
}
.meet-text-2{
    font-size: 1.1rem;
     line-height: 1.5;
      color: #000;
}
@media (max-width:767px) {
    .meet-text-2{
        font-size: 16px;
    }
    
   
} .success{
      letter-spacing: 1px;
       font-size: 2.8rem;
        font-weight: 900 !important;
    }

    @media (max-width:767px) {
        .success{
            font-size: 30px;
        }
        
    }
    .step{
        font-weight: 900; 
        font-size: 3rem;
         letter-spacing: -1px;
    }
    @media (max-width:767px) {
        .step{
            font-size: 30px;
        }
        
    }
.first-step{
    font-weight: 900; 
    font-size: 2.2rem; 
    color: #000; 
    line-height: 1.1;
}
@media (max-width:767px) {
    .first-step{
        font-size: 24px;
    }
    
}
/* Modal body ko proper container banao */
#videoModal .modal-body {
    position: relative;
    background: #000;   /* white blank area remove */
    padding: 0;
}

/* iframe ko responsive banao */
#videoModal iframe {
    width: 100%;
    height: 56vw;       /* mobile ke liye */
    max-height: 80vh;  /* desktop pe zyada bada na ho */
    display: block;
}

/* Desktop ke liye height fix */
@media (min-width: 768px) {
    #videoModal iframe {
        height: 450px;
    }
}
#videoModal .btn-close {
    filter: invert(1);
    opacity: 1;
}
.when{
    letter-spacing: 2px; 
    font-size: 1.5rem;
}
@media (max-width:767px) {
    .when{
        font-size: 18px !important;
    }
    
}
.meet-siddhartha{
    font-family: 'Caveat', cursive; 
    color: #ff8a00; 
    font-size: 4.5rem; 
    line-height: 1.2;
}
@media (max-width:767px) {
    .meet-siddhartha{
        font-size: 50px;
        padding-top: 20px;
    }
    
}
.FOUNDER{
    letter-spacing: 1.5px; 
    font-size: 0.85rem; 
    color: #444;
}
@media (max-width:767px) {
    .FOUNDER{
        font-size: 14px !important;
        text-align: center;
    }
    
}
.we-will{
    font-weight: 900; 
    font-size: 2rem; 
    color: #000;
}
@media (max-width:767px) {
    .we-will{
        font-size: 26px !important;
    }
    
}
.intro-section{
    background: linear-gradient(rgba(0, 0, 0, 0.541), rgba(0, 0, 0, 0.486)), url('assests/bg.jpg') center/cover no-repeat fixed; 
    padding: 100px 0; 
    /* min-height: 80vh; */
}
@media (max-width:767px) {
    .intro-section{
        padding: 60px 0; 
        min-height: auto;
    }
    
}
.guided-text{
    /* font-weight: 900; */
     /* line-height: 1.5;  */
     font-size:28px; 
     /* letter-spacing: 0.6px; */
         font-family: "Montserrat", Sans-serif;
    font-weight: 500;
    text-transform: capitalize;
}
@media (max-width:767px) {
    .guided-text{
        font-size: 16px !important;
    }
    
}
.points{
    border: 5px solid #ff8a00;
     max-width: 750px;
      padding-top: 35px;
       padding-bottom: 30px; 
       padding-left: 60px; 
       padding-right: 40px;
}
@media (max-width:767px) {
    .points{
        padding: 20px 14px;
    }
    
}
.social{
    font-weight: 900;
     letter-spacing: 1px;
         font-size: calc(1.425rem + 2.1vw);
}
@media (max-width:767px) {
    .social{
        font-size: 30px;
        font-weight: 900;
    }
    
}
.sub-text{
    font-weight: 600; 
    line-height: 1.5; 
}
@media (max-width:767px) {
    .sub-text{
        font-size: 16px !important;
    }
    
}
.join{
    font-weight: 900; 
    letter-spacing: 1px;
}
.my-text{
    font-weight: 900; 
    letter-spacing: 1px;
}
.accordion-header{
font-size: 24px;

}
@media (max-width:767px) {
    .accordion-header{
        font-size: 12px !important;
    }
    
}
.cta-btn-1 {
    background: linear-gradient(to bottom, #f47b20, #d45d00) !important;
    border: none !important; 
    color: white !important; 
    padding: 14px 45px !important; 
    font-weight: 800 !important;
    font-size: 1.6rem !important; 
    border-radius: 12px !important; 
    margin-left: 0 !important; 
    display: inline-block;
}
@media (max-width:767px) {
    .cta-btn-1
    {
   padding: 10px 10px !important;
        font-size: 15px !important;
        font-weight: 500 !important;
    }
    
}
#new-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.35s ease-in-out;
}

#new-sticky-footer.show-footer {
    transform: translateY(0);
}
.btn-arrow{
    font-size: 20px;
}
.arrow{
    font-size: 29px !important;
    margin: 0px;
}
@media (max-width:767px) {
   .arrow
    {
   font-size: 24px !important;
    margin: 0px;
    }
    
}

.accordion-button::after 
{
    margin: 0 !important;
    height: 35px !important;
   
}
.accordion-button{
   
    justify-content: space-between;
}


.image-box {
    border: 6px solid #ff8a00;
    max-width: 410px;
    height: 400px;
}

 .swiper{
width:100%;
}

.swiper-slide img{
width:100%;
height:450px;
object-fit:cover;
/* border-radius:10px; */
}
.swiper-button-next, .swiper-button-prev{
    color:white !important
}
.numbers{
     position: absolute;
       top: 15px;
    right: 10px;
    color: #6969693b;
    font-size: 80px !important;
}
@media (max-width:767px) {
    .numbers{
         top: 0;
    right: 0;
    }
}
.heading {
    font-family: "Montserrat", Sans-serif;
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 46px;
    /* color: var(--orange); */
    letter-spacing: 1px;
    margin-bottom: 0px;
    /* margin-top: 30px; */
}
@media  (max-width:767px)   {
    .heading{
        font-size: 20px !important;
        line-height: normal;
        font-weight: 600 !important;

    }
    
}
.slider-section{
    padding: 100px 0px;

}
@media (max-width:767px) {
    .slider-section{
        padding: 50px 0px;
    }
    
}
.daily-system{
    padding: 0px 0px 100px 0px;
}
@media (max-width:767px) {
    .daily-system{
        padding: 0px 0px 50px 0px;
    }
}
.social-section{
   padding: 0px 0px 100px 0px;
}
@media (max-width:767px) {
    .social-section{
        padding: 0px 0px 50px 0px;
    }
}
.book-a-call{
    padding: 0px 0px 100px 0px;
}
@media (max-width:767px) {
    .book-a-call{
        padding: 0px 0px 50px 0px;
    }
    
}
.success-container{
    padding:  100px 0px;
}
.success-container h2{
    padding-bottom: 40px;
}
@media (max-width:767px) {
    .success-container{
        padding: 50px 0px;
    }
}
.play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff3e;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
}