

body {
    font-family: Ebrima;
}

:root {
    --font-sans: "myfont", sans-serif;
    --color-gradient-blue: #1877f2f0;
    --color-brand-pure-white: #fff;
    --bg-gradient: linear-gradient(25deg, var(--color-gradient-blue) 10%, var(--color-brand-pure-white) 45%);
}

* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    color: #000;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ad-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    margin: auto !important;
    font-size: 10px;
    color: rgba(128, 128, 128, 0.497);
    border: 1px rgba(128, 128, 128, 0.482) solid;
    width: 100%;
}

.gptslot {
    min-height: 250px;
}

.bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-gradient);
    z-index: -10;
    pointer-events: none;
}

.site-header {
    border-bottom: 1px solid #e5e7eb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 99;

}

.header-container {

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 60px;
}

.header-spacer {
    width: 100%;
}

.header-logo h1 {
    font-size: 20px;
    font-weight: 800;
    color: #1976d2;
    white-space: nowrap;
    letter-spacing: 0.5px;
    margin-left: 20px;
}

.header-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    justify-self: end;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
    padding: 0 20px;
    border-left: 1px solid #e5e7eb;
    line-height: 60px;
    font-size: 14px;
}

.nav-link:hover {
    text-decoration: underline;
}

.nav-link.active {
    color: #1565c0;
    text-decoration: none;
}

.menu-btn {
    display: none;
}

.mobile-menu {
    display: none;
}

.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #1976d2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    width: 40px;
    aspect-ratio: 1;
    margin: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}

.search-btn:hover {
    background-color: rgba(25, 118, 210, 0.1);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    position: fixed;
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 40%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.search-bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    gap: 12px;
}

.search-icon {
    color: #9ca3af;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.search-input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
    border: none;
    outline: none;
    font-size: 24px;
    color: #374151;
    background: transparent;
}

.search-input::-webkit-input-placeholder {
    color: #9ca3af;
}

.search-input::-moz-placeholder {
    color: #9ca3af;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-esc-btn {
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
}

.search-results {
    max-height: 60vh;
    overflow: auto;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    text-align: center;
}

.no-results {
    font-size: 24px;
    color: #9ca3af;
    grid-column: span 4 / span 4;
}

.search-footer {
    padding: 16px 20px;
    text-align: right;
    color: #9ca3af;
    font-size: 16px;
}

.footer-container {
    padding: 10px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.site-footer {
    padding: 40px 0 20px;
}

.footer-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 20px auto;
}

.footer-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    gap: 20px;
}

.footer-heading {
    font-weight: 600;
    color: #000000;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    gap: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    gap: 16px;
}

.footer-links a {
    text-decoration: none;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.footer-links a.active {
    color: #0b70d8;
    font-weight: bold;
}

.text-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.footer-cta {
    -webkit-align-self: flex-start;
            align-self: flex-start;
}

.contact-btn {
    background: #2196f3;
    color: #ffffff;
    border: none;
    border-radius: 24px;
    padding: 12px 32px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    padding-top: 20px;
}

.social-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    gap: 16px;
}

.social-icon {
    color: #000000;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.social-icon:hover {
    color: #2196f3;
}

.copyright {
    font-size: 18px;
    color: #000000;
}

.index-layout {
    padding: 20px;
    margin: auto;
    max-width: 1200px;
    margin-top: 50px;
}

.bro-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--spacing-md);
    gap: 20px;
    margin: 20px 0;
}

.pock-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.grid-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    position: relative;

    border: 2px solid #e5e7eb;
}

.grid-img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #ffffff;
    border-top: 3px solid #3399ff;
    border-radius: 50%;
    -webkit-animation: spin 0.8s linear infinite;
            animation: spin 0.8s linear infinite;
}

.grid-img.loaded::before {
    display: none;
}

.show-img {
    width: 100%;
    height: 400px;
    background-position: center;
    background-size: cover;
}

.about-img {
    background-image: url(../../images/about.c467acd.jpg);
}

.developer-img {
    background-image: url(../../images/developer.e0557bf.jpg);
}

.affiliates-img {
    background-image: url(../../images/affiliates.6f2c905.jpg);
}

.contactus-img {
    background-image: url(../../images/contactus.8fd127b.jpg);
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.grid-text-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 16px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 102, 204, 0.9)), to(transparent));
    background: -webkit-linear-gradient(bottom, rgba(0, 102, 204, 0.9), transparent);
    background: linear-gradient(to top, rgba(0, 102, 204, 0.9), transparent);
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.grid-name {
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.pock-item:hover .grid-text-box {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

.pock-item:hover .grid-img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

.bro-divider-action {
    font-size: 28px;
    color: #000000;
    text-align: center;
    line-height: 1.1;
    font-style: italic;
    height: 40px;
    margin: 20px 0 0px;
}

.bro-divider-action strong {
    font-weight: 900;
}

.about-layout h1,
.about-layout h2 {
    color: #1877f2;
    margin: 10px 0 0;
}

.about-layout p,
.about-layout li {
    line-height: 2;
}

.about-layout button {
    padding: 10px 20px;
    background-color: #0573d7;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 18px;
}

@media screen and (max-width:900px) {

    .nav-link {
        display: none;
    }

    .search-modal {
        width: 80%;
    }

    .bro-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-content,
    .footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
        padding: 10px 20px;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
           -moz-box-align: start;
                align-items: flex-start;
    }

    .bro-divider-action {
        font-size: 20px;
    }
}

@media screen and (max-width:480px) {
    .search-results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bro-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bro-divider-action {
        font-size: 18px;
    }

    .search-btn {
        margin: 10px 0;
    }

    .menu-btn {
        display: block;
        width: 40px;
        padding: 0px 15px;
        background: transparent;
        border: none;
        cursor: pointer;
        font-size: 20px;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px;
        z-index: 999;
        height: -webkit-calc(100vh - 60px);
        height: calc(100vh - 60px);
    }

    .mobile-menu a {
        display: block;
        padding: 0;
        color: #000;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        line-height: 50px;
        border: none;
    }

    .mobile-menu.active {
        display: block;
    }

}
