   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Lora:wght@500;700&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


    
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }


    :root {
            --primary: #BF3131;
            --secondary: #7D0A0A;
            --third: #EAD196;
            --bg: #f7f7f7;
            --text: #1d1d1d;
            --text-secondary: #666666;
            --white: #ffffff;
            --overlay: rgba(0, 0, 0, 0.8);
            --font-h1: 42px;
            --font-h2: 32px;
            --font-h3: 24px;
            --font-p: 16px;
            --font-btn: 16px;
            --image-height: 500px;
            --padding-large: 80px;
            --padding-medium: 50px;
            --padding-small: 30px;
            --padding-xsmall: 15px;
        }
body {
    background: linear-gradient(
        135deg,
        rgba(191, 49, 49, 0) 0%,
        rgba(0, 0, 0, 0.1) 30%,
        rgba(128, 0, 128, 0.1) 60%,
        rgba(255, 255, 255, 0.1) 100%
    );
    min-height: 100vh;
}
        .axel-hero-section {
            padding: 15px;
            margin-top: 120px;
            margin-bottom: 100px;
            overflow: hidden;
        }

        .axel-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 50px;
        }

        .axel-hero-text {
            width: 35%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .axel-hero-text h1 {
            font-size: var(--font-h1);
            color: #0f0f0f;
            font-weight: bold;
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
            line-height: 1.2;
        }  
            .axel-hero-text h1 span{
            color: var(--secondary);
             font-family: "Playfair Display", serif;
        }

        .axel-hero-text p {
            font-size: var(--font-p);
            color: var(--text);
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .axel-hero-buttons {
            display: flex;
            gap: 15px;
        }

        .axel-hero-btn {
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 500;
            font-size: var(--font-btn);
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .axel-hero-primary {
            background-color: var(--secondary);
            color: var(--white);
            font-weight: bold;
        }

        .axel-hero-secondary {
            color: var(--secondary);
            background-color: var(--white);
            border: 1px solid var(--secondary);
            font-weight: bold;
        }

        .axel-hero-btn:hover {
            transform: translateY(-2px);
            color: #ffffff;
            background-color: var(--primary);
        }

      

        .axel-hero-images {
            width: 65%;
            display: flex;
            gap: 15px;
            position: relative;
        }

        .axel-hero-image-slide {
            flex: 1;
            position: relative;
            transition: flex 0.5s ease;
            border-radius: 12px;
            overflow: hidden;
        }

        .axel-hero-image-slide img {
            width: 100%;
            height: var(--image-height);
            object-fit: cover;
            display: block;
        }

        .axel-hero-active {
            flex: 5;
        }

        .axel-hero-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .axel-hero-image-content {
            display: none;
            color: var(--white);
            /* text-align: center; */
            transform: translateY(20px);
            opacity: 0;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .axel-hero-active .axel-hero-image-content {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .axel-hero-image-content h3 {
            font-size: var(--font-h3);
            margin-bottom: 15px;
        }

        .axel-hero-slide-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: transparent;
            color: var(--white);
            text-decoration: none;
            border-radius: 12px;
            border: 1px solid var(--white);
            font-weight: bold;
            font-size: var(--font-btn);
        }

        .axel-hero-slide-btn:hover {
            background-color: var(--secondary);
        }

        @media (max-width: 768px) {


.axel-hero-section{
    margin-top: 100px;
}

            .axel-hero-container {
                flex-direction: column;
                align-items: center;
            }

            .axel-hero-text {
                width: 100%;
                text-align: center;
                margin-bottom: var(--padding-small);
            }

            .axel-hero-text h1 {
                font-size: 32px;
            }

            .axel-hero-text p {
                font-size: 14px;
            }

            .axel-hero-buttons {
                justify-content: center;
            }

            .axel-hero-images {
                width: 100%;
                display: block;
            }

            .axel-hero-image-slide {
                display: none;
            }

            .axel-hero-active {
                display: block;
                width: 100%;
            }

            .axel-hero-image-slide img {
                height: 400px;
            }

            .axel-hero-image-content h3 {
                font-size: 20px;
            }

            .axel-hero-slide-btn {
                font-size: 13px;
                padding: 8px 16px;
            }
        }

        @media (max-width: 480px) {

            .axel-hero-section {
                padding: 15px;
                margin-top: 90px;
            }

            .axel-hero-text h1 {
                font-size: 28px;
            }

            .axel-hero-text p {
                font-size: 13px;
            }

            .axel-hero-btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .axel-hero-image-slide img {
                height: 300px;
            }

            .axel-hero-image-content h3 {
                font-size: 18px;
            }
        }




 .event-poster-axel-contact-section {
            max-width: 1000px;
            width: 85%;
            margin: 50px auto;
            background-image: linear-gradient(to right, var(--overlay), transparent), url('/img/Free\ online\ JLPT\ Course.png');
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            min-height: 400px;
            position: relative;
            overflow: hidden;
        }

        .event-poster-axel-contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-image: inherit;
            background-size: inherit;
            background-position: inherit;
            z-index: -1;
        }

        .event-poster-axel-contact-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 50%;
        }

        .event-poster-axel-contact-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: var(--font-h2);
            color: var(--white);
            line-height: 1.3;
            font-weight: 500;
            text-transform: uppercase;
        }

        .event-poster-axel-contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background-color: var(--white);
            color: var(--secondary);
            text-decoration: none;
            border-radius: 8px;
            font-size: var(--font-btn);
            /* border: 1px solid #ffffff; */
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            width: fit-content;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .event-poster-axel-contact-btn i {
            font-size: 18px;
        }

        .event-poster-axel-contact-btn:hover {
            background-color: var(--secondary);
            color: var(--white);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .event-poster-axel-contact-section {
                padding: var(--padding-medium);
                min-height: 350px;
            }

            .event-poster-axel-contact-container {
                max-width: 70%;
            }

            .event-poster-axel-contact-section h2 {
                font-size: 24px;
            }

            .event-poster-axel-contact-btn {
                padding: 10px 20px;
                font-size: 13px;
            }

            .event-poster-axel-contact-btn i {
                font-size: 16px;
            }
        }

        @media (max-width: 550px) {
            .event-poster-axel-contact-section {
                padding: var(--padding-small);
                min-height: 300px;
                background-image: linear-gradient(to right, var(--overlay), transparent), url('/img/Free\ online\ JLPT\ Course.png');
            }

            .event-poster-axel-contact-container {
                max-width: 100%;
                align-items: center;
                text-align: center;
            }

            .event-poster-axel-contact-section h2 {
                font-size: 20px;
            }

            .event-poster-axel-contact-btn {
                padding: 8px 16px;
                font-size: 12px;
            }

            .event-poster-axel-contact-btn i {
                font-size: 14px;
            }
        }












/* --------------Stats------------------------- */

     .event-poster-axel-stats-section {
            max-width: 1200px;
            width: 98%;
            margin: 50px auto;
            padding: 15px;
            /* background-color: var(--bg); */
            text-align: left;
            overflow: hidden;
        }

        .event-poster-axel-stats-section h2 {
            font-family: 'Inter', sans-serif;
            font-size: var(--font-h2);
            color: var(--text);
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .event-poster-axel-stats-container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

        .event-poster-axel-stats-box {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            transition: transform 0.3s ease;
        }

        .event-poster-axel-stats-box:hover {
            transform: translateY(-5px);
        }

        .event-poster-axel-stats-header {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .event-poster-axel-stats-icon {
            font-size: 24px;
        }

        .icon-color-1 { color: rgb(47, 218, 70); }
        .icon-color-2 { color: rgb(255, 240, 33); }
        .icon-color-3 { color: rgb(52, 140, 255); }
        .icon-color-4 { color: var(--primary); }

        .event-poster-axel-stats-header h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            color: var(--text);
            font-weight: 600;
            text-align: left;
        }

        .event-poster-axel-stats-counter {
            font-family: 'Inter', sans-serif;
            font-size: 28px;
            color: var(--text);
            font-weight: 700;
            text-align: left;
        }

        .event-poster-axel-stats-content {
            font-family: 'Inter', sans-serif;
            font-size: 28px;
            color: var(--text);
            font-weight: 700;
            text-align: left;
        }

        .event-poster-axel-stats-box p {
            font-family: 'Poppins', sans-serif;
            font-size: var(--font-p);
            color: var(--text-secondary);
            line-height: 1.5;
            text-align: left;
        }

        @media (max-width: 768px) {
            .event-poster-axel-stats-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }

            .event-poster-axel-stats-box {
                padding: 20px;
            }

            .event-poster-axel-stats-section h2 {
                font-size: 24px;
            }

            .event-poster-axel-stats-header h3 {
                font-size: 18px;
            }

            .event-poster-axel-stats-counter,
            .event-poster-axel-stats-content {
                font-size: 24px;
            }

            .event-poster-axel-stats-box p {
                font-size: 14px;
            }

            .event-poster-axel-stats-icon {
                font-size: 22px;
            }
        }

        @media (max-width: 550px) {
            .event-poster-axel-stats-section {
                padding: var(--padding-medium) var(--padding-xsmall);
            }

            .event-poster-axel-stats-container {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .event-poster-axel-stats-box {
                padding: 15px;
            }

            .event-poster-axel-stats-section h2 {
                font-size: 20px;
            }

            .event-poster-axel-stats-header h3 {
                font-size: 16px;
            }

            .event-poster-axel-stats-counter,
            .event-poster-axel-stats-content {
                font-size: 20px;
            }

            .event-poster-axel-stats-box p {
                font-size: 13px;
            }

            .event-poster-axel-stats-icon {
                font-size: 20px;
            }
        }












/* -----------Video Section-------------------------- */
 .vid-sec-axel-features-section {
            max-width: min(1400px, 98%);
            margin: 50px auto;
            padding: var(--padding-large) var(--padding-small);
            /* background-color: var(--bg); */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .vid-sec-axel-features-top {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            align-items: center;
        }

        .vid-sec-axel-features-top h2 {
            font-family: 'Inter', sans-serif;
            font-size: var(--font-h2);
            color: var(--text);
            max-width: 600px;
            text-align: left;
            line-height: 1.3;
        }

        .vid-sec-axel-features-top p {
            font-family: 'Poppins', sans-serif;
            font-size: var(--font-p);
            color: var(--text-secondary);
            max-width: 400px;
            text-align: right;
            line-height: 1.5;
        }

        .vid-sec-axel-features-bottom {
            display: flex;
            justify-content: space-between;
            gap: 50px;
        }

        .vid-sec-axel-features-left {
            width: 20%;
            display: flex;
            flex-direction: column;
            gap: 40px; /* Increased gap to align with video height */
        }

        .vid-sec-axel-features-box {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .vid-sec-axel-features-icon {
            font-size: 22px;
        }

        /* .icon-color-1 { color: var(--icon-color-1); }
        .icon-color-2 { color: var(--icon-color-2); }
        .icon-color-3 { color: var(--icon-color-3); } */

        .vid-sec-axel-features-text h3 {
            font-family: 'Poppins', sans-serif;
            font-size: var(--font-h3);
            color: var(--text);
            font-weight: 500;
            margin-bottom: 8px;
        }

        .vid-sec-axel-features-text p {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        .vid-sec-axel-features-btn {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background-color: var(--secondary);
            border: 2px solid var(--white);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-size: var(--font-btn);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .vid-sec-axel-features-btn:hover {
            background-color: var(--white);
            color: var(--secondary);
            transform: translateY(-2px);
        }

        .vid-sec-axel-features-right {
            flex: 1;
            position: relative;
        }

        .vid-sec-axel-features-video-container {
            position: relative;
            width: 100%;
            padding-top: 50.25%; /* 16:9 aspect ratio */
        }

        .vid-sec-axel-features-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 10px solid var(--secondary);
            border-radius: 12px;
            object-fit: cover;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .vid-sec-axel-features-overlay {
            position: absolute;
            top: 0px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            width: 50%;
        }

        .vid-sec-axel-features-overlay-box {
            display: flex;
        }

        .vid-sec-axel-features-overlay-subbox {
            background-color: var(--text);
            padding: 8px 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: var(--white);
            font-weight: 500;
            text-align: center;
        }

        @media (max-width: 768px) {
            .vid-sec-axel-features-section {
                padding: var(--padding-medium) var(--padding-xsmall);
                min-height: auto;
            }

            .vid-sec-axel-features-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .vid-sec-axel-features-top h2 {
                max-width: 100%;
                font-size: 24px;
            }

            .vid-sec-axel-features-top p {
                max-width: 100%;
                text-align: left;
                font-size: 14px;
            }

            .vid-sec-axel-features-bottom {
                flex-direction: column;
                gap: 15px;
            }

            .vid-sec-axel-features-left {
                width: 100%;
                gap: 20px;
            }

            .vid-sec-axel-features-box {
                padding: 10px 0;
            }

            .vid-sec-axel-features-text h3 {
                font-size: 18px;
            }

            .vid-sec-axel-features-text p {
                font-size: 13px;
            }

            .vid-sec-axel-features-btn {
                padding: 8px 18px;
                font-size: 13px;
            }

            .vid-sec-axel-features-video-container {
                padding-top: 56.25%;
            }

            .vid-sec-axel-features-video {
                border-width: 6px;
            }

            .vid-sec-axel-features-overlay {
                width: 70%;
                top: 12px;
            }

            .vid-sec-axel-features-overlay-subbox {
                font-size: 12px;
                padding: 6px 10px;
            }
        }

        @media (max-width: 550px) {
            .vid-sec-axel-features-section {
                padding: var(--padding-small) var(--padding-xsmall);
            }

            .vid-sec-axel-features-top h2 {
                font-size: 20px;
            }

            .vid-sec-axel-features-top p {
                font-size: 13px;
            }

            .vid-sec-axel-features-box {
                padding: 8px 0;
            }

            .vid-sec-axel-features-icon {
                font-size: 20px;
            }

            .vid-sec-axel-features-text h3 {
                font-size: 16px;
            }

            .vid-sec-axel-features-text p {
                font-size: 12px;
            }

            .vid-sec-axel-features-btn {
                padding: 7px 16px;
                font-size: 12px;
            }

            .vid-sec-axel-features-video {
                border-width: 4px;
            }

            .vid-sec-axel-features-overlay {
                width: 80%;
                top: 10px;
            }

            .vid-sec-axel-features-overlay-subbox {
                font-size: 11px;
                padding: 5px 8px;
            }
        }







        /* ------------------Home About Section-------------------- */
  
        .hm-abt-sec-axel-dual-section-top,
        .hm-abt-sec-axel-dual-section-bottom {
            max-width: min(800px, 98%);
            margin: 0px auto;
            padding: 10px;
            /* background-color: var(--bg); */
            min-height: 50vh;
        }

.hm-abt-sec-axel-dual-section-top{
    margin-top: 80px;
}
      

        .hm-abt-sec-axel-dual-container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

        .hm-abt-sec-axel-dual-image-left {
            width: 60%;
        }

        .hm-abt-sec-axel-dual-image-left img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
        }

        .hm-abt-sec-axel-dual-text-right {
            width: 40%;
            display: flex;
            flex-direction: column;
            gap: 15px;
            justify-content: center;
        }

        .hm-abt-sec-axel-dual-text-right h2 {
            font-family: 'Inter', sans-serif;
            font-size: var(--font-h2);
            color: var(--text);
            text-align: left;
            line-height: 1.3;
        }

        .hm-abt-sec-axel-dual-text-right p {
            font-family: 'Poppins', sans-serif;
            font-size: var(--font-p);
            color: var(--text-secondary);
            line-height: 1.5;
        }
 .hm-abt-sec-axel-dual-text-right p span{
    font-weight: bold;
    font-style: italic;
    color: #0f0f0f;
 }
        .hm-abt-sec-axel-dual-btn {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background-color: var(--white);
            color: var(--secondary);
            text-decoration: none;
            border-radius: 12px;
            border: 1px solid var(--secondary);
            font-size: var(--font-btn);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.3s ease;
            width: fit-content;
        }

        .hm-abt-sec-axel-dual-btn:hover {
            background-color: var(--secondary);
            color: var(--white);
            transform: translateY(-2px);
        }

        .hm-abt-sec-axel-dual-text-left {
            width: 25%;
            display: flex;
            flex-direction: column;
            gap: 20px;
            justify-content: center;
        }

        .hm-abt-sec-axel-dual-text-left h2 {
            font-family: 'Inter', sans-serif;
            font-size: var(--font-h2);
            color: var(--text);
            text-align: left;
            line-height: 1.3;
        }

        .hm-abt-sec-axel-dual-image-right {
            width: 75%;
            position: relative;
            height: 500px;
        }

        .hm-abt-sec-axel-dual-image-stack {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hm-abt-sec-axel-dual-image {
            position: absolute;
            width: 60%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .hm-abt-sec-axel-dual-image-1 {
            top: 0;
            left: 0;
            transform: rotate(-4deg);
            z-index: 3;
        }

        .hm-abt-sec-axel-dual-image-2 {
            top: 50px;
            left: 50px;
            transform: rotate(0deg);
            z-index: 2;
        }

        .hm-abt-sec-axel-dual-image-3 {
            top: 100px;
            left: 100px;
            transform: rotate(4deg);
            z-index: 1;
        }

        .hm-abt-sec-axel-dual-image.clicked {
            transform: translate(100vw, -100vh) rotate(90deg);
            opacity: 0;
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .hm-abt-sec-axel-dual-section-top,
            .hm-abt-sec-axel-dual-section-bottom {
                padding: var(--padding-medium) var(--padding-xsmall);
                min-height: auto;
            }

            .hm-abt-sec-axel-dual-container {
                flex-direction: column;
                gap: 15px;
            }

            .hm-abt-sec-axel-dual-image-left,
            .hm-abt-sec-axel-dual-text-right {
                width: 100%;
            }

            .hm-abt-sec-axel-dual-text-right h2 {
                font-size: 24px;
            }

            .hm-abt-sec-axel-dual-text-right p {
                font-size: 14px;
            }

            .hm-abt-sec-axel-dual-btn {
                padding: 8px 18px;
                font-size: 13px;
            }

            .hm-abt-sec-axel-dual-text-left {
                width: 100%;
            }

            .hm-abt-sec-axel-dual-text-left h2 {
                font-size: 24px;
            }

            .hm-abt-sec-axel-dual-image-right {
                width: 100%;
                height: 400px;
            }

            .hm-abt-sec-axel-dual-image {
                width: 80%;
            }

            .hm-abt-sec-axel-dual-image-1 {
                top: 0;
                left: 0;
            }

            .hm-abt-sec-axel-dual-image-2 {
                top: 30px;
                left: 30px;
            }

            .hm-abt-sec-axel-dual-image-3 {
                top: 60px;
                left: 60px;
            }
        }

        @media (max-width: 550px) {
            .hm-abt-sec-axel-dual-section-top,
            .hm-abt-sec-axel-dual-section-bottom {
                padding: var(--padding-small) var(--padding-xsmall);
            }

            .hm-abt-sec-axel-dual-text-right h2 {
                font-size: 20px;
            }

            .hm-abt-sec-axel-dual-text-right p {
                font-size: 13px;
            }

            .hm-abt-sec-axel-dual-btn {
                padding: 7px 16px;
                font-size: 12px;
            }

            .hm-abt-sec-axel-dual-text-left h2 {
                font-size: 20px;
            }

            .hm-abt-sec-axel-dual-image-right {
                height: 300px;
            }

            .hm-abt-sec-axel-dual-image {
                width: 90%;
            }

            .hm-abt-sec-axel-dual-image-1 {
                top: 0;
                left: 0;
            }

            .hm-abt-sec-axel-dual-image-2 {
                top: 20px;
                left: 20px;
            }

            .hm-abt-sec-axel-dual-image-3 {
                top: 40px;
                left: 40px;
            }
        }






/* ----------------------Review Section--------------------- */

 .reviews-section-ap-hm-rw {
            max-width: 1400px;
            width: 98%;
            margin: 70px auto;
            padding: var(--padding-medium) 0;
            overflow: hidden;
            position: relative;
        }
         .reviews-section-ap-hm-rw h2{
            font-size: var(--font-h2);
            color: var(--text);
            margin-bottom: 20px;
            padding: 15px;
         }
        .controls-ap-hm-rw {
            position: absolute;
            top: 0px;
            right: 15px;
            display: flex;
            gap: 10px;
        }
        .prev-btn-ap-hm-rw, .next-btn-ap-hm-rw {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 8px;
            cursor: pointer;
            border-radius: 5px;
            font-size: 16px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .reviews-container-ap-hm-rw {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 15px;
            scrollbar-width: none;
        }
        .reviews-container-ap-hm-rw::-webkit-scrollbar {
            display: none;
        }
        .review-box-ap-hm-rw {
            flex: 0 0 250px;
            /* height: 220px; */
            background: var(--white);
            border-radius: 10px;
            padding: var(--padding-xsmall);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .review-box-ap-hm-rw p, .review-box-ap-hm-rw h2 {
            font-size: var(--font-p);
            color: var(--text);
            margin: 0 0 10px 0;
            line-height: 1.5;
        }
        .review-box-ap-hm-rw h2 {
            font-size: var(--font-h2);
            text-align: center;
            color: var(--white);
        }
        .user-info-ap-hm-rw {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .user-info-ap-hm-rw img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }
        .user-info-ap-hm-rw span {
            font-size: var(--font-p);
            color: var(--text-secondary);
        }
        .special-box-ap-hm-rw{
            background-color: var(--secondary);
            color: var(--white);
        }    
      
        .special-box-ap-hm-rw button {
            background: var(--white);
            color: var(--secondary);
            border: none;
            padding: 10px 20px;
            font-size: var(--font-btn);
            box-shadow: 0px 1px 3px rgba(253, 253, 253, 0.4);
            cursor: pointer;
            border-radius: 5px;
            width: fit-content;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
      
            .reviews-section-ap-hm-rw {
                margin-top: 180px;
                padding: var(--padding-small) 0;
            }
            .review-box-ap-hm-rw {
                flex: 0 0 200px;
                /* height: 200px; */
            }
            .review-box-ap-hm-rw p, .review-box-ap-hm-rw h2 {
                font-size: calc(var(--font-p) * 0.9);
            }
            .review-box-ap-hm-rw h2 {
                font-size: calc(var(--font-h2) * 0.9);
            }
            .reviews-container-ap-hm-rw {
                gap: 15px;
            }
            .controls-ap-hm-rw {
                gap: 8px;
            }
        }
        @media (max-width: 480px) {
            .review-box-ap-hm-rw {
                flex: 0 0 180px;
                /* height: 180px; */
            }
                .reviews-section-ap-hm-rw h2{
            font-size: 20px;
            /* color: var(--text); */
            margin-bottom: 10px;
            padding: 10px;
         }
            .review-box-ap-hm-rw p, .review-box-ap-hm-rw h2 {
                font-size: calc(var(--font-p) * 0.85);
            }
            .review-box-ap-hm-rw h2 {
                font-size: calc(var(--font-h2) * 0.85);
            }
            .controls-ap-hm-rw {
                gap: 6px;
            }
            .prev-btn-ap-hm-rw, .next-btn-ap-hm-rw {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
        }









/* ---------------------Contact Section------------------ */

   
        .hm-abt-sec-axel-attention-section {
            max-width: 800px;
            width: 90%;
            height: 350px;
            margin: 70px auto;
            padding: 30px;
            background: linear-gradient(
                to right,
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.1) 100%
            ), url('/img/Axel\ contact\ bg.png') center/cover no-repeat;
            display: flex;
            align-items: center;
            position: relative;
            border-radius: 12px;
            /* overflow: hidden; */
        }

        .hm-abt-sec-axel-attention-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            width: 100%;
        }

        .hm-abt-sec-axel-attention-left {
            width: 50%;
            /* display: flex; */
            justify-content: flex-start;
            position: relative;
        }   
         .hm-abt-sec-axel-attention-left h2{
           font-size: 28px;
           color: var(--white);
           font-weight: 500;
           line-height: 1.2;
            font-family: "Dela Gothic One", sans-serif;
           margin-bottom: 15px;
        }

        .hm-abt-sec-axel-attention-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            background-color: var(--white);
            padding: 12px 24px;
            color: var(--secondary);
            text-decoration: none;
            border: 1px solid var(--secondary);
            border-radius: 12px;
            font-size: var(--font-btn);
            box-shadow: 0px 4px 8px rgba(184, 47, 47, 0.9);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .hm-abt-sec-axel-attention-btn:hover {
            transform: translateY(-2px);
        }

        .hm-abt-sec-axel-attention-right {
            width: 50%;
            display: flex;
            justify-content: flex-end;
        }

        .hm-abt-sec-axel-attention-right img {
            /* max-width: 300px; */
            position: absolute;
            width: auto;
            height: 400px;
            bottom: 0px;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .hm-abt-sec-axel-attention-section {
                padding: var(--padding-medium) var(--padding-xsmall);
                max-height: none;
            }

            .hm-abt-sec-axel-attention-container {
                /* flex-direction: column; */
                gap: 15px;
            }

            .hm-abt-sec-axel-attention-left,
            .hm-abt-sec-axel-attention-right {
                width: 100%;
                justify-content: center;
            }

            .hm-abt-sec-axel-attention-right img {
                max-width: 250px;
            }

            .hm-abt-sec-axel-attention-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 550px) {
            .hm-abt-sec-axel-attention-section {
                padding: var(--padding-small) var(--padding-xsmall);
                margin-top: 100px;
            }

            /* .hm-abt-sec-axel-attention-right img {
                max-width: 200px;
            } */

            .hm-abt-sec-axel-attention-btn {
                padding: 8px 16px;
                font-size: 13px;
            }
        }