/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Common Values */
:root {
    /* Font Sizes */
    --fs-hero: 36px;
    --fs-h1: 42px;
    --fs-h2: 36px;
    --fs-h3: 28px;
    --fs-h4: 21px;
    --fs-body: 16px;
    --fs-small: 13px;
    
    /* Colors */
    --color-primary: #086AD8;
    --color-secondary: #2C5F8D;
    --color-accent: #FFD700;
    --color-white: #FFFFFF;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg-light: #F5F5F5;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 30px;
    --spacing-xl: 60px;
    --spacing-xxl: 60px;
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50%;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: var(--fs-body);
    color: var(--color-text);
    line-height: 1.6;
}

* {
    font-family: 'Roboto', sans-serif;
}


p a {
  color: #0054a6;
  text-decoration: none;
  font-weight: 500;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1600px;
    }
}

/* Banner Section */
.mobile-contact-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: #388DC0;
    padding: 8px 0 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-call-btn,
.mobile-quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    width: 50%;
    box-sizing: border-box;
    background: #388DC0;
    position: relative;
}

.mobile-call-btn::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.mobile-call-icon,
.mobile-quote-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}


@media (max-width: 330px) {
    .mobile-call-btn,
    .mobile-quote-btn {
        font-size: 12px;
        padding: 12px 8px;
        gap: 6px;
    }
    
    .mobile-call-icon,
    .mobile-quote-icon {
        width: 18px;
        height: 18px;
    }
}

/* Banner Section */
.banner-section {
    background: linear-gradient(135deg, #4A90E2 0%, #2C5F8D 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    margin-bottom: 50px;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.banner-text {
    flex: 1;
    max-width: 600px;
}

.double-line {
    width: auto;
    height: auto;
    margin-bottom: -20px;
    display: block;
}

.banner-text h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 39px;
    font-weight: 700;
    font-style: normal;
    line-height: 55.2px;
    letter-spacing: 0%;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    vertical-align: middle;
}

.banner-subtitle {
    font-size: var(--fs-body);
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.banner-points {
  
    margin-bottom: var(--spacing-lg);
}

.banner-points li {
    color: var(--color-white);
    font-size: var(--fs-body);
 
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.banner-points li::before {
 
    position: absolute;
    left: 0;
    color: var(--color-white);
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.call-div,
.request-div {
    width: 49px;
    transition: all .4s linear;
    overflow: hidden;
}

.call-btn,
.request-btn {
    text-decoration: none;
    align-items: center;
    border-radius: 30px;
    display: flex;
    flex-wrap: nowrap;
    color: #fff;
    padding: 2px;
    width: 100%;
    height: 49px;
    box-sizing: border-box;
}

.call-btn {
    background-color: #fecf39;
}

.request-btn {
    background-color: #39516a;
}

.text-call {
    font-size: 16px;
    white-space: nowrap;
    margin-left: 7px;
    margin-right: 6px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    max-width: 0;
    transition: all .4s linear;
    overflow: visible;
}

.call-btn .text-call {
    color: #1f1f1f;
}

.request-btn .text-call {
    color: #fff;
}

.call-div:hover,
.request-div:hover {
    width: 200px;
}

.call-div:hover .text-call,
.request-div:hover .text-call {
    opacity: 1;
    max-width: 140px;
}

.call-img,
.request-img {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    object-fit: contain;
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image img {
    max-width: 100%;
    height: auto;
}

.banner-circle{
    position: absolute;
    bottom: -82px; /* FIXED */
    left: 30%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background-image: url('/images/assets/gamingimg/images/banner-circle.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.banner-cta-mobile {
    display: none;
}

/* Sticky Cards Section */
.sticky-cards-section {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}
 
.sticky-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.sticky-heading {
    position: sticky;
    top: 270px;
    margin-top: calc(40vh - 200px);
}

.sticky-heading h2 {
    font-size: var(--fs-h2);
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    line-height: 1.3;
}

.sticky-heading p {
    font-size: var(--fs-body);
    color: var(--color-text-light);
    line-height: 1.6;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    min-height: 100vh;
    margin-top: -60px;
}

.sticky-card {
    position: sticky;
    top: 100px;
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 39px;
    padding: 40px 24px;
    box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    height: 428px;
    align-items: center;
}

.sticky-card:nth-child(1) {
    top: 100px;
}

.sticky-card:nth-child(2) {
    top: 108px;
}

.sticky-card:nth-child(3) {
    top: 116px;
}

.sticky-card:nth-child(4) {
    top: 124px;
}

.sticky-card:nth-child(5) {
    top: 132px;
}

.sticky-card:nth-child(6) {
    top: 140px;
}

.sticky-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    justify-content: space-between;
}

.sticky-card > img {
    width: 204px;
    height: 204px;
    object-fit: contain;
    flex-shrink: 0;
}

.first-card-heading {
    max-width: 280px;
}

.card-content h3 {
    font-size: 24px;
    color: var(--color-text);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.card-content p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.card-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: var(--fs-body);
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.card-btn:hover {
    background: var(--color-secondary);
}


.submit-btn {
    background: rgb(74, 139, 229);
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-sizing: border-box;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #3a7bd5;
}


/* ?? Remove hover ONLY for non-banner CTAs */

.card-btn:hover {
    background: var(--color-primary); /* same as normal */
    transform: none;
    box-shadow: none;
}

.submit-btn:hover {
    background: rgb(74, 139, 229); /* same as original */
    transform: none;
    box-shadow: none;
}

.why-cta:hover {
    background: var(--color-primary); /* same as normal */
    transform: none;
    box-shadow: none;
}

/* Why Our Game Design Team Section */
.why-section {
    padding: var(--spacing-xxl) 0;
    background: #EBF4FF;
    margin-top: 95px;
  
}


.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.why-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-image img {
    max-width: 100%;
    height: auto;
}

.why-text h2 {
    font-size: 40px;
    color: #282828;
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

.why-text h2 br {
    content: ' ';
}

.why-text h2 br::after {
    content: ' ';
}

.why-us-grid{
margin-top:-44px;
}

@media (max-width: 768px) {

    .banner-image img {
    max-width: 100%;
    height: auto;
    margin-top: -48px;
}
  .why-section .accordion-header span {
        font-size: 16px;
    }
    .why-text h2 {
        font-size: 28px;
        white-space: normal;
    }
    
    .why-text h2 br {
        display: inline;
    }
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--spacing-lg);
}

.accordion-item {
    border-bottom: 2px solid #D0D0D0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    cursor: pointer;
    font-size: 20px;
    color: var(--color-text);
    font-weight: 400;
}

.accordion-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.3s ease;
}

.accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-content-inner {
    min-height: 0;
}

.accordion-content p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    padding-bottom: var(--spacing-md);
}

.accordion-content p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.why-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 125px;
    height: 48px;
    padding: 13px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
    opacity: 1;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
}

.why-cta:hover {
    background: var(--color-secondary);
}

/* Project Portfolio Section */
.portfolio-section {
    padding: 100px ;
    background: var(--color-white);
}

.portfolio-heading {
    font-size: 40px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.portfolio-subtitle {
    font-size: var(--fs-body);
    color: var(--color-text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
    line-height: 1.6;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 1;
    border-radius: 5px;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: var(--color-white);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.portfolio-overlay p {
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: var(--color-white);
    margin-bottom: 33px;
}

.faq-heading {
    font-size: 46px;
    font-weight: 500;
    font-style: normal;
    line-height: 170%;
    letter-spacing: 0px;
    color: var(--color-text);
    text-align: center;
    vertical-align: middle;
    margin-bottom: var(--spacing-lg);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #D0D0D0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) 0;
    cursor: pointer;
    font-size: 18px;
    color: var(--color-text);
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0%;
}

.faq-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--spacing-md);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    min-height: 0;
}

.faq-answer p {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 160%;
    letter-spacing: 0%;
    margin: 0;
    font-weight: 400;
    padding-bottom: var(--spacing-lg);
}

.faq-answer p {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 160%;
    letter-spacing: 0%;
    margin: 0;
    font-weight: 400;
}

/* Why Us Section */
.why-us-section {
    background: #E2F0F9;
    margin-top: 145px;
}

.why-us-heading {
    font-size: 46px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0px;
    color: #1a73B8;
    text-align: center;
    padding: 25px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.why-us-card {
    background: transparent;
    padding: var(--spacing-lg);
    transition: none;
    position: relative;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.why-us-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--spacing-lg);
    right: var(--spacing-lg);
    height: 1px;
    background: #D0D0D0;
}

.why-us-card:nth-child(4),
.why-us-card:nth-child(8) {
    border-right: none;
}

.why-us-card:nth-child(5)::after,
.why-us-card:nth-child(6)::after,
.why-us-card:nth-child(7)::after,
.why-us-card:nth-child(8)::after {
    display: none;
}

.why-us-card:hover {
    transform: none;
    box-shadow: none;
}

.why-us-text {
    flex: 1;
}

.why-us-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    background: #f0f0f0;
    border-radius: 8px;
}

.why-us-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1A72B9;
    margin-bottom: 8px;
    line-height: 1.4;
}

.why-us-card p {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) { .banner-content{ flex-direction: column; text-align: left; margin-top: -12px; } .banner-text{ display:flex; flex-direction:column; align-items:flex-start; } .banner-text h1{ font-size:28px; line-height:1.3; text-align:left; } .banner-subtitle{ text-align:left; margin-bottom:10px; } .banner-points{ text-align:center; list-style:disc; padding-left:18px; margin-bottom:14px; } .banner-points li{ padding-left:0; margin-bottom:4px; } .banner-points li::before{ display:none; } .banner-cta-mobile{ align-self:flex-start; margin-left:0; justify-content:flex-start; } .banner-actions { display:none; } .double-line { display:none; } .banner-cta-mobile{ display:flex; order:2; margin:12px 0; width:188px; height:48px; background:#F29F09; color:var(--color-white); text-decoration:none; border-radius:10px; font-size:16px; font-weight:600; text-align:center; gap:10px; align-items:center; justify-content:center; box-sizing:border-box; } .banner-image{ order:3; margin:0; } .sticky-heading h2{ text-align:center; font-size:28px; } .sticky-heading p{ text-align:center; } .portfolio-heading{ font-size:28px; } .faq-heading{ font-size:28px; } .why-us-heading{ font-size:28px; padding-top:51px; } .why-content{ grid-template-columns:1fr; } .why-image{ display:none; } .portfolio-grid{ grid-template-columns:repeat(2,1fr); } .portfolio-dots{ display:none; } .why-us-grid{ grid-template-columns:1fr; gap:0; } .why-us-card{ border-right:none; text-align:center; } .why-us-card h3{ text-align:center; } .why-us-card p{ text-align:center; } .why-us-card::after{ display:block !important; left:0; right:0; } }

@media (min-width: 501px) and (max-width: 768px) {
    .sticky-cards-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .sticky-heading {
        position: relative;
        top: 0;
    }
}





/* Portfolio Dots */
.portfolio-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    background: #1A72B9;
    padding: 10px 18px;
    border-radius: 25px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}


.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
}

@media (max-width: 768px) {
    .portfolio-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--spacing-md);
        padding-bottom: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .portfolio-grid::-webkit-scrollbar {
        display: none;
    }
    
    .portfolio-card {
        min-width: 100%;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .portfolio-dots {
        display: flex;
    }
}





@media (max-width: 500px) {

.sticky-cards-wrapper{
    grid-template-columns: 1fr;
}

.cards-container {
    min-height: 100vh;
}

.sticky-heading{
    position: relative;
    top: 0;
    margin-bottom: 30px;
    text-align: center;
}

.sticky-heading h2 {
    text-align: center;
    font-size: 28px;
}

.sticky-heading p {
    text-align: center;
}

.sticky-card{
    position: sticky;
    top: 70px;
    padding: 24px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    border-radius: 19px;
}





  .sticky-card {
    height: auto !important;
    min-height: unset !important;
  }

  .card-content {
    height: auto !important;
    min-height: unset !important;
    justify-content: flex-start !important;
    align-items: center;
    gap: 4px;
  }
.sticky-card:nth-child(1){ top:70px; }
.sticky-card:nth-child(2){ top:80px; }
.sticky-card:nth-child(3){ top:90px; }
.sticky-card:nth-child(4){ top:100px; }
.sticky-card:nth-child(5){ top:110px; }
.sticky-card:nth-child(6){ top:120px; }

.sticky-card > img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 24px;
    order: -1;
}

.card-content{
    width: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    order: 2;
    gap: 2px;
}

.card-content h3 {
    order: 1;
    text-align: center;
}

.card-content p {
    order: 2;
}

.card-content .card-btn {
    order: 3;
}

.card-content h3 {
    text-align: center;
    margin-bottom: 16px;
    font-size: 20px;
}

.card-content p {
    text-align: center;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
}

.card-btn {
    align-self: center;
    margin: 0;
    width: 114px;
    height: 48px;
    padding: 13px 20px;
    background: #086AD8;
    color: var(--color-white);
    border-radius: 10px;
    font-weight: 400;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
}

}





@media (min-width: 767px){

 .portfolio-dots {
        display: none;
    }
}


/* Mobile Section Padding - Reduce gaps for screens 767px and below */
@media (max-width: 767px) {
    .banner-section {
        margin-bottom: -60px;
    }

    .why-us-section{
        margin-top: 55px;
    }
    
    .sticky-cards-section {
        padding: 0 0 40px 0;
    }
     .banner-circle {
        display: none;
    }
    .why-section,
    .portfolio-section,
    .faq-section{
        padding: 23px 0;
    }
}








@media (max-width: 997px) {
  .sticky-card {
    position: sticky !important;
    top: 0 !important;
    transform: none !important;
  }

  .sticky-card:nth-child(2),
  .sticky-card:nth-child(3),
  .sticky-card:nth-child(4),
  .sticky-card:nth-child(5) {
    top: 0 !important;
  }

  .cards-container,
  .sticky-cards-wrapper {
    display: flex !important;
    flex-direction: column !important;
  }
}









