* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #fff;
}

/* Nav Section */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 74px;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.nav-links sup {
    font-size: 9px;
    vertical-align: super;
}

.menu-wrapper {
    position: static;
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 14px;
    width: 22px;
    cursor: pointer;
    padding: 10px 0;
    box-sizing: content-box;
}

.menu-icon .bar {
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #f0f0f0;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 0;
    display: block;
    width: 100%;
    text-align: right;
    transition: color 0.2s;
}

.dropdown-menu a:hover {
    color: #000;
    font-weight: 600;
}

.dropdown-menu .divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

.menu-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-wrapper:hover .menu-icon .bar:nth-child(2) {
    opacity: 0.5;
}

/* Ticker Section */
.ticker-section {
    background-color: #252525;
    color: #fff;
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ticker-item strong {
    font-weight: 700;
    text-decoration: underline;
    margin: 0 3px;
}

.star {
    color: #fbb03b;
    font-size: 26px;
    margin-right: 15px;
    padding-bottom: 5px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-content:hover {
    animation-play-state: paused;
}


/* Hero Section */
.hero-section {
    display: flex;
    height: calc(100vh - 74px - 44px);
    min-height: 550px;
    width: 100%;
}

.hero-text-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
    background-color: #fff;
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.initializing {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.hero-heading {
    font-size: 38px;
    line-height: 1.25;
    color: #283891;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.sub-heading {
    font-size: 38px;
    color: #333;
    font-weight: 300;
    margin-top: 5px;
}

.hero-image-container {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-image-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Econsystem Section */
.ecosystem-section {
    min-height: 100vh;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.ecosystem-header h2 {
    font-weight: 300;
    font-size: 22px;
    margin-bottom: 35px;
    line-height: 1.4;
    color: #444;
    letter-spacing: 0.3px;
}

.brand-blue {
    color: #005eb8;
    font-weight: 700;
}

sup {
    font-size: 0.6em;
    vertical-align: super;
}

.ecosystem-grid {
    display: grid;
    width: 100%;
    grid-template-columns: 1.2fr 1.8fr 0.9fr 0.9fr;
    grid-template-rows: 160px 160px;
    gap: 12px;
    margin-bottom: 30px;
}

.grid-item {
    position: relative;
    border-radius: 12px;
    background-color: #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    width: 100%;
    padding: 12px 15px;
    pointer-events: none;
    z-index: 2;
}

.item-overlay h3 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.bottom-text {
    bottom: 0;
    left: 0;
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.top-text {
    top: 0;
    left: 0;
    text-align: left;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
}

.item-offline {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.item-pm {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.item-tablet {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.item-lock {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.item-financial {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.item-safety {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
}

.ecosystem-footer p {
    font-size: 22px;
    font-weight: 300;
    color: #444;
}

/* Smart Hat Section */
.smarthat-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-image: url('https://www.proxgy.com/assets/products/pro-y/smartHat_product.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.awards-container {
    position: absolute;
    top: 0;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.award-img {
    width: 70px;
    height: auto;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-title {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-60%);
    z-index: 5;
    text-align: center;
}

.hero-title h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    font-style: italic;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-title sup {
    font-size: 0.4em;
    font-weight: 400;
    font-style: normal;
    top: -1.2em;
    position: relative;
}

.hero-description {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 5;
    text-align: right;
}

.hero-description h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-solid-white {
    background-color: #ffffff;
    color: #000000;
    border: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-solid-white:hover {
    background-color: #f2f2f2;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #000000;
    color: #000000;
    box-shadow: none;
}

.btn-outline:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* Sleefe Section  */
.sleefe-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.award-container {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.award-img {
    width: 100px;
    height: auto;
    display: block;
}

.content-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.product-title {
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.product-title sup {
    font-size: 0.4em;
    top: -0.8em;
    position: relative;
    font-weight: 400;
}

.image-wrapper {
    width: 100%;
    max-width: 700px;
}

.main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.action-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 35px;
    min-width: 160px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #000000;
    color: #000000;
}

.btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ProHat Section */
.prohat-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    overflow: hidden;
}

.top-logo-container {
    margin-bottom: 15px;
}

.prohat-logo {
    width: 160px;
    height: auto;
    display: block;
}

.content-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.image-wrapper {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
    max-width: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.small-logo {
    width: 60px;
    height: auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.action-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 35px;
    min-width: 160px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #000000;
    color: #000000;
}

.btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Lockator Section */
.lockator-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

.content-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.product-title {
    font-size: 52px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.product-title sup {
    font-size: 0.4em;
    top: -0.8em;
    position: relative;
    font-weight: 400;
}

.image-wrapper {
    margin-bottom: 50px;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.action-buttons {
    display: flex;
    gap: 25px;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 40px;
    min-width: 170px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #000000;
    color: #000000;
}

.btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}


/* AudioPod Section */
.audiopod-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

.content-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.product-title {
    font-size: 50px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.product-title sup {
    font-size: 0.4em;
    top: -0.8em;
    position: relative;
    font-weight: 400;
}

.image-wrapper {
    margin-bottom: 60px;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
}

.main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.action-buttons {
    display: flex;
    gap: 25px;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 40px;
    min-width: 170px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #000000;
    color: #000000;
}

.btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* AirHat Section */
.airhat-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

.content-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.product-title {
    font-size: 54px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.product-title sup {
    font-size: 0.4em;
    top: -0.8em;
    position: relative;
    font-weight: 400;
}

.image-wrapper {
    margin-bottom: 0;
    width: 100%;
    max-width: 700px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.action-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 50px;
    min-width: 160px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #000000;
    color: #000000;
}

.btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}


/* hatPlus Section */
.hatplus-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("https://www.proxgy.com/assets/products/hatPlus/product.png");
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-overlay {
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hatplus-logo {
    width: 160px;
    height: auto;
    display: block;
}

.hatplus-section .action-buttons {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 30px;
    min-width: 150px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    border: 1px solid #333;
    color: #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


/* BirdBox Section */
.birdbox-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

.content-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.product-title {
    font-size: 52px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.product-title sup {
    font-size: 0.4em;
    top: -0.8em;
    position: relative;
    font-weight: 400;
}

.image-wrapper {
    margin-bottom: 40px;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
}

.action-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-outline {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 14px 50px;
    min-width: 160px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #000000;
    color: #000000;
    box-shadow: none;
}

.btn-outline:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* Frakoin Section */
.frakoin-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

.brand-title {
    font-size: 42px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10vh;
    letter-spacing: 0.5px;
    text-align: center;
}

.blue-text {
    color: #1a237e;
    font-weight: 500;
}

.image-wrapper {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15));
    border-radius: 4px;
}

/* Architecture Section  */
.architecture-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.flow-chart-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Clients Section */
.clients-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 32px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.client-logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.client-logo {
    max-width: 180px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}


/* showcase-section */
.showcase-section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-image: url("https://www.proxgy.com/assets/images/revamped/homepage/productBgImage.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
}

.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 8%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 500px;
}

.feature-list li {
    font-size: 20px;
    font-weight: 300;
    color: #d1d1d1;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* Footer Bar */
.footer-bar {
    background-color: #0d0d0d;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1a1a1a;
    position: relative;
    z-index: 10;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.copyright {
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.disclaimer {
    color: #aaaaaa;
    font-size: 10px;
    font-weight: 300;
}

.footer-center {
    display: flex;
    gap: 40px;
}

.footer-center a {
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s;
}

.footer-center a:hover {
    opacity: 0.7;
}

.footer-right {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: #e6e6e6;
}