.page-sections {
        padding: 60px 0 0;
    }

    html {
        scroll-behavior: smooth;
    }
    
    /*form scrolling button code start */
    .hero-scroll-btn {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 22px;
        background: linear-gradient(90deg, #ff7a00, #ff5500);
        color: #fff;
        font-weight: 600;
        border-radius: 6px;
        text-decoration: none;
        transition: 0.3s;
    }
    
    .hero-scroll-btn:hover {
        transform: translateY(-2px);
    }
    /*form scrolling button code end */
    
    
    /*Get Free Design Consultation hide code start*/
    @media (min-width: 901px) {
        .hero-scroll-btn {
            display: none;
        }
    }
    /*Get Free Design Consultation hide code end*/
    

    /*new banner start HERO */
    .hero {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        color: white;
        position: relative;
        background: url("https://boothfabricators.com/assets/images/footerbg.webp") center/cover no-repeat;
    }

    /* OVERLAY */
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,
                rgba(5, 0, 32, 0.95) 0%,
                rgba(8, 4, 60, 0.85) 45%,
                rgba(255, 120, 0, 0.45) 100%);
    }

    /* CONTAINER */
    .hero-container {
        position: relative;
        width: 100%;
        max-width: 1400px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 50px;
    }

    /* LEFT */
    .hero-left {
        flex: 1;
    }

    .event-logo {
        width: 120px;
        margin-bottom: 22px;
        border-radius: 12px;
    }

    /* HEADING */
    .hero-left h1 {
        font-size: 38px;
        /* old banner feel */
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 15px;
        background: linear-gradient(90deg, #48d7ff, #6c8cff);
        -webkit-background-clip: text;
        color: transparent;
    }

    /* TEXT */
    .hero-left p {
        font-size: 17px;
        font-weight: 500;
        color: #e3e5ff;
        margin-bottom: 20px;
        max-width: 520px;
    }

    /* EVENT INFO */
    .event-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
        font-weight: 600;
        font-size: 17px;
    }

    /* FORM */
    .hero-form {
        width: 420px;
        padding: 20px;
        border-radius: 12px;
        background: rgba(66, 41, 31, 0.72);
        border: 1px solid rgba(0, 200, 255, 0.45);
        box-shadow: 0 18px 40px rgba(35, 17, 10, 0.35);
        backdrop-filter: blur(8px);
    }

    /* FORM TITLE */
    .form-title {
        text-align: center;
        margin-bottom: 15px;
        font-size: 20px;
        font-weight: 700;
        color: white;
    }

    .hero-form-row {
        display: flex;
        gap: 10px;
    }

    .hero-form-group {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-form-group label {
        display: block;
        margin-bottom: 4px;
        font-size: 12px;
        font-weight: 700;
    }

    .hero-form input::placeholder,
    .hero-form textarea::placeholder {
        color: #aaa;
        font-weight: 400;
    }

    /* INPUTS */
    .hero-form input,
    .hero-form textarea {
        width: 100%;
        padding: 10px;
        border-radius: 6px;
        border: 2px solid #ddd;
        background: #fff;
        color: #a1a1a1;
        font-size: 13px;
        font-weight: 700;
        outline: none;
        transition: 0.25s;
        margin-bottom: 0;
        box-sizing: border-box;
    }

    .hero-form input:focus,
    .hero-form textarea:focus {
        border-color: #ff6a00;
        box-shadow: 0 0 6px rgba(255, 106, 0, 0.3);
    }

    .hero-form textarea {
        height: 70px;
        resize: none;
    }

    /* BUTTON */
    .hero-form button {
        width: 100%;
        padding: 12px;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 700;
        background: linear-gradient(45deg, #ff6a00, #ff3d00);
        color: #fff;
        cursor: pointer;
        transition: 0.3s;
        margin-top: 4px;
    }

    .hero-form button:hover {
        transform: scale(1.03);
    }

    .hero-form-trust {
        margin-bottom: 6px;
        text-align: center;
        font-size: 12px;
        margin-top: 10px;
    }

    /* MOBILE */
    @media (max-width:900px) {

        .hero {
            padding: 35px 20px;
        }
    
        .hero-container {
            flex-direction: column;
            align-items: flex-start;   /* ✅ center se left */
            text-align: left;          /* ✅ force left */
            width: 100%;
        }
    
        .hero-left {
            width: 100%;
            text-align: left;
        }
    
        .hero-left h1,
        .hero-left p,
        .event-info {
            text-align: left;
        }
    
        .event-info span {
            display: flex;
            justify-content: flex-start;
        }
    
        .event-logo {
            width: 100px;
        }
    
        .hero-form {
            display: none;
        }
        
        .hero-left h1 {
            font-size: 22px;
            line-height: 1.35;
            margin-bottom: 15px;
        }
    
        .event-info {
            font-size: 14px;
            gap: 8px;
        }
    }

    @media (max-width:500px) {
        .hero-form {
            width: 90%;
        }

        .hero-form-row {
            flex-direction: column;
        }
    }
    
    

    /* form SECTION start */
    .bf-contact-wrapper {
      padding: 60px 15px;
      background: #2b2b2b;
      color: #fff;
    }
    
    /* HEADING */
    .bf-contact-heading {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .bf-contact-heading h2 {
      font-size: 38px;
      color: #ff7a00;
      font-weight: 800;
    }
    
    .bf-contact-heading p {
      font-size: 15px;
      color: #ddd;
    }
    
    /* CONTAINER */
    .bf-contact-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    
    /* VIDEO */
    .bf-contact-video {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }
    
    .bf-contact-video video {
      width: 100%;
      height: 450px;
      object-fit: cover;
    }
    
    .bf-contact-video::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    }
    
    /* FORM (same as before) */
    .input-group {
      display: flex;
      align-items: center;
      background: #e5e5e5;
      border-radius: 6px;
      margin-bottom: 18px;
      overflow: hidden;
    }
    
    .input-group i {
      padding: 14px;
      background: #d0d0d0;
      color: #ff7a00;
      min-width: 45px;
      text-align: center;
    }
    
    .input-group input,
    .input-group textarea {
      width: 100%;
      padding: 14px;
      border: none;
      outline: none;
      font-size: 15px;
      background: transparent;
    }
    
    textarea {
      resize: none;
    }
    
    /* BUTTON */
    .bf-contact-form-area button {
      width: 100%;
      background: transparent;
      border: 2px solid #ff7a00;
      color: #ff7a00;
      padding: 14px;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 700;
      transition: 0.3s;
    }
    
    .bf-contact-form-area button:hover {
      background: #ff7a00;
      color: #fff;
    }
    
    /* RESPONSIVE */
    @media (max-width: 992px) {
      .bf-contact-container {
        grid-template-columns: 1fr;
      }
    
      .bf-contact-video video {
        height: 350px;
      }
    }
    
    @media (max-width: 600px) {
      .bf-contact-heading h2 {
        font-size: 26px;
      }
    
      .bf-contact-video video {
        height: 250px;
      }
    }
    /* form SECTION end */
    

    ul {
        list-style: none;
        margin-top: 20px;
    }

    .contact-head-info {
        text-align: right;
        margin-left: auto;
        margin-top: 5px;
    }


    /* ===== GALLERY SPACING FIX ===== */
    .gallery-section {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;

        padding: 20px 30px;
        /* 🔥 top-bottom | left-right */
        margin: 30px auto;
        /* 🔥 space above & below section */
        box-sizing: border-box;
    }


    .gallery-section .gallery-image {
        flex: 0 0 calc(25% - 20px);
        /* 🔥 4 images in a row */
        max-width: calc(25% - 20px);
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        border: 3px solid #ffffff;
    }

    .gallery-section .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Lightbox Background */
    .lightbox {
        display: none;
        position: fixed;
        z-index: 9999;
        padding: 40px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        justify-content: center;
        align-items: center;
    }

    /* Lightbox Image */
    .lightbox img {
        width: 50vw;
        /* almost full screen width */
        height: 50vh;
        /* almost full screen height */
        object-fit: contain;
        /* full image visible without crop */
        border-radius: 8px;
    }

    /* Close Button */
    .close-btn {
        position: absolute;
        top: 20px;
        right: 40px;
        font-size: 40px;
        color: white;
        cursor: pointer;
    }

    /* Zoom Animation */
    @keyframes zoomIn {
        from {
            transform: scale(0.7);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    /*start banner button*/
    .cta-wrapper {
        text-align: center;
        margin-top: 10px;
    }

    .description p {
        color: white;
    }

    .cta-button {
        display: inline-block;
        font-size: 15px;
        font-weight: 600;
        padding: 13px 23px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        margin: 8px 10px;
    }

    /* Primary Button */
    .primary-btn {
        background: #FF8C00;
        color: #fff;
        box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
        border: 2px solid #FF8C00;
    }

    .primary-btn:hover {
        box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
        transform: translateY(-2px);
        color: #fff;
    }

    /* Secondary Button */
    .secondary-btn {
        background: transparent;
        color: white;
        border: 2px solid #17a2b8;
    }

    .secondary-btn:hover {
        background: #17a2b8;
        ;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
    }

    /* Responsive */
    @media (max-width: 600px) {
        .cta-button {
            display: block;
            margin: 10px auto;
            width: 60%;
            font-size: 14px;
            padding: 8px 0px;
        }
    }

    /*end banner button*/


    /* Hover Effect */
    .gallery-section .gallery-image:hover {
        transform: scale(1.05);
    }

    .banner-content {
        padding-top: 0px;
    }

    /* Banner Background */
    .banner {
        background: url("https://fastly.picsum.photos/id/234/1600/900.jpg?hmac=4WxVOKLCwhs1ANy9DAir2gThXbRqX9FyMaBlLRtm5gw") no-repeat center center/cover;
        color: #ffffff;
        text-align: center;
        padding: 30px 20px;
        position: relative;
    }

    /* Overlay */
    .banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    /* Banner Content */
    .banner-content {
        position: relative;
        z-index: 2;
        /*max-width: 600px;*/
        margin: auto;
    }

    /*img.logo {*/
    /* border-radius: 75px;*/
    /*}*/

    .circle-logo {
        width: 150px;
        /* Adjust width as needed */
        height: 150px;
        /* Adjust height as needed */
        border-radius: 50%;
        /* Makes the container circular */
        background-color: white;
        /* Adds white background */
        padding: 10px;
        /* Adds spacing between image and circular background */
        border: 1px solid #ccc;
        /* Optional: Adds a subtle border */
        display: flex;
        /* Enables flexbox for centering */
        justify-content: center;
        /* Horizontally centers the content */
        align-items: center;
        /* Vertically centers the content */
        margin: 0 auto;
        /* Centers the circle container itself */
        box-sizing: border-box;
        /* Includes padding and border in the element's dimensions */
    }

    .circle-logo img {
        max-width: 100%;
        /* Ensures the image fits within the container */
        max-height: 100%;
        /* Ensures the image fits within the container */
        object-fit: contain;
        /* Ensures the logo fits perfectly without distortion */
        display: block;
        /* Removes inline spacing issues */
    }

    h1 {
        font-size: 32px;
        font-weight: bold;
        color: #ff8c00;
        margin: 8px 0px 5px 0px;
    }

    h3 {
        font-size: 18px;
        font-weight: 600;
        margin: 6px 0px 8px 0px;
    }

    /* Event Details */
    .event-details {
        font-size: 16px;
        margin-bottom: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #ffffff;
    }

    .event-details .event-date,
    .event-details .event-location {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .event-details span {
        display: flex;
        align-items: center;
        gap: 5px;
        font-weight: 700;
    }

    .event-details i {
        font-size: 20px;
    }

    /* ===== GENERAL SECTION ===== */
    .exhibition-section {
        display: flex;
        flex-direction: column;
        /* 🔥 vertical layout */
        padding: 24px 30px;
        position: relative;
        gap: 30px;
        /* content–form spacing */
    }


    /* Left Content Styling */
    .exhibition-content {
        width: 100%;
    }

    .exhibition-content h2 {
        font-size: 28px;
        color: #ff8c00;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .exhibition-content p {
        font-size: 18px;
        line-height: 1.6;
        color: #333;
        margin-bottom: 15px;
    }

    /* Style for the select dropdown to match input fields */
    .quotation-form select {
        width: 100%;
        padding: 12px 15px;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 18px;
        /* Same as input fields */
        font-size: 16px;
        transition: border-color 0.2s ease-in-out;
        background-color: #fff;
        /* White background to match input */
        appearance: none;
        /* Removes default dropdown arrow for custom styling */
    }

    /* Add focus effect to match input fields */
    .quotation-form select:focus {
        outline: none;
        border-color: #ff6600;
        box-shadow: 0 0 5px rgba(255, 102, 0, 0.2);
    }

    /* Optional: Style the dropdown arrow for a consistent look */
    .quotation-form select::after {
        content: "▼";
        position: absolute;
        right: 15px;
        pointer-events: none;
    }

    /* Add placeholder-like effect for the default option */
    .quotation-form select option[value=""][disabled] {
        color: #aaa;
    }

    /* Ensuring text alignment and readability */
    .quotation-form select {
        text-align-last: left;
        /* Align selected text to the left */
        color: #333;
        /* Consistent text color */
    }

    /* Bullet Points Styling within Exhibition Content */
    .exhibition-content .bullet-points {
        list-style-type: disc;
        padding-left: 35px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .exhibition-content .bullet-points li {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    /* Right Form Styling */
    .quotation-form {
        width: 100%;
        background-color: #FFEBCD;
        color: #333;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    .quotation-form h3 {
        font-size: 18px;
        color: #333;
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .quotation-form input[type="text"],
    .quotation-form input[type="email"],
    .quotation-form input[type="tel"],
    .quotation-form textarea {
        width: 100%;
        padding: 10px 13px;
        margin-bottom: 10px;
        border: 1px solid #ddd;
        border-radius: 18px;
        font-size: 16px;
        transition: border-color 0.2s ease-in-out;
    }

    .quotation-form input[type="text"]:focus,
    .quotation-form input[type="email"]:focus,
    .quotation-form input[type="tel"]:focus,
    .quotation-form textarea:focus {
        outline: none;
        border-color: #ff6600;
        box-shadow: 0 0 5px rgba(255, 102, 0, 0.2);
    }

    .quotation-form input::placeholder,
    .quotation-form textarea::placeholder {
        color: #aaa;
    }

    .quotation-form textarea {
        resize: vertical;
        height: 80px;
    }

    .quotation-form input[type="submit"] {
        background-color: #ff6600;
        color: #ffffff;
        font-weight: bold;
        padding: 12px;
        width: 100%;
        border: none;
        border-radius: 18px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s ease;
    }

    .quotation-form input[type="submit"]:hover {
        background-color: #e05c00;
    }

    /* Features Section Styling */
    .features-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        background-color: #595C5E;
        padding: 20px 40px;
        color: white;
        gap: 15px;
    }

    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 23%;
        padding: 10px;
        position: relative;
        transition: background-color 0.3s ease;
    }

    .feature-item i {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .features-section a.feature-item {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-item h3 {
        font-size: 21px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .feature-item p {
        font-size: 17px;
        line-height: 2.0;
        font-weight: 600;
    }

    .feature-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -10px;
        top: 10%;
        height: 80%;
        width: 1px;
        background-color: #ffffff;
        opacity: 0.6;
    }

    /*portfolio start */
    .dropcap {
        float: left;
        font-size: 40px;
        font-weight: 800;
        margin-right: 12px;
        line-height: 0.8;
    }

    /* PORTFOLIO */
    .portfolio-section {
        padding: 0px 20px 30px;
    }

    .portfolio-title {
        text-align: center;
        font-size: 26px;
        font-weight: bold;
        margin: 0px 0 18px;
        color: #ff8c00;
    }

    .gallery {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }

    .gallery img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }

    /*portfolio end */

    /*FAQ Start*/
    .faq-container {
        margin: 0 auto;
        overflow: hidden;
        position: relative;
    }

    .faq-content-wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    .faq-image-section {
        overflow: hidden;
        height: auto;
        /* ⭐ FIX: remove forced height */
        max-height: 700px;
        /* ⭐ optional limit if you want smaller section */
    }

    .faq-image-section img {
        width: 100%;
        /* ⭐ full responsive width */
        height: auto;
        /* ⭐ maintain aspect ratio */
        display: block;
        object-fit: contain;
        /* ⭐ ensures NO CROP */
    }

    .faq-questions-section {
        flex: 1 1 50%;
    }

    .faq-header {
        padding: 8px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(5deg);
        }
    }

    .faq-header h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 2;
    }

    .faq-header p {
        font-size: 1.2rem;
        opacity: 0.9;
        position: relative;
        z-index: 2;
    }

    .faq-content {
        padding: 40px 40px;
    }

    .faq-item {
        margin-bottom: 20px;
        border: 2px solid #f0f0f0;
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        background: white;
    }

    .faq-item:hover {
        border-color: #6B73FF;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(107, 115, 255, 0.15);
    }

    .faq-item.active {
        border-color: #6B73FF;
        box-shadow: 0 8px 25px rgba(107, 115, 255, 0.2);
    }

    .faq-question {
        padding: 15px 25px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #f9faff;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .faq-question::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(107, 115, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .faq-item:hover .faq-question::before {
        left: 100%;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        font-weight: 500;
        color: #333;
        flex-grow: 1;
        position: relative;
        z-index: 2;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ffcc6b 0%, #FF4500 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
        flex-shrink: 0;
        margin-left: 15px;
    }

    .faq-icon::before,
    .faq-icon::after {
        content: '';
        position: absolute;
        width: 12px;
        height: 2px;
        background: white;
        border-radius: 1px;
        transition: all 0.3s ease;
    }

    .faq-icon::after {
        transform: rotate(90deg);
    }

    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq-item.active .faq-icon::after {
        opacity: 0;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        background: white;
    }

    .faq-answer.active {
        max-height: 300px;
    }

    .faq-answer-content {
        padding: 0 30px 25px 30px;
        color: #555;
        line-height: 1.7;
        font-size: 1rem;
    }

    .stats {
        display: flex;
        justify-content: space-around;
        margin-top: 40px;
        padding: 30px;
        background: #f9faff;
        border-radius: 15px;
        border: 1px solid #e8eaff;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: #6B73FF;
        display: block;
    }

    .stat-label {
        color: #666;
        font-size: 0.9rem;
        margin-top: 5px;
    }

    /*desktop view for form input field divide css*/
    @media (min-width: 769px) {

        .quotation-form form {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            column-gap: 15px;
            row-gap: 10px;
        }

        /* Full-width fields */
        .quotation-form textarea,
        .quotation-form input[type="submit"] {
            grid-column: span 2;
        }
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {

        .features-section {
            flex-wrap: wrap;
        }

        .feature-item {
            width: 48%;
        }

        /* 🔥 GALLERY */
        .gallery-section .gallery-image {
            flex: 0 0 calc(25% - 20px);
            /* 4 images */
            max-width: calc(25% - 20px);
        }

        .gallery {
            grid-template-columns: repeat(4, 1fr);
        }
    }


    @media (max-width: 768px) {

        /* Mobile View */
        .features-section {
            gap: 20px;
        }

        .feature-item {
            width: 48%;
            margin-bottom: 15px;
        }

        /* 🔥 GALLERY */
        .gallery-section {
            padding: 20px 15px;
            gap: 15px;
        }

        .gallery-section .gallery-image {
            flex: 0 0 calc(50% - 15px);
            /* 2 images */
            max-width: calc(50% - 15px);
        }

        .event-details {
            font-size: 13px;
        }

        .circle-logo {
            width: 100px;
            height: 100px;
            padding: 8px;
        }

        .exhibition-content h2 {
            font-size: 20px;
        }

        .quotation-form h3 {
            font-size: 15px;
            margin-bottom: 16px;
        }

        .portfolio-title {
            font-size: 22px;
            margin-bottom: 16px;
        }

        .gallery {
            grid-template-columns: repeat(3, 1fr);
        }

        .faq-question h3 {
            font-size: 1rem;
            line-height: 1.3;
        }

        .banner {
            padding: 20px 15px;
        }

        .banner-content h1 {
            font-size: 16px;
        }

        .banner-content p.description {
            font-size: 16px;
        }

        .quotation-form {
            width: 100%;
            padding: 20px;
        }

        .exhibition-section {
            flex-direction: column;
            padding: 20px;
        }

        .exhibition-content,
        .quotation-form {
            width: 100%;
        }

        .features-section {
            gap: 10px;
        }

        .feature-item:not(:last-child)::after {
            display: none;
        }

        /* faq */
        .faq-content-wrapper {
            flex-direction: column;
        }

        .faq-image-section {
            display: none;
        }

        .faq-questions-section {
            flex: 1 1 100%;
        }

        .faq-header {
            padding: 10px 15px;
        }

        .faq-header h1 {
            font-size: 2.2rem;
        }

        .faq-content {
            padding: 0px 0px;
        }

        .faq-question {
            padding: 13px;
        }

        .faq-answer-content {
            padding: 0 20px 20px 20px;
        }

        .stats {
            flex-direction: column;
            gap: 20px;
        }
    }


    @media (max-width: 480px) {

        /* 🔥 GALLERY */
        .gallery-section {
            padding: 15px;
        }

        .gallery-section .gallery-image {
            flex: 0 0 100%;
            /* 1 image */
            max-width: 100%;
        }

        .feature-item h3 {
            font-size: 18px;
        }

        .feature-item i {
            font-size: 30px;
        }

        .banner-content p.description {
            font-size: 14px;
        }

        .exhibition-content .bullet-points {
            margin-bottom: 30px;
        }
    }
