* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont,
        'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; */
    font-family: 'Plus Jakarta Sans';
    background: #fff;
    color: #000;
    overflow-x: hidden;
    padding: 20px;
}

:root {
    --header-height: 76px;
}

/* Hero */
.hero-section {
    background: #f5f5f5;
    overflow-x: hidden;
}

/* Header */
header {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 12px 100px;
    background: #f5f5f5;
    position: relative;
    z-index: 1000;
}

header .logo img {
    height: 50px;
    width: auto;
    cursor: pointer;
    padding: 10px 16px;
}

.desktop-btn {
    display: block;
}

.hamburger {
    font-size: 28px;
    cursor: pointer;
    display: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.get-started-btn {
    font-family: "Plus Jakarta Sans";
    font-weight: 600;
    background: #000;
    color: #fff;
    padding: 10px 26px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-right: 50px;
}
.arrow {
    margin-left: 12px; 
    transition: transform 0.3s;
}


.get-started-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu-logo {
    display: none;
}

.mobile-menu-logo img {
    height: 30px;
}

.close-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 0;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    text-align: left;
}

 .get-started-btn {
        display: block;
    }

@media (max-width: 900px) {

    header {
        padding: 12px 20px;
        justify-content: space-between;
    }

    .hamburger {
        display: block;
        font-size: 30px;
        cursor: pointer;
    }

    .get-started-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
        font-size: 16px;
        font-weight: 600;
        text-align: left;
        width: 100%;
        padding: 15px 0 0 0;
        border: none;
        background: none;
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #f5f5f5;
        display: flex;
        flex-direction: column;
        padding: 30px 25px;
        gap: 25px;
        transition: all 0.4s ease;
        opacity: 0;
        z-index: 9999;
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
    }

    .menu-top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
    }

    .mobile-menu-logo img {
        height: 30px;
    }

    .close-menu {
        display: block;
        font-size: 32px;
        cursor: pointer;
    }

    .nav-links a {
        font-size: 17px;
        font-weight: 600;
        text-decoration: none;
        color: #000;
        width: 100%;
    }

    body.no-scroll {
        overflow: hidden;
    }

   .desktop-btn {
        display: none;
    }

}

/* HERO SECTION  */
.hero {
    display: flex;
    align-items: center;
    padding: 100px 0 120px;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    margin-top: 30px;
}

.hero-inner {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    padding-left: 100px;
    z-index: 1;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0px;
    width: 60%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    padding: 0px;
    display: block;
    max-width: 1300px;
}

.hero-button {
    font-family: "Plus Jakarta Sans";
    font-weight: 600;
    background: #000;
    color: #fff;
    padding: 10px 26px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-right: 50px;
}
.arrow {
    margin-left: 12px; 
    transition: transform 0.3s;
}


@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 30px;
        min-height: auto;
        margin-top: 20px;
    }

    .hero-content {
        padding-left: 0;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 250px;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .hero-button {
        align-items: center;
        font-size: 12px;      
        padding: 8px 18px;     
        margin-right: 20px;    
        border-radius: 20px;   
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .hero-image {
        height: 200px;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Logo Carousel Section */
.clients-title {
    color: #777;
    max-width: 1300px;
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: baseline;
    padding-left: 100px;
    padding-right: 20px;
    margin: 0 auto;
}

.logo-carousel {
    overflow: hidden;
    background: #fff;
    padding: 20px 0;
}


.carousel-wrapper {
    display: flex;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 40px;
    animation: scroll 12s linear infinite;
}

.carousel-track img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* About  */
.excellence-section {
    background: #fff;
    display: flex;
    gap: 0px;
    align-items: baseline;
    justify-content: center;
    padding: 80px 20px;
}

.excellence-container {
    max-width: 1300px;
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: baseline;
    padding-left: 100px;
    padding-right: 20px;
    margin: 0 auto;
}

.excellence-left {
    padding-right: 20px;
    flex: 1;
}

.excellence-right {
    flex: 1;
}

.excellence-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #000;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 0.6s forwards;
}

.excellence-section h2 {
    font-size: 48px;
    line-height: 1.2;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 0.6s 0.2s forwards;
}

.excellence-tags {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 0.6s 0.4s forwards;
}

.tag {
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 13px;
}

.excellence-section p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeIn 0.6s 0.6s forwards;
}

@media (max-width: 1300px) {
    .excellence-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .excellence-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .excellence-left,
    .excellence-right {
        width: 100%;
        padding: 0;
    }

    .excellence-section h2 {
        font-size: 28px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .excellence-tags h3 {
        font-size: 24px;
        max-width: 100%;
        margin: 0;
        line-height: 1.2;
    }

    .excellence-section p {
        font-size: 14px;
        max-width: 100%;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .excellence-section h2 {
        font-size: 24px;
    }

    .excellence-tags h3 {
        font-size: 20px;
    }

    .excellence-section p {
        font-size: 13px;
        line-height: 1.4;
    }

    .excellence-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Operations Section */
.operations-section {
    padding: 110px 60px;
    background: #f5f5f5;
    text-align: center;
    overflow: hidden;
}

.operations-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #000;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
}

.operations-section h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 60px;
}

.features-wrapper {
    display: flex;
    overflow: visible;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0;
    position: relative;
}

.features-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    animation: scrollFeatures 45s linear infinite;
    padding: 0;
}

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

/* Feature Card */
.feature-card {
    text-align: left;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: 380px;
    height: 300px;                
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0;
}

.feature-card h3 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .operations-section {
        padding: 60px 20px;
    }

    .operations-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .features-track {
        gap: 20px; 
    }


    .feature-card {
        width: 380px;
        height: 300px;
        padding: 40px;
        border-radius: 16px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 14px;
    }
}


@media (max-width: 480px) {
    .feature-card {
        width: 380px;
        height: 300px;
        padding: 40px;
    }
}



/* SmartAuction Section */
.smartauction-section {
    padding: 80px 20px;
    background: url("assets/images/Solution Section/Smart Auction/background.png") no-repeat center center / cover;
    border-radius: 28px;
    color: #fff;
    margin-bottom: 60px;
}

.smartauction-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding-left: 100px;
    padding-right: 20px;

}

.smartauction-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.solutions-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
    width: fit-content;
}

.smartauction-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

.smartauction-badge {
    position: relative;
    top: auto;
    left: auto;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    width: fit-content;
    display: none;
}

.smartauction-image-wrapper {
    max-width: 420px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: none;
}

.smartauction-image-wrapper img {
    width: 100%;
    display: block;
}

.smartauction-right {
    flex: 1;
}

.smartauction-right h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 28px;
   
    
}

.sub-title {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 600;
}

.auction-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auction-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.bullet-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 4px;
}

.auction-list li div {
    font-size: 16px;
    line-height: 1.5;
}

.auction-list li strong {
    font-size: 17px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .smartauction-content {
        flex-direction: column;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        gap: 30px;
    }


    .smartauction-left,
    .smartauction-right {
        width: 100%;
        align-items: center;
    }

    .smartauction-image-wrapper {
        margin: 0 auto;

    }

    .smartauction-right h1 {
        font-size: 28px;
    }

    .smartauction-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .smartauction-left h1 {
        font-size: 32px;
    }

    .auction-list li {
        justify-content: center;
    }
}

/*smartflow-section*/
.smartflow-section {
    padding: 80px 20px;
    background: url("assets/images/Solution Section/Smart Flow/background.png") no-repeat center center / cover;
    border-radius: 28px;
    color: #fff;
    margin-bottom: 60px;
}

.smartflow-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: auto;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding-left: 100px;
    padding-right: 20px;



}

.smartflow-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 0px;
    position: relative;

}

.solutions-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
    width: fit-content;
}

.smartflow-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
    padding-left: 0px;
}

.smartflow-badge {
    position: relative;
    top: auto;
    left: auto;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    width: fit-content;
    display: none;
}

.smartflow-image-wrapper {
    max-width: 420px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: none;
}

.smartflow-image-wrapper img {
    width: 100%;
    display: block;
}

.smartflow-right {
    flex: 1;
}

.smartflow-right h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.smartflow-right .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}


.smartflow-right .text-wrapper .intro-text {
    margin: 0;
    padding-top: 110px;
}

.intro-text {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 28px;
   
}

.sub-title {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 600;
}

.auction-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auction-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.bullet-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 4px;
}

.auction-list li div {
    font-size: 16px;
    line-height: 1.5;
}

.auction-list li strong {
    font-size: 17px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .smartflow-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .smartflow-badge {
        left: 50%;
        transform: translateX(-50%);
        top: -10px;
    }

    .smartflow-left h1 {
        font-size: 32px;
    }

    .smartflow-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }


    .auction-list li {
        justify-content: center;
    }


    .smartflow-right h1 {
        font-size: 28px;
    }

    .intro-text,
    .sub-title {
        text-align: center;
    }

     .smartflow-right .text-wrapper .intro-text {
        padding-top: 0;   
    }


    .auction-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .auction-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .bullet-icon {
        margin: 0;
    }

    .auction-list li div {
        text-align: center;
    }
}



/* BLOG SECTION*/

.blog-section {

    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.blog-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding-left: 100px;
    padding-right: 20px;
}

.blog-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid black;
    font-size: 14px;
}

.blog-section h2 {
    margin: 20px 0 40px;
    font-size: 48px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 35px;

}

.blog-card {
    width: 100%;
}

.blog-image {
    width: 100%;
    height: 200px;
    background: #ddd;
    border-radius: 12px;
}

.blog-content {
    margin-top: 14px;
}

.category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.category.tips .type {
    color: #00C896;
}

.category.events .type {
    color: #FF4CC6;
}

.category.artist .type {
    color: #9A6BFF;
}

.category .date {
    color: #7b7b7b;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 18px;
    line-height: 1.45;
    margin: 6px 0;
}

.read-time {
    font-size: 12px;
    color: #777;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-container {
        padding: 0 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .blog-card {
        max-width: 330px;
    }

    .blog-image {
        height: 250px;
    }

    .blog-card h3 {
        font-size: 20px;
        line-height: 1.5;
    }
}




/* FAQ SECTION  */

.faq-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.faq-container {
    max-width: 1300px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-left: 100px;
    padding-right: 20px;
}

.faq-left {
    flex: 1;
    padding-left: 0px;
}

.faq-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid black;
    font-size: 14px;
}

.faq-left h2 {
    margin: 20px 0;
    font-size: 48px;
}

.faq-description {
    color: #777;
    line-height: 1.7;
    max-width: 330px;
}

.faq-small-text {
    margin-top: 40px;
    color: #666;
}

.contact-btn {
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid black;
    background: white;
    cursor: pointer;
    text-decoration: underline;
}

.faq-right {
    flex: 1;
}

.faq-item:first-child {
    border-top: 1px solid #0e0202;
}

.faq-item {
    border-bottom: 1px solid #0e0202;
    padding: 20px 0;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 26px;
    font-weight: bold;
    transition: 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    line-height: 1.6;
    color: #666;
    margin-top: 10px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    content: "–";
}

@media (max-width: 768px) {

    .faq-section {
        padding: 60px 20px;
        text-align: left;
    }

    .faq-container {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        gap: 40px;
    }

    .faq-left {
        width: 100%;
        margin: 0;
        text-align: left;
    }

    .faq-right {
        width: 100%;
    }

    .faq-left h2 {
        font-size: 32px;
    }

    .faq-description,
    .faq-small-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .faq-item {
        padding: 15px 0;
    }

    .faq-question {
        font-size: 16px;
        font-weight: 600;
    }

    .faq-answer {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 20px;
        gap: 30px;
    }

    .faq-left h2 {
        font-size: 24px;
    }

    .faq-description,
    .faq-small-text {
        font-size: 13px;
        line-height: 1.4;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
        line-height: 1.4;
    }
}


/* FOOTER */
.footer {
    padding: 80px 20px;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1300px;
    height: 1px;
    background: #0e0202;


}

.footer-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding-left: 100px;
    padding-right: 20px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.footer-left {
    max-width: 450px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-text {
    color: #666;
    line-height: 1.7;
    margin-top: 10px;
}

.footer-company {
    margin-top: 20px;
    color: #444;
}

.footer-social {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 25px;
}

.footer-social img {
    width: 40px;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}

.scroll-to-top {
    position: fixed;
    right: 40px;
    bottom: 60px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: #333;
    transform: translateY(-5px);
}

@media (max-width: 900px) {
    .footer {
        padding: 60px 20px;
    }


    .footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-social {
        position: static;
        justify-content: flex-start;
        margin-top: 20px;
    }

    .scroll-to-top {
        right: 20px;
        bottom: 40px;
    }
}

@media (max-width: 600px) {
    .footer-social {
        justify-content: center;
    }

    .footer-left {
        text-align: center;
        max-width: 100%;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .scroll-to-top {
        right: 15px;
        bottom: 30px;
    }
}


@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 30px;
    }

    nav {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 40px 30px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .product-section {
        flex-direction: column;
        padding: 40px 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .operations-section h2,
    .blog-section h2,
    .faq-section h2,
    .product-section h2,
    .excellence-section h2 {
        font-size: 32px;
    }
}

/* Page Load Popup Effect */
.reveal-section {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-section.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
