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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    min-width: 290px;
}

.main-container {
    width: 100%;
    overflow-x: hidden;
}

/* First Section - Logo */
.brand-showcase {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px); /* Subtract header height */
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    opacity: 0;
    transform: scale(0.8);
    margin-top: 0 !important;
}

/* Mobile adjustment for brand showcase */
@media (max-width: 768px) {
    .brand-showcase {
        height: calc(100vh - 60px); /* Subtract mobile header height */
    }
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 800px;
}

.logo-image {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.logo-subtext {
    font-size: clamp(1rem, 4vw, 1.8rem);
    letter-spacing: 2px;
    margin-top: 20px;
    align-self: flex-start;
    margin-left: 5%;
    opacity: 0;
}

/* Second Section - Social Titles */
.social-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 500px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5vh 0;
}

.social-content {
    text-align: center;
    max-width: 1000px;
    width: 90%;
}

.title-wrapper,
.subtitle-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    line-height: 1;
    gap: 8px;
}

.social-title-left,
.social-title-right,
.social-subtitle-left,
.social-subtitle-right {
    display: inline-block;
    font-weight: 500;
    opacity: 0;
}

.social-title-left {
    color: white;
    font-size: clamp(3rem, 14vw, 9rem);
    transform: translateX(-100px);
}

.social-title-right {
    color: #00a1ff;
    font-size: clamp(3rem, 14vw, 9rem);
    transform: translateX(100px);
}

.social-subtitle-left {
    color: #00a1ff;
    font-size: clamp(2rem, 10vw, 7rem);
    transform: translateX(-100px);
}

.social-subtitle-right {
    color: white;
    font-size: clamp(2rem, 10vw, 7rem);
    transform: translateX(100px);
}

/* Third and Fourth Sections - Shared Styles */
.social-description,
.concept-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 500px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5vh 5%;
}

.description-header {
    text-align: left;
    margin-bottom: 5px;
    padding-left: 5%;
    max-width: 1200px;
    margin: 0 auto 5px auto;
    width: 100%;
}

.description-title {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 5px;
}

.title-line-wrapper {
    display: flex;
    margin-bottom: 0.2em;
    flex-wrap: wrap;
}

.title-line {
    position: relative;
    display: inline-block;
    font-size: clamp(1.8rem, 7vw, 4rem);
    font-weight: 500;
    margin-right: 0.3em;
    opacity: 0;
}

.title-line-1 {
    color: #000;
    transform: translateX(-100%);
}

.title-line-2 {
    color: #00a1ff;
    transform: translateX(100%);
}

.content-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
}

.text-container {
    flex: 1;
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.text-wrapper {
    max-width: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.description-text {
    font-size: clamp(1.1rem, 3.8vw, 1.8rem);
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.images-container {
    display: flex;
    gap: 15px;
    width: 100%;
    padding-right: 0;
    align-items: flex-start;
    height: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.desc-image {
    width: 100%;
    max-width: 260px;
    min-width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(50px);
}

.footer-container {
    margin-top: 40px;
    text-align: left;
    padding-left: 5%;
    opacity: 1;
}

.small-logo {
    width: clamp(50px, 15vw, 100px);
}

.scroll-space {
    height: 30vh;
}

/* Brand Promise Section */
.brand-promise {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 500px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5vh 5%;
    overflow: hidden;
}

.promise-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.promise-box {
    position: relative;
    padding: 30px 20px;
    border: 2px solid #00a1ff;
    transform: translateX(100%);
    opacity: 0;
    width: 100%;
}

.promise-text {
    font-weight: 500;
    font-size: clamp(1.2rem, 4vw, 2rem);
    line-height: 1.4;
    text-align: center;
}

.text-white {
    color: white;
}

.text-blue {
    color: #00a1ff;
}

/* Image Grid Section */
.image-grid-section {
    width: 100%;
    min-height: 100vh;
    min-height: 500px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
    overflow: hidden;
}

.grid-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.grid-item {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
}

.grid-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.top-image {
    transform: translateY(-100%);
    opacity: 0;
}

.bottom-image {
    transform: translateY(100%);
    opacity: 0;
}
.full-image-section {
  background-color: #000;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.full-image-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* Unconventional Thinking Section */
/* Unconventional Section - Proportional Scaling */
/* Unconventional Thinking Section - Final Perfect Version */
.unconventional-section {
    width: 100%;
    min-height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5% 8%;
    position: relative;
    overflow: hidden;
}

.unconventional-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.unconventional-content {
    display: flex;
    width: 100%;
    gap: 60px;
    align-items: center;
}

/* Text Block - Perfectly Matched to Target Image */
.unconventional-text {
    flex: 1;
    min-width: 40%;
    display: flex;
    align-items: center;
    padding-right: 40px;
}

.unconventional-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.82rem, 2.3vw, 1.15rem); /* Precise target size */
    line-height: 1.1; /* Tight spacing */
    margin: 0;
    letter-spacing: -0.02em; /* Slightly tighter letters */
}

.text-blue {
    color: #00a1ff;
    font-weight: 700;
    display: block;
    margin-bottom: 3px; /* Minimal gap */
}

.text-black {
    color: #000;
    font-weight: 400;
    display: block;
}

/* Phone Display - Unchanged Perfect Version */
.unconventional-phones {
    flex: 1;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    height: 70vh;
    position: relative;
}

.phone-screen {
    width: auto;
    height: 80vh;
    max-height: 800px;
    min-height: 500px;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    transform-origin: center bottom;
}

.phone-1 {
    transform: rotate(-10deg);
    z-index: 2;
}

.phone-2 {
    transform: rotate(10deg);
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 1600px) {
    .phone-screen {
        height: 75vh;
    }
}

@media (max-width: 1200px) {
    .unconventional-content {
        gap: 40px;
    }
    .phone-screen {
        height: 70vh;
    }
}

@media (max-width: 1024px) {
    .unconventional-content {
        flex-direction: column;
    }
    .unconventional-text {
        min-width: 100%;
        margin-bottom: 60px;
        padding-right: 0;
        text-align: center;
    }
    .phone-screen {
        height: 65vh;
    }
}

@media (max-width: 768px) {
    .unconventional-phones {
        flex-direction: row;
        gap: 20px;
        height: 60vh;
    }
    .phone-screen {
        height: 55vh;
        transform: rotate(0deg);
    }
    .unconventional-headline {
        font-size: clamp(0.78rem, 2.5vw, 1rem);
    }
}

@media (max-width: 480px) {
    .unconventional-phones {
        flex-direction: column;
        gap: 30px;
        height: 50vh;
    }
    .phone-screen {
        height: 45vh;
    }
    .unconventional-headline {
        font-size: clamp(0.72rem, 2.8vw, 0.9rem);
    }
}

/* Animations */
@keyframes phoneRise {
    0% {
        transform: translateY(120px) rotate(0deg);
        opacity: 0;
    }
    100% { 
        transform: translateY(0) rotate(var(--final-rotation));
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Business Adoption Section */
/* Updated Business Adoption Section */
.business-adoption-section {
    width: 100%;
    min-height: 100vh;
    min-height: 500px;
    display: flex;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.business-adoption-container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.business-adoption-left {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10% 5%;
}

.business-adoption-right {
    flex: 1;
    background: #000000;
    display: flex;
    flex-direction: column;
    padding: 10% 5%;
    position: relative;
    justify-content: space-between;
}

.business-adoption-content {
    max-width: 500px;
    width: 100%;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.stat-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 15px;
}

/* Changed 77% to blue */
.stat-number {
    color: #00a1ff;
    display: inline;
}

.did-you-know {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 500;
    color: #ffffff;
    text-transform: lowercase;
    margin: 0;
    text-align: center;
    margin-bottom: 20px; /* Added space below */
}

/* Made 73% bigger and adjusted spacing */
.right-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(5rem, 18vw, 10rem); /* Increased size */
    font-weight: 500;
    color: #ffffff;
    line-height: 0.9; /* Adjusted line height */
    margin: 20px 0 10px 0; /* Reduced top margin */
    text-align: center;
}

/* Moved text lower */
.right-stat-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
    margin-top: 30px; /* Increased space above */
    text-align: center;
    padding-bottom: 5%;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .business-adoption-container {
        flex-direction: row;
    }
    
    .did-you-know {
        text-align: right;
        margin-bottom: 30px;
    }
    
    .right-stat-number {
        text-align: left;
        margin-left: 5%;
        font-size: clamp(6rem, 20vw, 12rem); /* Larger on desktop */
    }
    
    .right-stat-text {
        text-align: left;
        margin-top: 40px; /* More space on desktop */
    }
}

/* Animations */
@keyframes zoomIn {
    to { opacity: 1; transform: scale(1); }
}

@keyframes zoomOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.8); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes slideInFromLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutToLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-100%); opacity: 0; }
}

@keyframes slideInFromRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutToRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideBoxIn {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideBoxOut {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
    }
    
    .images-container {
        width: 50%;
        padding-left: 0;
        justify-content: flex-end;
    }
    
    .grid-row {
        flex-direction: row;
    }
    
    .grid-item {
        width: 32%;
        margin-bottom: 0;
    }
    
    .masonry-container {
        flex-direction: row;
        gap: 20px;
    }
    
    .masonry-col {
        width: calc(33.333% - 14px);
    }
    
    .unconventional-content {
        flex-direction: row;
    }
    
    .unconventional-text {
        text-align: left;
    }
    
    .unconventional-phones {
        flex-direction: row;
    }
    
    .business-adoption-container {
        flex-direction: row;
    }
    
    .did-you-know {
        text-align: right;
    }
    
    .right-stat-number {
        text-align: left;
        margin-left: 5%;
    }
    
    .right-stat-text {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .static-overlap-container {
        height: 80vh;
    }
    
    .static-overlap-image {
        position: absolute;
        max-height: 100%;
    }
    
    .static-top-left {
        top: 5%;
        left: 5%;
        max-width: 280px;
        z-index: 3;
    }

    .static-bottom-left {
        bottom: 5%;
        left: 8%;
        max-width: 250px;
        z-index: 3;
    }

    .static-middle {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 380px;
        max-height: 90%;
        z-index: 2;
    }

    .static-top-right {
        top: 10%;
        right: 8%;
        max-width: 270px;
        z-index: 3;
    }

    .static-bottom-right {
        bottom: 8%;
        right: 5%;
        max-width: 260px;
        z-index: 3;
    }

    .event-text {
        position: absolute;
    }

    .event-title {
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
    }

    .event-date {
        bottom: 20%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .unconventional-phones {
        flex-direction: row;
    }
    
    .phone-screen {
        height: 60vh;
        width: auto;
    }
    
    .phone-1 {
        transform: rotate(-5deg);
    }
    
    .phone-2 {
        transform: rotate(5deg);
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .logo-subtext {
        margin-left: 12%;
    }
    
    .title-wrapper,
    .subtitle-wrapper {
        gap: 15px;
    }
    
    .social-title-left,
    .social-title-right {
        font-size: clamp(5rem, 14vw, 9rem);
    }
    
    .social-subtitle-left,
    .social-subtitle-right {
        font-size: clamp(3.5rem, 10vw, 7rem);
    }
    
    .title-line {
        margin-right: 0.5em;
        font-size: clamp(2.5rem, 7vw, 4rem);
    }
    
    .description-text {
        font-size: clamp(1.4rem, 3.8vw, 1.8rem);
    }
    
    .promise-box {
        padding: 60px 40px;
        border: 3px solid #00a1ff;
    }
    
    .promise-text {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
    
    .grid-image {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .unconventional-headline {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .section-title {
        font-size: clamp(1.2rem, 2vw, 1.5rem);
    }
    
    .stat-text {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .right-stat-number {
        font-size: clamp(6rem, 15vw, 12rem);
    }
    
    .right-stat-text {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }
}

/* General Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Portfolio container styles - NOT for header */
section .container:not(.main-header .container),
.portfolio-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.section {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  border: 1px solid #ddd;
  margin: 10px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.header {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.section p {
  font-size: 16px;
  line-height: 1.5;
}

.button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.button:hover {
  background-color: #0056b3;
}

/* Small Screen Fixes: Media Queries */
@media (max-width: 430px) {
  section .container:not(.main-header .container),
  .portfolio-container {
    flex-direction: column;
    padding: 10px;
  }

  .section {
    width: 100%;
    margin-bottom: 10px;
  }

  .header {
    font-size: 22px;
  }

  .section p {
    font-size: 14px;
  }

  .button {
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .header {
    font-size: 20px;
  }

  .section p {
    font-size: 13px;
  }

  section .container:not(.main-header .container),
  .portfolio-container {
    padding: 5px;
  }

  .button {
    font-size: 12px;
  }
}

@media (max-width: 340px) {
  .header {
    font-size: 18px;
  }

  .section p {
    font-size: 12px;
  }

  section .container:not(.main-header .container),
  .portfolio-container {
    padding: 5px;
  }

  .button {
    font-size: 11px;
  }
}

@media (max-width: 290px) {
  .header {
    font-size: 16px;
  }

  .section p {
    font-size: 10px;
  }

  section .container:not(.main-header .container),
  .portfolio-container {
    padding: 2px;
  }

  .button {
    font-size: 10px;
  }
}

/* Add styles for elements with small widths */
@media (max-width: 290px) {
  .section {
    padding: 10px;
    min-width: 100%;
  }
  section .container:not(.main-header .container),
  .portfolio-container {
    gap: 5px;
  }
}
/* Exact Text Layout Section */
/* Pixel-Perfect Boost Section */


@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');

/* Boost Section */
/* Boost Section */
.boost-section {
    width: 100%;
    min-height: 100vh;
    background: #000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 15% 0 10%;
    box-sizing: border-box;
    position: relative;
}

.boost-container {
    width: 100%;
    max-width: 1400px;
    text-align: right;
}

.boost-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 7rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: lowercase;
    margin: 0;
    padding: 0;
    letter-spacing: -2px;
    display: inline-block;
}

.line-1 {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.line-1::first-letter {
    text-transform: uppercase;
}

.line-2 {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.blue-text {
    color: #00a1ff;
    transition: opacity 0.3s ease;
}

.line-3 {
    color: #00a1ff;
    transition: opacity 0.3s ease 0.4s;
}

/* Responsive adjustments */
@media (max-width: 1600px) {
    .boost-headline { font-size: 6.5rem; }
}
@media (max-width: 1400px) {
    .boost-headline { font-size: 6rem; }
}
@media (max-width: 1200px) {
    .boost-headline { 
        font-size: 5rem;
        line-height: 1.15;
    }
}
@media (max-width: 992px) {
    .boost-headline { 
        font-size: 4.5rem;
    }
    .boost-section { padding: 0 12% 0 8%; }
}
@media (max-width: 768px) {
    .boost-headline { 
        font-size: 4rem;
        line-height: 1.2;
    }
}
@media (max-width: 576px) {
    .boost-headline { 
        font-size: 3.5rem;
    }
    .boost-section { padding: 0 10%; }
}

/* Mission Section Styles /* Corrected Mission Section */
.mission-section {
    background-color: #F6F0EB;
    padding: 80px 5%;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.mission-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.mission-content {
    flex: 1;
    max-width: 480px;
    padding-top: 0;
}

/* Only these specific classes are modified - everything else remains exactly the same */
.mission-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.1; /* Changed from 1.2 */
    letter-spacing: -0.5px;
    margin-bottom: 25px;
    color: #000;
}

.text-line {
    display: block;
    margin-bottom: 0;
    white-space: nowrap; /* Added to prevent unwanted wrapping */
}

.text-dash {
    color: #000;
    margin-right: 4px;
    display: inline; /* Changed to inline to keep dash with text */
}

.text-blue {
    color: #00a1ff;
    display: inline; /* This ensures proper flow with surrounding text */
}

.mission-description {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0;
}

/* Right Visual Section */
.mission-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 520px;
}

.laptop-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.laptop-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Laptop Screen */
.laptop-screen {
    position: absolute;
    top: 6.8%;
    left: 12.2%;
    width: 75.5%;
    height: 82.5%;
    background-color: #000;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 12px 15px;
    box-sizing: border-box;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.screen-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #333;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: #ccc;
}

.screen-body {
    display: flex;
    flex: 1;
    gap: 20px;
    padding: 8px 0;
}

.screen-column {
    flex: 1;
}

.screen-column h3 {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #00a1ff;
}

.screen-column pre, .screen-column p {
    font-size: 0.8rem;
    margin: 6px 0;
    color: #fff;
    white-space: pre-wrap;
    line-height: 1.4;
}

.screen-footer {
    display: flex;
    justify-content: space-between;
    padding: 8px 0 0;
    border-top: 1px solid #333;
    margin-top: auto;
    font-size: 0.7rem;
    color: #ccc;
    flex-wrap: wrap;
    gap: 8px;
}

.screen-footer span:first-child {
    flex-basis: 100%;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 500;
}

.screen-footer span:not(:first-child) {
    white-space: nowrap;
}

/* Boost Button */
.screen-toggle {
    background-color: #00a1ff;
    color: white;
    border: none;
    padding: 12px 28px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-right: 0;
}

.screen-toggle:hover {
    background-color: #0088dd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 161, 255, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .mission-headline {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .mission-container {
        flex-direction: column;
        gap: 40px;
    }
    .mission-content {
        max-width: 100%;
    }
    .mission-visual {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 5%;
    }
    .mission-headline {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .mission-headline {
        font-size: 1.6rem;
    }
    .mission-description {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .mission-headline {
        font-size: 1.4rem;
    }
    .laptop-screen {
        padding: 8px 10px;
    }
}

/* Pharmacy Section Styles */
/* Base Responsive Units */
:root {
  --footer-height: 3.2%;
  --width-expansion: 0.125cm;
}

.pharmacy-section {
  background-color: #fff;
  padding: 10vw 5%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
}

.pharmacy-container {
  width: 100%;
  max-width: min(90vw, 800px);
  margin: 0 auto;
}

/* Laptop Frame */
.laptop-animation-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1600/900;
}

.laptop-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Main Buttons */
.clickable-area {
  position: absolute;
  cursor: pointer;
  z-index: 2;
}

.contact-btn {
  top: 71%;
  left: 20%;
  width: 18%;
  height: 5%;
}

.call-btn {
  top: 71%;
  left: 40%;
  width: 18%;
  height: 5%;
}

/* Footer - FINAL POSITION under buttons */
.repositioned-footer {
  position: absolute;
  bottom: 6%; /* Adjusted to be perfectly under buttons */
  left: 20%;
  width: 40%;
  height: var(--footer-height);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  opacity: 0.7;
}

/* Boostigital Overlay - With visible close button */
.boostigital-overlay {
  position: absolute;
  top: 6.8%;
  left: calc(9% - var(--width-expansion));
  width: calc(81% + (2 * var(--width-expansion)));
  height: 82.5%;
  background: #000;
  display: none;
  border-radius: 4px;
  overflow: hidden;
  z-index: 3;
}

.boostigital-image {
  width: calc(108% + var(--width-expansion));
  height: 102%;
  object-fit: contain;
  position: relative;
  left: calc(var(--width-expansion) / -2);
}

/* VISIBLE CLOSE BUTTON */
.close-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #00a1ff;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* VISIBLE INSTRUCTION TEXT */
.animation-instruction {
  display: block;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  color: #666;
  text-align: center;
  margin-top: 1.2rem;
  transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  :root {
    --width-expansion: 0.0625cm;
  }
  
  .repositioned-footer {
    bottom: 6%;
  }
  
  .close-overlay {
    width: 25px;
    height: 25px;
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .contact-btn { left: 18%; }
  .call-btn { left: 38%; }
  .repositioned-footer { 
    left: 18%;
    width: 44%;
  }
}

@media (max-width: 290px) {
  :root {
    --width-expansion: 0.04cm;
  }
  
  .animation-instruction {
    font-size: 0.7rem;
  }
}

.ux-section {
  background-color: #000; /* Black background */
  padding: 8rem 5%; /* Responsive padding */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ux-container {
  max-width: 1200px;
  width: 100%;
}

.ux-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2.5rem); /* Responsive font scaling */
  line-height: 1.3;
  letter-spacing: -0.5px;
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
}

.ux-text-white {
  color: #fff;
  display: inline; /* Keeps text flowing naturally */
}

.ux-text-blue {
  color: #00a1ff; /* Your brand blue */
  display: inline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ux-section {
    padding: 6rem 5%;
  }
  
  .ux-headline {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .ux-section {
    padding: 4rem 5%;
  }
  
  .ux-headline {
    text-align: left;
  }
}

/* Conversion Boost Section - Fully Independent Styles */
/* Conversion Boost Section - Perfect Positioning */
.conversion-boost-section {
    width: 100%;
    min-height: 100vh;
    min-height: 500px;
    display: flex;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.conversion-boost-container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.conversion-boost-left {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10% 5%;
}

.conversion-boost-right {
    flex: 1;
    background: #000000;
    position: relative;
    padding: 10% 5%;
}

.conversion-boost-content {
    max-width: 500px;
    width: 100%;
}

.conversion-boost-title {
    font-family: 'Space Mono', monospace;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.2;
}

.conversion-boost-text {
    font-family: 'Space Mono', monospace;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 15px;
}

.conversion-highlight {
    color: #0066ff;
    display: inline;
    font-weight: 700;
}

/* Right Side - Precise Positioning */
.conversion-did-you-know {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    color: #ffffff;
    text-transform: lowercase;
    position: absolute;
    top: 8%;
    right: 8%;
    margin: 0;
    text-align: right;
}

.conversion-big-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(5rem, 22vw, 12rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 0.8;
    position: absolute;
    top: 45%;
    left: 8%;
    transform: translateY(-50%);
    margin: 0;
}

.conversion-right-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    position: absolute;
    bottom: 8%;
    left: 8%;
    right: 8%;
    margin: 0;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .conversion-boost-container {
        flex-direction: row;
    }
    
    .conversion-boost-left {
        padding: 5% 10%;
    }
    
    .conversion-boost-right {
        padding: 5% 10%;
    }
    
    .conversion-did-you-know {
        top: 10%;
        right: 10%;
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    }
    
    .conversion-big-number {
        left: 10%;
        font-size: clamp(6rem, 22vw, 14rem);
        top: 45%;
    }
    
    .conversion-right-text {
        left: 10%;
        right: 10%;
        bottom: 10%;
        font-size: clamp(1rem, 2vw, 1.2rem);
    }
}

/* Tiny Screen Optimization (290px-400px) */
@media (max-width: 400px) {
    .conversion-did-you-know {
        top: 5%;
        right: 5%;
        font-size: 0.9rem;
    }
    
    .conversion-big-number {
        font-size: 4.5rem;
        top: 42%;
        left: 5%;
    }
    
    .conversion-right-text {
        bottom: 5%;
        left: 5%;
        right: 5%;
        font-size: 0.85rem;
    }
}


/* Hero Boost Section */
/* Hero Boost Section */
.hero-boost-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    padding: 40px 20px;
    box-sizing: border-box;
}

.hero-boost-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    gap: 40px;
}

.hero-boost-logo {
    width: min(100%, 520px);
    height: auto;
    object-fit: contain;
}

.hero-boost-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    text-transform: lowercase;
}

.capital-b {
    text-transform: capitalize;
    display: inline;
}

/* Tiny Screen Adjustments (290px-400px) */
@media (max-width: 400px) {
    .hero-boost-container {
        gap: 30px;
    }
    
    .hero-boost-tagline {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
        line-height: 1.4;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Force LTR for brand showcase section */
.brand-showcase {
    direction: ltr !important;
}

/* Fix for pharmacy section buttons */
.clickable-area {
    cursor: pointer;
}

/* Make sure mission section buttons work */
.screen-toggle[data-lang="ar"] {
    display: none;
}
.screen-toggle[data-lang="en"] {
    display: block;
}
body[dir="rtl"] .screen-toggle[data-lang="ar"] {
    display: block;
}
body[dir="rtl"] .screen-toggle[data-lang="en"] {
    display: none;
}
/* Enhanced Portfolio Mobile View */
@media (max-width: 768px) {
    .brand-showcase {
        padding: 30px 15px;
        /* height is already set above: calc(100vh - 60px) */
        min-height: 400px;
    }
    
    .logo-wrapper {
        width: 95%;
    }
    
    .logo-image {
        max-width: 250px;
    }
    
    .logo-subtext {
        font-size: 1rem;
        margin-top: 15px;
    }
    
    /* Section fixes */
    .section-intro, .section-description {
        padding: 20px 15px;
    }
    
    .unconventional-headline {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .stat-text {
        font-size: 1.2rem;
    }
    
    .right-stat-number {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 200px;
    }
    
    .logo-subtext {
        font-size: 0.9rem;
    }
    
    .right-stat-number {
        font-size: 3rem;
    }
}
