* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8f9fa;
}

/* HEADER */
header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1350px;
    margin: auto;
    padding: 0 20px;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* LOGO */
.logo img {
    height: 45px;
}

/* NAVIGATION */
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links ul li {
    position: relative;
}

.nav-links ul li a {
    text-decoration: none;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links ul li a:hover {
    color: #009CD4;
}

/* DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 45px;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #f2f2f2;
}

.dropdown.active .dropdown-menu {
    display: block;
}

/* CONTACT BUTTON */
.contact-btn {
    background: #009CD4;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #007fa8;
}

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

@media (max-width: 992px) {

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        background: #fff;
        width: 260px;
        height: 100vh;
        flex-direction: column;
        padding: 30px;
        transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 20px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 10px;
    }

    .menu-toggle {
        display: block;
    }
}
/* STICKY HEADER */
header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
body {
    padding-top: 80px; /* Same as header height */
}
.navbar {
    height: 80px;
}



/* HOMEPAGE FULL WIDTH BANNER */
/* .homepage-banner {
    width: 100%;
    height: 70vh;
    background: url('../images/Homepage/banner.png') center center/cover no-repeat;
} */
.homepage-banner {
    width: 100%;
    background: url('../images/Homepage/banner.png') center center / cover no-repeat;
    min-height: 70vh;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .homepage-banner {
        min-height: 15vh;   /* reduce height on mobile */
        background-position: center top; /* important */
    }
}






/* OUR BRANDS SECTION */
.our-brands {
    background: #4A4A4A;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.brand-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.brand-card img {
    max-width: 100%;
    height: auto;
}

/* Hover Effect */
.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
}







/* SOLUTIONS SECTION */
.solutions-section {
    background: #E9F0F4;
    padding: 100px 0;
}

.solutions-title {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 70px;
    line-height: 1.3;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* GRID */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.solution-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.solution-card h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    font-weight: 600;
    transition: 0.3s;
}

.solution-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* ICON BOX */
.icon-box {
    width: 60px;
    height: 60px;
    background: #DCEFF7;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* HOVER EFFECT */
.solution-card:hover {
    background: #E7F4FA;
    transform: translateY(-6px);
}

.solution-card:hover h3 {
    color: #0AA0D6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solutions-title {
        font-size: 30px;
        padding: 0 20px;
    }
}






/* GAMECLOUD SECTION */
.gamecloud-section {
    padding: 100px 0;
    background: #f4f6f8;
}

.gamecloud-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* LEFT SIDE */
.gamecloud-content {
    flex: 1;
}

.gamecloud-content h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
}

.gamecloud-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* RIGHT SIDE VIDEO */
.gamecloud-video {
    flex: 1;
    position: relative;
}

.gamecloud-video img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* PLAY BUTTON */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #0AA0D6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.play-button::before {
    content: '';
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

/* Hover Effect */
.gamecloud-video:hover .play-button {
    background: #087fa8;
    transform: translate(-50%, -50%) scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gamecloud-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .gamecloud-content h2 {
        font-size: 30px;
    }
}










/* SERVICES SECTION */
.services-section {
    background: #e9f0f4;
    padding: 100px 0;
}

.services-title {
    font-size: 40px;
    margin-bottom: 10px;
}

.services-subtitle {
    margin-bottom: 60px;
    max-width: 900px;
}

.services-wrapper {
    display: flex;
    gap: 40px;
}

/* LEFT TABS */
.services-tabs {
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-btn {
    padding: 18px;
    border: none;
    border-radius: 10px;
    background: #dbe3e8;
    cursor: pointer;
    font-size: 16px;
    text-align: left;
    transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #0aa0d6;
    color: #fff;
}

/* RIGHT CONTENT */
.services-content {
    flex: 1;
}

/* Hide all tabs */
.tab-content {
    display: none;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    align-items: stretch;
}

/* Show only active tab */
.tab-content.active {
    display: flex;
}

/* Image */
.tab-content img {
    width: 50%;
    object-fit: cover;
}

/* Text */
.tab-text {
    width: 50%;
    padding: 40px;
}

.tab-text h3 {
    margin-bottom: 20px;
}

.tab-text ul {
    padding-left: 20px;
}

.tab-text li {
    margin-bottom: 10px;
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .services-wrapper {
        flex-direction: column;
    }

    .services-tabs {
        flex-direction: row;
        width: 100%;
    }

    .tab-content {
        flex-direction: column;
    }

    .tab-content img,
    .tab-text {
        width: 100%;
    }
}









/* SUPER SPECIALTY SECTION */
.specialty-section {
    padding: 100px 0;
    background: #f5f7f9;
}

.specialty-wrapper {
    display: flex;
    gap: 80px;
}

/* LEFT SIDE */
.specialty-left {
    flex: 1;
}

.specialty-left h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.specialty-left h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.specialty-left p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* RIGHT SIDE */
.specialty-right {
    flex: 1;
}

.specialty-right h3 {
    font-size: 30px;
    margin-bottom: 40px;
}

/* ACCORDION */
.accordion-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}

.accordion-icon {
    font-size: 22px;
}

.accordion-body {
    margin-top: 15px;
    color: #555;
    display: none;
    line-height: 1.6;
}

.accordion-item.active .accordion-body {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .specialty-wrapper {
        flex-direction: column;
    }
}













/* CLIENT REVIEWS */
.reviews-section {
    background: #dbe7ef;
    padding: 100px 0;
    text-align: center;
}

.reviews-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.reviews-subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #555;
}

.review-wrapper {
    max-width: 800px;
    margin: auto;
    position: relative;
}

.review-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    position: relative;
}

.review-card::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0 15px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.review-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.review-profile h4 {
    margin-bottom: 5px;
}

.review-profile span {
    color: #777;
    font-size: 14px;
}

.review-nav {
    margin-top: 30px;
}

.review-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #0aa0d6;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    margin: 0 10px;
    transition: 0.3s;
}

.review-nav button:hover {
    background: #087fa8;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .reviews-section {
        padding: 70px 20px;
    }

    .reviews-title {
        font-size: 26px;
    }

    .reviews-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .review-card {
        padding: 30px 20px;
        font-size: 15px;
        line-height: 1.6;
    }

    .review-profile img {
        width: 65px;
        height: 65px;
    }

    .review-profile h4 {
        font-size: 16px;
    }

    .review-profile span {
        font-size: 13px;
    }

    .review-nav button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}









/* CLIENT LOGOS SECTION */
.client-logos-section {
    background: #f5f7f9;
    padding: 100px 0;
}

.client-logos-box {
    background: #e6e6e6;
    padding: 60px 40px;
    border-radius: 8px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px 40px;
    align-items: center;
    justify-items: center;
}

.logos-grid img {
    max-width: 140px;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.logos-grid img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .client-logos-box {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        grid-template-columns: 1fr;
    }
}







/* CTA GLOBAL */
.cta-section-global {
    background: url('../images/2023/12/CTA-BG001-2.jpg') center/cover no-repeat;
    position: relative;
    padding: 100px 0;
    color: #fff;
}

.cta-section-global::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(35,0,80,0.8), rgba(0,40,120,0.7));
}

.cta-global-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-left p {
    max-width: 600px;
    line-height: 1.7;
}

.cta-global-btn {
    background: #1fa3c8;
    padding: 14px 35px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-global-btn:hover {
    background: #1483a1;
}

/* FOOTER */
.main-footer {
    background: #f5f5f5;
    padding-top: 70px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding-bottom: 50px;
}

.footer-col h4 {
    margin-bottom: 20px;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #009CD4;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-social a {
    margin: 0 10px;
    text-decoration: none;
    font-weight: 600;
    color: #333;
}

.footer-social a:hover {
    color: #009CD4;
}

/* MOBILE */
@media (max-width: 992px) {
    .cta-global-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .cta-left h2 {
        font-size: 28px;
    }
}





.footer-social {
    margin-top: 20px;
    text-align: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 0 8px;
    border-radius: 50%;
    background: #eaeaea;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #009CD4;
    color: #ffffff;
}
















/* GAME VALIDATION HERO */
/* GAME VALIDATION HERO */
.gv-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 450px;
    background: url('../images/2023/12/game-validation-Hero.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
}

/* Override container only inside hero */
.gv-hero .container {
    margin: 0;              /* remove auto center */
    max-width: 100%;        /* full width */
    padding-left: 8%;       /* left spacing */
    padding-right: 8%;
}

/* Overlay */
.gv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
}

.gv-hero-content {
    position: relative;
    max-width: 650px;
}

.gv-hero h1 {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .gv-hero {
        height: 55vh;
        background-position: center top;
    }

    .gv-hero .container {
        padding: 120px 20px 60px;
    }

    .gv-hero h1 {
        font-size: 32px;
    }
}


/* GAME VALIDATION SECTION 2 */
.gv-section-2 {
    background: #dce8ee; /* light blue tone */
    padding: 80px 0;
}

.gv-sec2-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.gv-sec2-left h2,
.gv-sec2-right h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.gv-sec2-left p,
.gv-sec2-right p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

/* Vertical divider */
.gv-sec2-right {
    padding-left: 40px;
    border-left: 1px solid rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gv-sec2-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gv-sec2-right {
        border-left: none;
        padding-left: 0;
    }
}



/* GAME VALIDATION SECTION 3 */
.gv-section-3 {
    padding: 90px 0;
    background: #f5f7f9;
}

.gv-sec3-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.gv-sec3-left h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.gv-sec3-left p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.gv-highlight {
    font-weight: 500;
    color: #000;
}

.gv-sec3-right img {
    width: 100%;
    max-width: 480px;
    display: block;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gv-sec3-wrapper {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .gv-sec3-right {
        margin-top: 40px;
    }

    .gv-sec3-right img {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .gv-sec3-left h2 {
        font-size: 24px;
    }

    .gv-sec3-left p {
        font-size: 15px;
    }
}



/* GAME VALIDATION SECTION 4 */
.gv-section-4 {
    background: #dce8ee;
    padding: 90px 0;
}

.gv-sec4-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gv-sec4-left img {
    width: 100%;
    max-width: 600px;
    display: block;
}

.gv-sec4-right h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.gv-sec4-right p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.gv-sec4-right h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gv-sec4-list {
    list-style: none;
    padding: 0;
}

.gv-sec4-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 15px;
}

/* Blue bullet */
.gv-sec4-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 0;
    color: #009CD4;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gv-sec4-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gv-sec4-left {
        text-align: center;
    }

    .gv-sec4-left img {
        max-width: 450px;
    }
}

@media (max-width: 576px) {
    .gv-sec4-right h2 {
        font-size: 24px;
    }

    .gv-sec4-right p,
    .gv-sec4-list li {
        font-size: 14px;
    }
}



/* SECTION 5 */
.gv-section-5 {
    padding: 100px 0;
    background: #ffffff;
}

.gv-sec5-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* LEFT */
.gv-sec5-left h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gv-sec5-sub {
    font-size: 18px;
    margin-bottom: 35px;
}

.gv-sec5-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.gv-sec5-list ul {
    list-style: none;
    padding: 0;
}

.gv-sec5-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 15px;
}

/* Blue circle bullet */
.gv-sec5-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #009CD4;
    font-weight: bold;
}

/* RIGHT PRICE CARD */
.gv-price-card {
    background: #1597bf;
    color: #fff;
    padding: 50px 40px;
    border-radius: 20px;
}

.gv-price-card h3 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.gv-price {
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
}

.gv-price .currency {
    font-size: 28px;
    margin-right: 5px;
}

.gv-price .amount {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.gv-price .unit {
    font-size: 20px;
    margin-left: 10px;
    margin-bottom: 8px;
}

.gv-price-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.gv-price-btn:hover {
    background: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gv-sec5-wrapper {
        grid-template-columns: 1fr;
    }

    .gv-sec5-list {
        grid-template-columns: 1fr;
    }

    .gv-price-card {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .gv-sec5-left h2 {
        font-size: 24px;
    }

    .gv-price .amount {
        font-size: 42px;
    }
}