/* ===========================================
   BLITZ INTERACTIVE - OPTIMIZED STYLESHEET
   =========================================== */

/* ===========================================
   CSS VARIABLES & FONTS
   =========================================== */
   :root {
        --primary-color: #1D0856;
        --secondary-color: #E0FF6D;
        --tertiary-color: #B7A5FF;
        --quaternary-color: #555555;
        --accent-color: #B3D633;
        --text-light: #fff;
        --text-dark: #0E1114;
        --text-muted: #919AA7;
        --bg-dark: #0E1114;
        --bg-secondary: #141B23;
        --footer-bg: #000000;
        --border-radius: 12px;
        --transition: all 0.3s ease;
        --shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        --shadow-light: 0 4px 16px rgba(0, 0, 0, 0.4);
    }
 

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


@font-face {
    font-family: 'Power Grotesk';
    src: url('../fonts/PowerGrotesk.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ===========================================
   GLOBAL STYLES & RESET
   =========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--primary-color);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================================
   TYPOGRAPHY
   =========================================== */
h1, h2, h3, h4, h5, h6 , .h1, .h2, .h3, .h4,.h5,.h6 {
    font-family: 'Power Grotesk', sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
}

h1,.h1{
    font-size: 72px;
}
h2,.h2{
    font-size: 56px;
}
h3,.h3{
    font-size: 40px;
}
h4,.h4{
    font-size: 32px;
}
h5,.h5{
    font-size: 24px;
}
h6,.h6{
    font-size: 18px;
}

.highlight {
    color: var(--tertiary-color);
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    margin-bottom: 1rem;
}

/* ===========================================
   NAVIGATION
   =========================================== */
/* .navbar {
    background-color: var(--primary-color);
    border: none;
    transition: var(--transition);
}

.navbar-brand {
    color: var(--text-light) !important;
    font-weight: 600;
}

.navbar-nav > li > a {
    color: var(--text-light) !important;
    transition: var(--transition);
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    color: var(--secondary-color) !important;
}

.navbar-nav > .active > a {
    background-color: transparent !important;
    color: var(--secondary-color) !important;
} */

/* ===========================================
   HERO SECTION
   =========================================== */
.navbar{
    background-color: #130240;
}
.hero-section { 
    background-color: #130240;
    position: relative; 
    padding: 30px; 
    display: flex;
    align-items: center;
    width: 100%; 
   
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px; 
    width: 500px;
    height: 500px;
    background-image: url('../images/hero-img.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: 9;
    transition: var(--transition);
}

.hero-section::after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: -150px;
    border-radius: 50%;
    width: 400px;
    height: 400px;
    background: #B7A5FF; 
    filter: blur(600px);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    width: 65%;
    color: var(--text-light);
    z-index: 2;
    padding-right: 20px;
}

.hero-title {  
    margin-bottom: 20px;
}

.highlight {
    color: #B7A5FF;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}

.hero-subtitle { 
    margin-top: 30px;
    margin-bottom: 30px;
}

.hero-btn,
.explore-btn button {
    padding: 12px 30px;
    border-radius: 12px;
    background: linear-gradient(90deg, #B3D633 0%, #E0FF6D 100%);
    color: #1D0856;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    margin-bottom: 60px;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn:hover,
.explore-btn button:hover {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
} 



/* ===========================================
   SECTION STYLES
   =========================================== */
.who-we-are-section,
.how-we-work-section,
.booked-by-strategy-section {
    color: var(--text-light);
    margin: 3rem;  
} 

.section-title { 
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.section-title.left-align {
    text-align: left;
}

.booked-by-strategy-section .section-title{
    text-align: left;
}
.section-text {
    font-family: 'Poppins', sans-serif; 
    color: var(--text-light);
    text-align: left;
    line-height: 1.7;
}

.who-we-are-section .image-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-we-are-img { 
    width: 70%;
    max-width: 400px;
    transition: var(--transition);
}

/* ===========================================
   WHAT WE DO SECTION
   =========================================== */
.what-we-do-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.what-we-do-section .title-section {
    margin-bottom: 150px;
    text-align: center;
}

.what-we-do-section .body-section {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
}

.transparent-box {
    width: 400px;
    height: 500px;
    position: relative;
    border-radius: 3rem;
    padding: 150px 30px 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    background-color: rgba(255, 255, 255, 0.05);
    border: 3.28px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(32.77px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.transparent-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.transparent-box .title {
    font-size: 24px;
    color: var(--text-light);
    text-align: center;
}

.transparent-box .description p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 1rem;
}

.what-we-do-section .image {
    position: absolute;
    width: 300px;
    height: 300px;
    top: -150px;
}

.what-we-do-section .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===========================================
   STATS SECTION
   =========================================== */
.states-section { 
    background-color: #15053f66;
    padding: 50px 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: var(--border-radius);
}

.states-section .item { 
    text-align: left;
}

.item .title { 
    color: var(--secondary-color); 
    margin-bottom: 0.5rem;
}

.item .counts { 
    color: var(--text-light);
    opacity: 0.8;
}

/* ===========================================
   HOW WE WORK SECTION
   =========================================== */
.how-we-work-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:20px;
}

.how-we-work-section .title-section {
    margin-bottom: 50px;
    text-align: center;
}

.how-we-work-section .body-section { 
    position: relative;
    width: 100%;
    padding: 50px;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.how-we-work-section .body-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind everything */
    opacity: 0.7;
    pointer-events: none;
    background-image: url('../images/dashed-line.png');
    background-size: 100% auto;      /* Full width, proportional height */
    background-repeat: no-repeat;
    background-position: center;
}

.how-we-work-section .body-section > * {
    position: relative;
    z-index: 1; /* Above the dashed line */
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.badge-image {
    width: 200px;
    height: 200px; 
    background-image: url('../images/icons/5.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-item .title {
    color: var(--accent-color); 
    background-color: var(--primary-color);
    padding: 5px; 
    text-align: center;
}

/* ===========================================
   FEATURED PROJECTS
   =========================================== */
.featured-projects {
    margin: 3rem;
    padding: 4rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(185, 155, 255, 0.1) 0%, rgba(29, 8, 86, 0) 100%);
    backdrop-filter: blur(300px);
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 4px solid var(--tertiary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 300px;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-card img.project-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover img.project-image {
    transform: scale(1.05);
}

.project-card .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px;
    color: var(--text-light);
    z-index: 1;
    overflow: hidden;
}

.project-card .overlay-gradient {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(29, 8, 86, 0) 9.32%,
        rgba(29, 8, 86, 0.7) 55.09%,
        var(--primary-color) 100%
    );
    opacity: 0.8;
    z-index: -1;
    transition: var(--transition);
}

.project-card:hover .overlay-gradient {
    opacity: 1;
}

.project-info {
    max-width: 80%;
    z-index: 2;
}

.project-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 5px;
    color: var(--text-light);
}

.project-description {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1.4em * 3);
    color: var(--text-light);
    opacity: 0.9;
}

.arrow-icon {
    z-index: 2;
    display: flex;
    align-items: flex-start;
    height: calc(1.4em * 3);
}

.arrow-icon img {
    width: 30px;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.project-card:hover .arrow-icon img {
    transform: translateX(5px);
}

/* ===========================================
   BOOKED BY STRATEGY SECTION
   =========================================== */
.booked-by-strategy-section .image-box img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.booked-by-strategy-section .image-box img:hover {
    transform: scale(1.02);
}

/* ===========================================
FOOTER
=========================================== */
.footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: 40px 0;
    font-family: 'Figtree', sans-serif !important;
    box-sizing: border-box;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    display: inline-block;
    margin-right: 20px;
}

.footer ul li:last-child {
    margin-right: 0;
}

.footer ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--accent-color);
}

.footer p,
.footer .newsletter p {
    color: var(--text-muted);
    margin-top: 20px;
}

.footer h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.newsletter form {
    display: flex;
    width: 100%;
    max-width: 400px;
    align-items: center;
    gap: 8px;
}

.newsletter input[type="email"] {
    flex: 1;
    background-color: var(--bg-secondary);
    border: none;
    color: var(--text-light);
    height: 48px;
    padding: 0 12px;
    border-radius: 4px;
}

.newsletter input::placeholder {
    color: #344252 !important;
}

.newsletter button {
    background-color: #B3D633;
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border-radius: 4px;
}

.icons-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px; 
    width: 100%;
} 

.icons-right-border .apple-icon, 
.icons-right-border .google-icon{
    width: 100px;
} 
 

.newsletter button:hover {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
}

.social-icons {
    margin-top: 16px;
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color);
}

.icons-right-border {
    display: flex;
    align-items: end;
    justify-content: end;
    border-bottom: 1px solid #FFFFFF1A;
    padding-bottom: 16px;
    /* Optional: space between images and border */
    margin-bottom: 16px;
    /* Optional: space below border */
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #FFFFFF1A;
}
/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3.75rem;
    }
}

/* Desktop */
@media (max-width: 1199.98px) {
    .what-we-do-section .body-section {
        flex-direction: column;
        gap: 60px;
    }
    
    .transparent-box {
        width: 100%;
        max-width: 500px;
    }
    
    .how-we-work-section .body-section {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .badge-item {
        flex: 1;
        min-width: 200px;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .hero-section::before {
        width: 400px;
        height: 400px;
        bottom: 15px;
        right: 15px;
    }
    
    .hero-section::after {
        width: 350px;
        height: 350px;
        bottom: -120px;
        filter: blur(500px);
    }
    
    .hero-content {
        padding-right: 15px;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-btn {
        font-size: 20px;
        padding: 12px 25px;
        margin-bottom: 40px;
    }
    
    .who-we-are-section {
        padding: 3rem 20px;
    }
    
    .who-we-are-img {
        max-width: 90vw;
    }
    
    .states-section {
        padding: 40px 60px;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .states-section .item {
        width: calc(50% - 15px);
        min-width: 150px;
    }
    
    .how-we-work-section .body-section {
        background-image: none;
        padding: 60px 40px;
        flex-direction: column;
    }
    
    .featured-projects {
        margin: 2rem;
        padding: 2rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .hero-section {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        min-height: auto;
        position: relative;
    }
    
    .hero-section::before {
        width: 280px;
        height: 280px;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
    }
    
    .hero-section::after {
        width: 250px;
        height: 250px;
        right: 50%;
        transform: translateX(50%);
        bottom: -100px;
        filter: blur(300px);
        position: absolute;
    }
    
    .hero-content {
        margin-bottom: 30px;
        padding-right: 0;
        text-align: center;
        position: relative;
        z-index: 10;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-btn {
        font-size: 16px;
        padding: 10px 20px;
        margin-bottom: 20px;
        width: auto;
        display: inline-block;
    }
    
    .row.align-items-center {
        min-height: 60vh;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .who-we-are-section {
        padding: 2rem 8px;
    }
    
    .who-we-are-img {
        max-width: 90vw;
        margin-bottom: 1.5rem;
    }
    
    .what-we-do-section {
        padding: 40px 20px;
    }
    
    .what-we-do-section .title-section {
        margin-bottom: 60px;
    }
    
    .transparent-box {
        height: auto;
        min-height: 400px;
        padding: 120px 20px 30px;
    }
    
    .what-we-do-section .image {
        width: 250px;
        height: 250px;
        top: -125px;
    }
    
    .states-section {
        padding: 30px 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .states-section .item {
        width: 100%;
    }
    
    .how-we-work-section {
        padding: 40px 20px;
    }
    
    .how-we-work-section .body-section {
        padding: 40px 20px;
        margin-bottom: 60px;
    }
    
    .badge-item {
        min-width: auto;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .featured-projects {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .project-card {
        height: 250px;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-menue li {
        display: block;
        margin: 0.25rem 0;
    }
    
    .newsletter form {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .hero-section::before {
        width: 200px;
        height: 200px;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-section::after {
        width: 180px;
        height: 180px;
        filter: blur(200px);
    }
    
    .hero-content {
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-btn {
        font-size: 14px;
        padding: 8px 16px;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .transparent-box {
        padding: 100px 15px 25px;
    }
    
    .what-we-do-section .image {
        width: 200px;
        height: 200px;
        top: -100px;
    }
    
    .project-card {
        height: 200px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .project-description {
        font-size: 12px;
    }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.w-50 {
    width: 50%;
}

.p-0 {
    padding: 0;
}

.position-relative {
    position: relative;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* ===========================================
   ANIMATIONS & TRANSITIONS
   =========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===========================================
   ACCESSIBILITY
   =========================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .highlight {
        color: var(--secondary-color);
    }
    
    .transparent-box {
        border-color: var(--text-light);
    }
}