* {
    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;
    }
}









/* GLOBAL INNER HERO */
/* CORE SERVICES HERO */
.core-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 450px;
    background: url('../images/2023/12/core-services-Hero-1.jpg') left center / cover no-repeat;
    display: flex;
    align-items: center;
}

/* Override container only inside hero */
.core-hero .container {
    margin: 0;
    max-width: 100%;
    padding-left: 8%;
    padding-right: 8%;
}

/* Overlay */
.core-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
}

/* Content */
.core-hero-content {
    position: relative;
    max-width: 650px;
}

.core-hero h1 {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
}

/* MOBILE */
@media (max-width: 768px) {
    .core-hero {
        height: 55vh;
        background-position: left top;
    }

    .core-hero .container {
        padding: 120px 20px 60px;
    }

    .core-hero h1 {
        font-size: 32px;
    }
}





/* ============================= */
/* CORE SERVICES SECTION 2 */
/* ============================= */

.core-services-section {
    padding: 90px 0;
    background: #ffffff;
}

/* Top small line */
.core-top-line {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
}

.core-top-line a {
    color: #009CD4;
    font-weight: 600;
    text-decoration: none;
}

/* Main Heading */
.core-main-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 70px;
    line-height: 1.3;
}

/* Inner Panel (Blue Box) */
.core-panel {
    background: #d3e1e8; /* Exact screenshot tone */
    padding: 80px;
}

/* Grid Layout */
.core-services-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 70px;
    position: relative;
}

/* Vertical Divider */
.core-services-grid::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 60%;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

/* LEFT CONTENT */
.core-left h3 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.core-left p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #333;
}

/* RIGHT SIDE SERVICES */
.core-right {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.core-service-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.core-service-card img {
    width: 55px;
    height: 55px;
}

.core-service-card h4 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.core-service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1200px) {
    .core-panel {
        padding: 60px;
    }
}

@media (max-width: 992px) {

    .core-services-grid {
        grid-template-columns: 1fr;
    }

    .core-services-grid::after {
        display: none;
    }

    .core-panel {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {

    .core-services-section {
        padding: 60px 20px;
    }

    .core-main-heading {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .core-panel {
        padding: 35px 20px;
    }

    .core-left h3 {
        font-size: 22px;
    }

    .core-left p {
        font-size: 15px;
    }

    .core-service-card {
        flex-direction: column;
        gap: 12px;
    }

    .core-service-card img {
        width: 40px;
        height: 40px;
    }

    .core-service-card h4 {
        font-size: 18px;
    }
}


/* ============================= */
/* GAME TESTING SECTION */
/* ============================= */

.game-testing-section {
    padding: 90px 0;
    background: #f2f2f2;   /* Light grey like screenshot */
}

.game-testing-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */

.game-testing-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-testing-highlight {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #222;
}

.game-testing-left p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}

/* RIGHT IMAGE */

.game-testing-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .game-testing-wrapper {
        grid-template-columns: 1fr;
    }

    .game-testing-section {
        padding: 70px 0;
    }

    .game-testing-right {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {

    .game-testing-section {
        padding: 60px 20px;
    }

    .game-testing-left h2 {
        font-size: 24px;
    }

    .game-testing-highlight {
        font-size: 20px;
    }

    .game-testing-left p {
        font-size: 15px;
    }
}


/* ============================= */
/* VALUE ADDED SERVICES SECTION */
/* ============================= */

.vas-section {
    padding: 90px 0;
    background: #ffffff;
}

.vas-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

/* LEFT IMAGE */

.vas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT CONTENT PANEL */

.vas-content {
    background: #d3e1e8;   /* Same blue tone used earlier */
    padding: 80px;
}

.vas-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.vas-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    color: #333;
}

.vas-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vas-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #333;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .vas-wrapper {
        grid-template-columns: 1fr;
    }

    .vas-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {

    .vas-section {
        padding: 60px 20px;
    }

    .vas-content {
        padding: 40px 20px;
    }

    .vas-content h2 {
        font-size: 24px;
    }

    .vas-subtitle {
        font-size: 18px;
    }

    .vas-content p {
        font-size: 15px;
    }
}



/* ============================= */
/* WHAT WE DO SECTION */
/* ============================= */

.what-we-do-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: #555;
}

/* GRID */
.accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* ACCORDION ITEM */
.accordion-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

.accordion-icon {
    font-size: 22px;
    border: 1px solid #000;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* HIDDEN CONTENT */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #444;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    margin-top: 15px;
}

.accordion-item.active .accordion-icon {
    content: "-";
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .accordion-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .what-we-do-section {
        padding: 70px 20px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .accordion-title {
        font-size: 16px;
    }

    .accordion-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}












/* ============================= */
/* GAME CONFIDENCE HERO */
/* ============================= */

.gc-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 450px;
    background: url('../images/2023/12/game-confidence-Hero001.jpg') left center / cover no-repeat;
    display: flex;
    align-items: center;
}

/* Override container only inside hero */
.gc-hero .container {
    margin: 0;
    max-width: 100%;
    padding-left: 8%;
    padding-right: 8%;
}

/* Overlay */
.gc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
}

/* Content */
.gc-hero-content {
    position: relative;
    max-width: 650px;
}

.gc-hero h1 {
    color: #ffffff;
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

    .gc-hero {
        height: 55vh;
        background-position: left top;
    }

    .gc-hero .container {
        padding: 120px 20px 60px;
    }

    .gc-hero h1 {
        font-size: 32px;
    }
}







/* ============================= */
/* UNIQUE SOLUTION SECTION */
/* ============================= */

.gc-unique-section {
    padding: 80px 0;
    background: #ffffff;
}

.gc-unique-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: auto;
    background: #dce8ee; /* light blue tone */
    align-items: stretch;
}

/* LEFT SIDE CONTENT */

.gc-unique-content {
    padding: 70px 60px;
}

.gc-unique-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.gc-unique-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* RIGHT IMAGE */

.gc-unique-image {
    height: 100%;
}

.gc-unique-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .gc-unique-wrapper {
        grid-template-columns: 1fr;
    }

    .gc-unique-content {
        padding: 50px 30px;
    }

    .gc-unique-content h2 {
        font-size: 30px;
    }

    .gc-unique-image img {
        height: 350px;
    }
}





/* ============================= */
/* TABS SECTION */
/* ============================= */

.gc-tabs-section {
    padding: 70px 0;
}

/* Tabs Nav */

.gc-tabs-nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    border-bottom: 2px solid #cfe0e8;
    overflow-x: auto;
}

.gc-tab {
    padding: 15px 30px;
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #555;
    white-space: nowrap;
}

.gc-tab.active {
    background: #1fa0c9;
    color: #fff;
    border-radius: 6px 6px 0 0;
}

/* Content Area */

.gc-tabs-content {
    max-width: 1200px;
    margin: 0 auto;
    background: #e9f2f6;
    padding: 50px;
}

.gc-tab-pane {
    display: none;
}

.gc-tab-pane.active {
    display: block;
}

.gc-tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Text */

.gc-tab-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.gc-tab-text ul {
    list-style: none;
    padding: 0;
}

.gc-tab-text ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.gc-tab-text ul li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #1fa0c9;
}

/* Image */

.gc-tab-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .gc-tab-grid {
        grid-template-columns: 1fr;
    }

    .gc-tabs-content {
        padding: 30px;
    }

    .gc-tab-text h2 {
        font-size: 24px;
    }
}




/* ============================= */
/* CONFIDENCE PACK SECTION */
/* ============================= */

.gc-confidence-pack {
    padding: 80px 0;
}

.gc-confidence-header {
    text-align: center;
    margin-bottom: 60px;
}

.gc-confidence-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gc-confidence-header p {
    font-size: 18px;
    color: #555;
}

/* GRID */

.gc-confidence-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* FEATURES */

.gc-confidence-features ul {
    list-style: none;
    padding: 0;
}

.gc-confidence-features li {
    margin-bottom: 18px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}

.gc-confidence-features li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #1fa0c9;
    font-weight: bold;
}

/* PRICE CARDS */

.gc-price-card {
    padding: 40px 30px;
    border-radius: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gc-price-card.grey {
    background: #6f6f6f;
    color: #fff;
}

.gc-price-card.blue {
    background: #1fa0c9;
    color: #fff;
}

.gc-price-card h3 {
    font-size: 20px;
    margin-bottom: 25px;
}

.gc-price {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
}

.gc-price span {
    font-size: 30px;
    vertical-align: top;
}

.gc-price small {
    font-size: 20px;
    margin-left: 5px;
}

/* BUTTONS */

.gc-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.gc-btn.light {
    background: #2eb7e1;
    color: #fff;
}

.gc-btn.dark {
    background: #111;
    color: #fff;
}

/* NOTE */

.gc-confidence-note {
    margin-top: 60px;
    background: #dce8ee;
    padding: 40px;
    border-radius: 6px;
}

.gc-confidence-note h4 {
    margin-bottom: 15px;
}

.gc-confidence-note p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .gc-confidence-grid {
        grid-template-columns: 1fr;
    }

    .gc-price-card {
        margin-top: 20px;
    }

    .gc-price {
        font-size: 48px;
    }

    .gc-confidence-header h2 {
        font-size: 26px;
    }

}









/* ============================= */
/* GAME ASSURANCE HERO */
/* ============================= */

.ga-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 450px;
    background: url('../images/2023/12/Assurance-of-Quality-Hero.jpg') left center / cover no-repeat;
    display: flex;
    align-items: center;
}

/* Override container inside hero */
.ga-hero .container {
    margin: 0;
    max-width: 100%;
    padding-left: 8%;
    padding-right: 8%;
}

/* Overlay */
.ga-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65), rgba(0,0,0,0.25));
}

/* Content */
.ga-hero-content {
    position: relative;
    max-width: 650px;
}

.ga-hero h1 {
    color: #ffffff;
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

    .ga-hero {
        height: 55vh;
        background-position: left top;
    }

    .ga-hero .container {
        padding: 120px 20px 60px;
    }

    .ga-hero h1 {
        font-size: 32px;
    }
}





/* ============================= */
/* GAME ASSURANCE OVERVIEW */
/* ============================= */

.ga-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.ga-overview-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #dce8ee; /* light blue tone like screenshot */
    align-items: stretch;
}

/* LEFT CONTENT */

.ga-overview-content {
    padding: 70px 60px;
}

.ga-overview-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.ga-overview-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* RIGHT IMAGE */

.ga-overview-image {
    height: 100%;
}

.ga-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .ga-overview-wrapper {
        grid-template-columns: 1fr;
    }

    .ga-overview-content {
        padding: 50px 30px;
    }

    .ga-overview-content h2 {
        font-size: 28px;
    }

    .ga-overview-image img {
        height: 350px;
    }
}




/* ============================= */
/* GAME ASSURANCE TABS */
/* ============================= */

.ga-tabs-section {
    padding: 70px 0;
}

/* Tabs Nav */

.ga-tabs-nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    border-bottom: 2px solid #cfe0e8;
    overflow-x: auto;
}

.ga-tab {
    padding: 15px 30px;
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #555;
    white-space: nowrap;
}

.ga-tab.active {
    background: #1fa0c9;
    color: #fff;
    border-radius: 6px 6px 0 0;
}

/* Content */

.ga-tabs-content {
    max-width: 1200px;
    margin: 0 auto;
    background: #e9f2f6;
    padding: 50px;
}

.ga-tab-pane {
    display: none;
}

.ga-tab-pane.active {
    display: block;
}

.ga-tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Text */

.ga-tab-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.ga-tab-text ul {
    list-style: none;
    padding: 0;
}

.ga-tab-text li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.ga-tab-text li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #1fa0c9;
}

/* Image */

.ga-tab-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Responsive */

@media (max-width: 992px) {

    .ga-tab-grid {
        grid-template-columns: 1fr;
    }

    .ga-tabs-content {
        padding: 30px;
    }

    .ga-tab-text h2 {
        font-size: 24px;
    }
}


/* ============================= */
/* QA BUDGET SECTION */
/* ============================= */

.qa-budget-section {
    padding: 80px 0 0 0;
}

/* Container */

.qa-budget-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px 60px;
}

/* Left Content */

.qa-budget-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.qa-sub {
    font-size: 20px;
    margin-bottom: 30px;
}

.qa-list {
    list-style: none;
    padding: 0;
}

.qa-list li {
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.qa-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #1fa0c9;
    font-weight: bold;
}

/* Right Pricing Card */

.qa-budget-card {
    background: #1fa0c9;
    color: #fff;
    padding: 50px 40px;
    border-radius: 20px;
}

.qa-budget-card h3 {
    font-size: 26px;
    margin-bottom: 30px;
}

/* Price */

.qa-price {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 30px;
}

.qa-price .currency {
    font-size: 28px;
    margin-top: 10px;
}

.qa-price .amount {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

.qa-price .usd {
    font-size: 22px;
    align-self: flex-end;
    margin-bottom: 8px;
}

/* Button */

.qa-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.qa-btn:hover {
    background: #000;
}

/* Note Section */

.qa-note {
    background: #e9f2f6;
    padding: 40px 0;
}

.qa-note-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.qa-note h4 {
    margin-bottom: 10px;
}

.qa-note p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* ============================= */
/* Responsive */
/* ============================= */

@media (max-width: 992px) {

    .qa-budget-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .qa-budget-left h2 {
        font-size: 28px;
    }

    .qa-sub {
        font-size: 16px;
    }

    .qa-price .amount {
        font-size: 48px;
    }

    .qa-budget-card {
        padding: 35px 25px;
    }
}




/* ============================= */
/* STRATEGIC ENGAGEMENT HERO */
/* ============================= */

.se-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 450px;
    background: url('../images/2023/12/strategic-engagement-Hero001.jpg') right center / cover no-repeat;
    display: flex;
    align-items: center;
}

/* Remove container centering inside hero */
.se-hero .container {
    margin: 0;
    max-width: 100%;
    padding-left: 8%;
    padding-right: 8%;
}

/* Dark overlay */
.se-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.05) 70%
    );
}

.se-hero-content {
    position: relative;
    max-width: 700px;
}

.se-hero h1 {
    color: #fff;
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {

    .se-hero {
        height: 55vh;
        background-position: center right;
    }

    .se-hero h1 {
        font-size: 32px;
    }

    .se-hero .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}






/* ============================= */
/* STRATEGIC ENGAGEMENT OVERVIEW */
/* ============================= */

.se-overview {
    background: #dce8ee; /* light blue tone */
    padding: 80px 0;
}

.se-overview .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Heading */

.se-heading {
    margin-bottom: 50px;
}

.se-heading h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.se-highlight {
    color: #1fa0c9;
    text-decoration: none;
}

.se-highlight:hover {
    text-decoration: underline;
}

.se-subtitle {
    font-size: 22px;
    margin-top: 10px;
}

/* Content Grid */

.se-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.se-col p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 992px) {

    .se-heading h2 {
        font-size: 28px;
    }

    .se-subtitle {
        font-size: 18px;
    }

    .se-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}









/* ============================= */
/* SERVICE CATEGORY TABS */
/* ============================= */

.se-service-category {
    padding: 80px 0;
}

.se-service-heading {
    text-align: center;
    margin-bottom: 60px;
}

.se-service-heading h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.se-service-heading p {
    font-size: 20px;
}

/* Wrapper */

.se-service-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

/* LEFT TABS */

.se-service-tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.se-tab {
    padding: 18px;
    border: none;
    background: #f0f0f0;
    text-align: left;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
}

.se-tab.active {
    background: #1fa0c9;
    color: #fff;
}

/* RIGHT CONTENT BOX */

.se-service-content {
    background: #f5f7f8;
    padding: 50px;
    border-radius: 10px;
}

.se-tab-pane {
    display: none;
}

.se-tab-pane.active {
    display: block;
}

.se-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.se-content-left h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.se-content-left p,
.se-content-left li {
    line-height: 1.8;
    margin-bottom: 15px;
}

.se-content-left ul {
    padding-left: 20px;
}

/* Right Side */

.se-content-right {
    border-left: 1px solid #ddd;
    padding-left: 30px;
}

.se-content-right h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.se-btn {
    display: inline-block;
    background: #1fa0c9;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .se-service-wrapper {
        grid-template-columns: 1fr;
    }

    .se-content-grid {
        grid-template-columns: 1fr;
    }

    .se-content-right {
        border-left: none;
        padding-left: 0;
        margin-top: 30px;
    }

    .se-service-tabs {
        flex-direction: row;
        overflow-x: auto;
    }

    .se-tab {
        min-width: 180px;
    }
}






/* ============================= */
/* WHY US HERO */
/* ============================= */

.wu-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 450px;
    background: url('../images/2024/01/Why-US-Hero001.jpg') right center / cover no-repeat;
    display: flex;
    align-items: center;
}

/* Remove container centering inside hero */
.wu-hero .container {
    margin: 0;
    max-width: 100%;
    padding-left: 8%;
    padding-right: 8%;
}

/* Left dark gradient overlay */
.wu-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.55) 40%,
        rgba(0,0,0,0.15) 70%
    );
}

.wu-hero-content {
    position: relative;
    max-width: 600px;
}

.wu-hero h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {

    .wu-hero {
        height: 55vh;
        background-position: center right;
    }

    .wu-hero h1 {
        font-size: 34px;
    }

    .wu-hero .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}




/* ============================= */
/* WHY US FEATURE SECTION */
/* ============================= */

.wu-features {
    background: #c8d7df;
    padding: 80px 0;
}

.wu-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.wu-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

/* Hover Effect */
.wu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Icon */
.wu-icon {
    font-size: 36px;
    color: #159ac3;
    margin-bottom: 25px;
}

/* Heading */
.wu-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #333;
}

/* Text */
.wu-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .wu-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wu-feature-grid {
        grid-template-columns: 1fr;
    }

    .wu-card {
        padding: 35px 25px;
    }
}



/* ============================= */
/* WHY US - POINTS SECTION */
/* ============================= */

.wu-points {
    padding: 90px 0;
    background: #ffffff;
}

.wu-points-header {
    margin-bottom: 60px;
}

.wu-points-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.wu-subtitle {
    font-size: 22px;
    color: #333;
}

/* Grid */
.wu-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

/* List */
.wu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wu-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

/* Blue circle arrow bullet */
.wu-list li::before {
    content: "\f061"; /* FontAwesome arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background: #159ac3;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .wu-points-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .wu-points-header h2 {
        font-size: 30px;
    }

    .wu-subtitle {
        font-size: 18px;
    }

    .wu-list li {
        font-size: 15px;
    }
}





/* ============================= */
/* EXCLUSIVE ARRANGEMENTS */
/* ============================= */

.ea-section {
    background: #d3e1e8;
    padding: 90px 0;
}

.ea-header {
    text-align: center;
    margin-bottom: 50px;
}

.ea-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ea-header p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    color: #444;
}

/* Tabs */
.ea-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #bbb;
    padding-bottom: 15px;
}

.ea-tab {
    background: none;
    border: none;
    font-size: 18px;
    padding: 10px 25px;
    cursor: pointer;
    color: #666;
    border-radius: 6px;
    transition: 0.3s ease;
}

.ea-tab.active {
    background: #159ac3;
    color: #fff;
}

/* Content */
.ea-content {
    display: none;
}

.ea-content.active {
    display: block;
}

.ea-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
}

.ea-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.ea-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.ea-text ul {
    list-style: none;
    padding: 0;
}

.ea-text li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #444;
}

.ea-text li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #159ac3;
    font-weight: bold;
}

.ea-image img {
    width: 100%;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .ea-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .ea-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }
}








/* ============================= */
/* ABOUT US HERO SECTION */
/* ============================= */

.about-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: url('/assets/images/2023/12/About-Us-Game-Cloud-Hero.jpg') right center / cover no-repeat;
}

/* Left dark gradient overlay */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.6) 40%,
        rgba(0,0,0,0.2) 70%
    );
}

/* Remove default container centering */
.about-hero .container {
    margin: 0;
    max-width: 100%;
    padding-left: 8%;
    padding-right: 8%;
}

.about-hero-content {
    position: relative;
    max-width: 750px;
}

.about-hero h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
        min-height: 400px;
        background-position: center right;
    }

    .about-hero h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .about-hero .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* ============================= */
/* ABOUT OVERVIEW SECTION */
/* ============================= */

.about-overview {
    padding: 90px 0;
    background: #ffffff;
}

.about-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

/* Left Block */
.about-overview-text {
    background: #c8d7df;
    padding: 70px 60px;
}

.about-overview-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-overview-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

/* Right Image */
.about-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .about-overview-grid {
        grid-template-columns: 1fr;
    }

    .about-overview-text {
        padding: 50px 30px;
    }

    .about-overview-text h2 {
        font-size: 30px;
    }

    .about-overview-text p {
        font-size: 16px;
    }
}




/* ============================= */
/* ABOUT VALUES SECTION */
/* ============================= */

.about-values {
    padding: 90px 0;
    background: #f3f3f3;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

/* Horizontal Divider */
.row-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: #ddd;
    margin: 40px 0;
}

/* Value Item */
.value-item {
    padding: 40px 50px;
    position: relative;
}

/* Vertical Dividers */
.value-item:nth-child(1),
.value-item:nth-child(2),
.value-item:nth-child(5),
.value-item:nth-child(6) {
    border-right: 1px solid #ddd;
}

.value-item:nth-child(3),
.value-item:nth-child(6) {
    border-right: none;
}

/* Icon */
.value-icon {
    font-size: 36px;
    color: #159ac3;
    margin-bottom: 20px;
}

/* Heading */
.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Text */
.value-item p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-item {
        border-right: none !important;
        border-bottom: 1px solid #ddd;
    }

    .row-divider {
        display: none;
    }
}

@media (max-width: 600px) {

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        padding: 30px 20px;
    }
}




/* ============================= */
/* JOURNEY SECTION */
/* ============================= */

.journey-section {
    padding: 90px 0;
    background: #ffffff;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

/* LEFT SIDE */
.journey-text {
    background: #c8d7df;
    padding: 70px 60px;
}

.journey-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.journey-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

/* RIGHT SIDE */
.journey-image-wrapper {
    position: relative;
}

.journey-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PROFILE CARD */
.profile-card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #159ac3;
    padding: 35px;
    text-align: center;
    color: #fff;
}

.profile-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-card .designation {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* BUTTON */
.profile-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.profile-btn:hover {
    background: #333;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-text {
        padding: 50px 30px;
    }

    .journey-text h2 {
        font-size: 30px;
    }

    .profile-card {
        position: relative;
    }
}





/* ============================= */
/* WHY GAMECLOUD STANDS ALONE */
/* ============================= */

.stands-alone-section {
    padding: 90px 0;
    background: #ffffff;
}

.stands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

/* LEFT SIDE */
.stands-text {
    background: #f3f6f8;
    padding: 70px 60px;
}

.stands-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.stands-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

/* BULLET LIST */
.stands-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stands-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.stands-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: #159ac3;
    font-weight: bold;
}

/* RIGHT IMAGE */
.stands-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .stands-grid {
        grid-template-columns: 1fr;
    }

    .stands-text {
        padding: 50px 30px;
    }

    .stands-text h2 {
        font-size: 30px;
    }

    .stands-image img {
        height: auto;
    }
}



/* ============================= */
/* GROWTH HISTORY SECTION */
/* ============================= */

.growth-history-section {
    background: #c8d7df;   /* soft blue background */
    padding: 90px 0;
}

.growth-history-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading */
.growth-history-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Subtitle */
.growth-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #333;
}

/* Bullet List */
.growth-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.growth-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

/* Blue Icon Bullet */
.growth-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 4px;
    color: #159ac3;
    font-size: 18px;
    font-weight: bold;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .growth-history-section {
        padding: 60px 0;
    }

    .growth-history-section h2 {
        font-size: 30px;
    }

    .growth-subtitle {
        font-size: 18px;
    }

    .growth-list li {
        font-size: 15px;
    }
}











/* ============================= */
/* TERMS PAGE */
/* ============================= */

.terms-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.terms-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.terms-section .intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.terms-section h2 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.terms-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.terms-section ul {
    padding-left: 20px;
}

.terms-section ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-section h1 {
        font-size: 28px;
    }

    .terms-section h2 {
        font-size: 18px;
    }

    .terms-section p {
        font-size: 14px;
    }
}












/* ============================= */
/* PRIVACY POLICY PAGE */
/* ============================= */

.privacy-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.privacy-section .intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.privacy-section h2 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-section h1 {
        font-size: 28px;
    }

    .privacy-section h2 {
        font-size: 18px;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 14px;
    }
}









/* ============================= */
/* CONTACT HERO SECTION */
/* ============================= */

.contact-hero {
    position: relative;
    height: 520px;
    background: url('/assets/images/2023/12/Contact-US-Hero.jpg') no-repeat center center/cover;
}

/* Overlay */
.contact-hero-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* Content wrapper */
.contact-hero-content {
    padding-top: 120px;   /* Push content down (NOT centered) */
    max-width: 600px;
    color: #fff;
}

/* Heading */
.contact-hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Paragraph */
.contact-hero-content p {
    font-size: 22px;
    line-height: 1.6;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .contact-hero {
        height: 450px;
    }

    .contact-hero-content {
        padding-top: 100px;
    }

    .contact-hero-content h1 {
        font-size: 40px;
    }

    .contact-hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {

    .contact-hero {
        height: auto;
        padding: 80px 0;
    }

    .contact-hero-content {
        padding-top: 0;
    }

    .contact-hero-content h1 {
        font-size: 32px;
    }

    .contact-hero-content p {
        font-size: 16px;
    }
}




/* ============================= */
/* CONTACT INFO SECTION */
/* ============================= */

.contact-info-section {
    background: #cfdde5;
    padding: 80px 0;
}

.contact-info-header {
    max-width: 850px;
    margin-bottom: 60px;
}

.contact-info-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-header p {
    font-size: 18px;
    line-height: 1.7;
}

/* ============================= */
/* GRID */
/* ============================= */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.contact-card {
    padding: 20px 30px;
}

.middle-card {
    border-left: 1px solid #b8c6ce;
    border-right: 1px solid #b8c6ce;
}

.contact-card .icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-card a {
    color: #0073b1;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ============================= */
/* DIVIDER */
/* ============================= */

.section-divider {
    border: none;
    border-top: 1px solid #b8c6ce;
    margin: 40px 0;
}

/* ============================= */
/* IMPORTANT NOTE */
/* ============================= */

.important-note {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.important-note h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.red-text {
    color: red;
    margin-top: 30px;
}

.important-note p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .middle-card {
        border: none;
    }

    .contact-info-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {

    .contact-info-section {
        padding: 60px 20px;
    }

    .contact-info-header h2 {
        font-size: 26px;
    }

    .contact-card h3 {
        font-size: 20px;
    }
}



/* ============================= */
/* MAP + OFFICE SECTION */
/* ============================= */

.map-office-section {
    padding: 80px 0;
    background: #ffffff;
}

.map-office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* MAP */

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
}

/* IMAGE */

.office-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .map-office-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-wrapper,
    .office-image,
    .map-wrapper iframe {
        min-height: 350px;
    }
}

@media (max-width: 600px) {

    .map-office-section {
        padding: 60px 20px;
    }

    .map-wrapper,
    .office-image,
    .map-wrapper iframe {
        min-height: 300px;
    }
}

















/* ============================= */
/* CAREER HERO SECTION */
/* ============================= */

.career-hero {
    position: relative;
    height: 500px;
    background: url('/assets/images/2024/01/Career-Hro001.jpg') no-repeat center center/cover;
}

/* Gradient Overlay (Dark Left Fade) */
.career-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.65) 35%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* Content */
.career-hero-content {
    padding-top: 150px;   /* Push down slightly */
    max-width: 600px;
}

.career-hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .career-hero {
        height: 420px;
    }

    .career-hero-content {
        padding-top: 120px;
    }

    .career-hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 600px) {

    .career-hero {
        height: auto;
        padding: 100px 0;
        background-position: center;
    }

    .career-hero-content {
        padding-top: 0;
    }

    .career-hero-content h1 {
        font-size: 36px;
    }
}




/* ============================= */
/* OPEN POSITIONS SECTION */
/* ============================= */

.open-positions-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
}

/* GRID */

.positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.job-card {
    background: #f9f9f9;
    padding: 35px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.job-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.job-card a {
    color: #0073b1;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.job-card:hover a {
    color: #005b8a;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1024px) {
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .section-header h2 {
        font-size: 36px;
    }

    .positions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .job-card {
        padding: 25px;
    }
}











/* ============================= */
/* CAREER DISCOVER SECTION */
/* ============================= */

.career-discover-section {
    background: #cfdde5;
    padding: 80px 0;
}

.career-discover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */

.career-discover-image img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

/* CONTENT */

.career-discover-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.career-discover-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BULLET LIST */

.career-list {
    list-style: none;
    padding: 0;
}

.career-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 16px;
}

/* Custom Blue Icon Bullet */

.career-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 0;
    color: #0073b1;
    font-weight: bold;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .career-discover-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .career-discover-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {

    .career-discover-section {
        padding: 60px 20px;
    }

    .career-discover-content h2 {
        font-size: 24px;
    }

    .career-discover-content p {
        font-size: 15px;
    }

    .career-list li {
        font-size: 15px;
    }
}














.blog-hero {
    background: url('/assets/images/2023/12/Blogs-Page-Hero.jpg') center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.blog-list {
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 15px;
    font-size: 18px;
}

.read-more {
    display: inline-block;
    padding: 0 15px 20px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

#loadMoreBtn {
    padding: 12px 30px;
    border: none;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero h1 {
        font-size: 32px;
    }
}












.blog-list-section {
    padding: 60px 20px;
}

.blog-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.blog-item img {
    width: 50%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-content {
    /* width: 50%; */
}

.blog-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.blog-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more-btn {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more-btn:hover {
    color: #007bff;
}

.load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

#loadMoreBtn {
    padding: 12px 35px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

/* 🔥 Mobile Responsive */

@media (max-width: 992px) {
    .blog-item {
        flex-direction: column;
    }

    .blog-item img,
    .blog-content {
        width: 100%;
    }

    .blog-item img {
        height: 250px;
    }

    .blog-content h2 {
        font-size: 24px;
    }
}





.blog-detail-section {
    padding: 80px 20px;
}

.blog-detail-wrapper {
    max-width: 900px;
    margin: auto;
}

.blog-title {
    font-size: 38px;
    margin-bottom: 30px;
}

.blog-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}

.blog-content {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

.blog-content h4 {
    margin-top: 35px;
    font-size: 22px;
}

.blog-content span {
    display: block;
    margin-bottom: 15px;
}

/* Mobile */
@media (max-width: 768px) {
    .blog-title {
        font-size: 26px;
    }
}