       .about-banner {
            background: url(./img/HERO.png) no-repeat center center;
            background-size: cover;
            position: relative;
            color: #fff;
            padding: 60px 0;
        }

        .about-banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .about-banner h1 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* About us content */
        .about-srction {
            padding: 15px 0;
            background: #82a6c126;

        }

        .about-flex {
            display: flex;
            align-items: center;
        }

        /* Left Content */
        .about-title h2 {
            font-family: "Playfair Display", serif;
            font-size: 38px;
            font-weight: 700;
            line-height: 1.2;
            color: #111;
            margin-bottom: 15px;
        }

        .about-title span {
            font-style: italic;
            font-weight: 700;
            background: linear-gradient(90deg, #2a81ac, #0a5c92);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-content p {
            font-size: 18px;
            line-height: 1.6;
            color: #242121;
            margin-bottom: 10px;
            text-align: justify;
        }

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

        /* business smart section */
        .unilevel-section {
            padding: 30px 0;
            background: #f9f9f9;
        }

        .unilevel-section .container {
            max-width: 1000px;
            margin: auto;
        }

        .business-smart {
            text-align: center;
        }

        .business-smart h2 {
            font-family: "Playfair Display", serif;
            font-size: 38px;
            font-weight: 700;
            line-height: 1.2;
            color: #111;
            margin-bottom: 15px;
        }

        .business-smart span {
            font-style: italic;
            font-weight: 700;
            background: linear-gradient(90deg, #2a81ac, #0a5c92);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .business-smart p {
            font-size: 18px;
            color: #000;
            line-height: 1.7;
            margin-bottom: 15px;
        }


        /* Button */
        .about-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: #fff;
            color: #111;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            overflow: hidden;
            position: relative;
            transition: 0.3s;
        }

        .about-arrow {
            width: 42px;
            height: 42px;
            background: #002e50;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        /* Hover Animation */
        .about-btn:hover {
            background: linear-gradient(90deg, #2a81ac, #0a5c92);
            color: #fff;
        }

        .about-btn:hover .cta-arrow {
            transform: translateX(6px);
            background: #fff;
            color: #0b0f2f;
        }
        
      
        /* gallery */
        .volochain-gallery {
            padding: 30px 0;
            background: #82a6c126;
        }

        .gallery-title {
            font-family: "Playfair Display", serif;
            font-size: 38px;
            font-weight: 700;
            line-height: 1.2;
            color: #111;
            margin-bottom: 15px;
        }

        .gallery-title span {
            font-style: italic;
            font-weight: 700;
            background: linear-gradient(90deg, #2a81ac, #0a5c92);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .gallery-img {
            width: 100%;
            object-fit: cover;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.5s ease;
        }

        .gallery-img:hover {
            transform: scale(1.05);
        }

        .carousel-control {
            background: none;
        }

        #imgModal .btn-close {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 10;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
        }

        /* Counter Section */
        .counter-section {
            background: url(/assets/neweb/img/about/counterbg.png);
            padding: 30px 0;
        }

        .counter-box {
            background: linear-gradient(90deg, #2a81ac, #0a5c92);
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            /*margin: 20px;*/
            transition: background-color 0.3s ease;
            height:100%;
        }

        .counter-box:hover {
            background-color: #f7f7f7;
        }

        .counter-icon {
            font-size: 40px;
            color: #fff;
            margin-bottom: 15px;
        }

        .counter-number {
            font-size: 40px;
            font-weight: bold;
            color: #fff;
        }

        .counter-label {
            font-size: 16px;
            color: #fff;
            text-transform: uppercase;
        }
        
        
        /*tron page css*/
          /* Compensation Section */
        .compensation-section {
            background: #82a6c126;
            color: #333;
        }

        .compensation-section .section-title {
            font-family: "Playfair Display", serif;
            font-size: 32px;
            font-weight: 700;
            line-height: 1.2;
            color: #111;
            margin-bottom: 15px;
        }

        .compensation-section span {
            font-style: italic;
            font-weight: 700;
            background: linear-gradient(90deg, #2a81ac, #0a5c92);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .compensation-section .section-content {
            font-size: 18px;
            line-height: 1.6;
            color: #242121;
            margin-bottom: 15px;

        }

        /* Card Styling */
        .comp-card {
            background: #fff;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .comp-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .comp-card img {
            height: 120px;
            object-fit: contain;
        }

        .comp-card .card-title {
            font-size: 22px;
            color: #0f3c6e;

        }

        .comp-card .card-text {
            font-size: 16px;
            color: #242121;
            text-align: justify;
        }

        /* Features Section */
        .features-section {
            padding: 30px;
        }

        .features-section .section-title {
            font-family: "Playfair Display", serif;
            font-size: 32px;
            font-weight: 700;
            line-height: 1.2;
            color: #111;
            margin-bottom: 15px;
        }

        .features-section span {
            font-style: italic;
            font-weight: 700;
            background: linear-gradient(90deg, #2a81ac, #0a5c92);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .features-section .section-desc {
            font-size: 18px;
            line-height: 1.6;
            color: #242121;
            margin-bottom: 15px;
        }

        .features-section a {
            color: #0f3c6e;
        }

        /* Feature Card */
        .feature-card {
            background: #82a6c126;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        /* UL List */
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 12px;
            font-size: 15px;
            color: #202020;
            font-weight: 600;
        }

        /* Custom Bullet */
        .feature-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: #0f3c6e !important;
            font-weight: bold;
        }
        
        /*EMGOLDEX PAge css*/
         /* section 3 css */
        .unilevel-adv-section {
            padding: 30px 0;
            background-color: #82a6c126;
        }

        .unilevel-adv-title {
            font-size: 30px;
            font-weight: 600;
            color: #0b2b46;
        }

        .unilevel-adv-title span {
            color: #00abe5;

        }

        .unilevel-adv-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 40px;
        }

        .unilevel-adv-card {
            background: #fff;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 6px;
            box-shadow: 0 0 5px rgb(0 0 0 / 78%);
            height: 90%;
            transition: 0.3s;
        }

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

        .card-header {
            display: flex;
            align-items: center;
        }

        .card-icon img {
            width: 100px;
            height: auto;
            margin-left: -12px;
        }

        .card-title {
            margin-left: 15px;
        }

        .card-title h4 {
            margin: 8px 0 0;
            font-size: 22px;
            font-weight: 600;
            color: #0b2b46;
        }

        .card-desc {
            font-size: 18px;
            color: #242121;
            line-height: 1.6;
        }
        
        /*investment page css*/
          .benefits {
            padding: 30px 0;
            background-color: #82a6c126;
        }

        .benefits h2 {
            font-family: "Playfair Display", serif;
            font-size: 38px;
            font-weight: 700;
            line-height: 1.2;
            color: #111;
            margin-bottom: 15px;
        }

        .benefits span {
            font-style: italic;
            font-weight: 700;
            background: linear-gradient(90deg, #2a81ac, #0a5c92);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .benefits p {
            font-size: 18px;
            line-height: 1.6;
            color: #242121;
            margin-bottom: 10px;
           font-weight: 600;
        }

     
        .benefits .investment {
            margin: 10px;
                display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 28px 10px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

    
        .benefits .investment h3 {
            font-size: 16px;
            font-weight: 600;

        }

        /* Hover effect */
        .benefits .investment:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .gn-color {
            background: #daf3df;
            color: #031e05 !important;
        }

        .bl-color {
            background: #c9f3f3;
            color: #064242 !important;
        }

        .pk-color {
            background: #f1d8cd;
            color: #5c1a06 !important;
        }
        /*australian page css*/
        .australian-bg{
            background:#82a6c126;;
        }
        /*term condition page*/
              .terms-section {
          margin: 40px auto;
            padding: 30px;
            background: #ffffff;
        }
        
        .terms-section h2 {
           font-family: "Playfair Display", serif;
            font-size: 38px;
           font-weight: 700;
            line-height: 1.2;
             color: #111;
          margin-bottom: 15px;
        }
        .terms-section span{
             font-style: italic;
                    font-weight: 700;
                    background: linear-gradient(90deg, #2a81ac, #0a5c92);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
        }
        
        .terms-section h3 {
              
           font-family: "Playfair Display", serif;
                    font-size: 24px;
                    font-weight: 700;
                    line-height: 1.2;
                    color: #111;
                    margin-bottom: 15px;
        }
        
        .terms-section p {
               font-size: 18px;
                    line-height: 1.6;
                    color: #242121;
                    margin-bottom: 10px;
                    text-align: justify;
        }
        @media (max-width: 992px) {
            .about-image img {
                height: 300px;
                object-fit: contain;
                width: 100%;
                border-radius: 10px;
            }
            .about-srction
               {
            padding: 22px 0px 0px 0px;}
                }
        /* Media Queries mobile view */
        @media (max-width: 767px) {
            .about-banner h1
         {
            font-size: 32px;}
            .counter-box {
                margin-bottom: 30px;
            }
                .about-image img {
               height: 200px;
            }
            /*term conditon css*/
                .terms-section{
                    padding:10px;
                }
                .terms-section h2 {
                    font-size: 30px;
                }
                .terms-section p {
                font-size: 16px;
                    
                }
                .terms-section h3{
                        margin-bottom: 5px;
                }
                .about-title h2 {
                    font-size: 24px;
                  margin-bottom: 5px;
                }
                .about-content p {
                  font-size: 16px;
                }
                .about-srction {
               padding: 10px 0;
                    
                }
                .business-smart h2{
                font-size: 28px;
                }
                .business-smart p {
               font-size: 16px;
                }
                .gallery-title {
              font-size: 28px;
                }
                .compensation-section .section-title{
                        font-size: 26px;
                }
                .compensation-section .section-content {
                font-size: 16px;
                text-align: justify;
                }
                .features-section {
                    padding: 10px;
                }
                .unilevel-adv-card {
             padding: 13px;
                }
                .unilevel-adv-title {
                 font-size: 24px;
                    
                }
                .card-desc {
              font-size: 16px;
                }
                .card-title h4 {
               font-size: 18px;
                }
                .benefits h2 {
              font-size: 24px;
                }
                .features-section .section-title {
                font-size: 24px;
                }
                .features-section .section-desc {
                font-size: 16px;
                text-align: justify;
                    
                }

         }

        @media (max-width: 575px) {
            .gallery-img {
                margin-bottom: 15px;
            }

            .counter-box {
                padding: 10px;
            }
        }

       
        /* about us content section loptop */
        @media (max-width: 991px) {
            .banner-flex {
                display: block;
            }

            .banner-image {
                margin-top: 40px;
            }
        }

        /* mobile respobsive Responsive */