.scroll-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(.7, .2, .3, 1.2), transform 0.8s cubic-bezier(.7, .2, .3, 1.2);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Wave movement animation */
@keyframes waveOutLeft {
    0% {
        opacity: 0;
        transform: translateX(0) scaleY(0.98);
    }

    100% {
        opacity: 1;
        transform: translateX(-120px) scaleY(1);
    }
}

@keyframes waveOutRight {
    0% {
        opacity: 0;
        transform: translateX(0) scaleY(0.98);
    }

    100% {
        opacity: 1;
        transform: translateX(120px) scaleY(1);
    }
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95) rotate(-8deg);
    }

    60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.03) rotate(2deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(-2deg);
    }
}

@keyframes fadeInWave {
    0% {
        opacity: 0;
        transform: scaleX(0.7) scaleY(0.7) translateY(40px);
    }

    80% {
        opacity: 1;
        transform: scaleX(1.05) scaleY(1.05) translateY(-8px);
    }

    100% {
        opacity: 1;
        transform: scaleX(1) scaleY(1) translateY(0);
    }
}

@keyframes fadeInLogo {
    0% {
        opacity: 0;
        transform: scale(0.7) rotate(-8deg);
    }

    80% {
        opacity: 1;
        transform: scale(1.05) rotate(2deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(-2deg);
    }
}

@keyframes fadeInButton {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(40px) rotate(-8deg);
    }

    80% {
        opacity: 1;
        transform: scale(1.05) translateY(-8px) rotate(2deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(-2deg);
    }
}

.hero-box-custom {
    animation: fadeInUp 1s cubic-bezier(.7, .2, .3, 1.2) 0.2s both;
    animation: fadeInLogo 1.2s cubic-bezier(.7, .2, .3, 1.2) 0.4s both;
    border-radius: 40px;
    border-width: 8px;
    box-shadow: 12px 12px 0 #231f20;
    transform: rotate(-2deg);
    padding: 40px 0 40px 0;
    max-width: 900px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 70px;
    align-items: center;
}

.hero-cta-custom {
    animation: fadeInButton 1.1s cubic-bezier(.7, .2, .3, 1.2) 0.7s both;
}

.hero-wave-left {
    opacity: 0;
    animation: waveOutLeft 1.3s cubic-bezier(.7, .2, .3, 1.2) 1.3s both;
    position: absolute;
    left: -60px;
    top: -40px;
    max-width: 100vw;
    overflow-x: hidden;
    z-index: 1;
}

.hero-wave-right {
    opacity: 0;
    animation: waveOutRight 1.3s cubic-bezier(.7, .2, .3, 1.2) 1.5s both;
    position: absolute;
    right: 0;
    top: -20px;
    max-width: 100vw;
    overflow-x: hidden;
    z-index: 1;
}

.hero-cta-custom {
    background: #2563eb;
    color: #1f2937;
    padding: 28px 55px;
    border-radius: 50px;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border: 5px solid #231f20;
    box-shadow: 8px 8px 0 #231f20;
    margin-top: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta-custom:hover {
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0 #231f20;
}

.hero-stat {
    text-align: center;
    color: #1f2937;
    font-weight: 700;
}

.hero-stat h3 {
    font-size: 24px;
    margin: 0;
}

.hero-stat-left {
    text-align: center;
    color: #1f2937;
    font-weight: 700;
}

.hero-stat-left h3 {
    font-size: 34px;
    margin: 0;
}

.hero-stat-left p {
    font-size: 22px;
    margin: 5px 0 0 0;
    color: #4b5563;
}

.hero-stat-right {
    text-align: center;
    color: #1f2937;
    font-weight: 700;
}

.hero-stat-right h3 {
    font-size: 34px;
    margin: 0;
}

.hero-stat-right p {
    font-size: 22px;
    margin: 5px 0 0 0;
    color: #4b5563;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: #f8f8f8;
    scroll-padding-top: 80px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.nav-wrapper {
    position: sticky;
    top: 0;
    background: #f8f8f8;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-wrapper.scrolled nav {
    padding: 15px 0;
}

.logo {
    font-size: 36px;
    font-weight: 900;
    display: flex;
    padding: 0 20px;
}

.logo-aurien {
    color: #2563eb;
}

.logo-media {
    color: #ef4444;
}

.logo-star {
    color: #fbbf24;
    font-size: 28px;
    margin: 0 -5px;
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1f2937;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s, background 0.3s;
    padding: 8px 24px;
    border-radius: 24px;
}

.nav-links a:hover,
.nav-links a.active {
    background: #2563eb;
    color: #fff !important;
}

.decorative-square {
    position: absolute;
    width: 40px;
    height: 40px;
    transform: rotate(15deg);
}

.square-red {
    background: #ef4444;
    top: 100px;
    right: 100px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    height: 90vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-box {
    background: white;
    border: 5px solid #1f2937;
    border-radius: 30px;
    padding: 80px 150px;
    box-shadow: 15px 15px 0 #1f2937;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 70px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 40px;
}

.hero-title-aurien {
    color: #2563eb;
    text-transform: uppercase;
    background: linear-gradient(45deg, #2563eb 25%, transparent 25%, transparent 75%, #2563eb 75%),
        linear-gradient(45deg, #2563eb 25%, transparent 25%, transparent 75%, #2563eb 75%);
    background-size: 6px 6px;
    background-position: 0 0, 3px 3px;
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-title-media {
    color: #ef4444;
    text-transform: uppercase;
    background: linear-gradient(-45deg, #ef4444 25%, transparent 25%, transparent 75%, #ef4444 75%),
        linear-gradient(-45deg, #ef4444 25%, transparent 25%, transparent 75%, #ef4444 75%);
    background-size: 6px 6px;
    background-position: 0 0, 3px 3px;
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-star {
    color: #fbbf24;
    font-size: 70px;
    margin: 0 10px;
    display: inline-block;
}

.hero-cta {
    background: #2563eb;
    color: white;
    padding: 18px 45px;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 4px solid #1f2937;
    box-shadow: 5px 5px 0 #1f2937;
    transition: transform 0.3s;
    transform: rotate(-2deg);
}

.hero-cta:hover {
    box-shadow: 8px 8px 0 #1f2937;
    transform: scale(1.05) rotate(-2deg);
}

.paperclip-container {
    position: absolute;
    top: -100px;
    left: -150px;
    width: 200px;
    height: 600px;
}

.paperclip {
    width: 120px;
    height: 400px;
    border: 12px solid #2563eb;
    border-radius: 60px;
    position: absolute;
}

.paperclip-end {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 12px solid #2563eb;
    position: absolute;
    background: transparent;
}

.paperclip-container-right {
    right: -150px;
    left: auto;
}

.paperclip-red {
    border-color: #ef4444;
}

.circle-blue {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 50%;
    position: absolute;
    border: 4px solid #1f2937;
}

.circle-red {
    width: 50px;
    height: 50px;
    background: #ef4444;
    border-radius: 50%;
    position: absolute;
    border: 4px solid #1f2937;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 40px;
}

.highlight-blue {
    background: #2563eb;
    color: white;
    padding: 5px 25px;
    border-radius: 15px;
    border: 4px solid #1f2937;
}

.highlight-red {
    background: #ef4444;
    color: white;
    padding: 5px 25px;
    border-radius: 15px;
    border: 4px solid #1f2937;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.image-box {
    border: 5px solid #2563eb;
    border-radius: 30px;
    padding: 15px;
    background: white;
    box-shadow: 10px 10px 0 #2563eb;
    overflow: hidden;
}

.image-box.red-border {
    border-color: #ef4444;
    box-shadow: 10px 10px 0 #ef4444;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.nested-image-box {
    position: relative;
}

.inner-box {
    position: absolute;
    border: 5px solid #2563eb;
    border-radius: 25px;
    padding: 10px;
    background: white;
    bottom: -30px;
    right: -30px;
    width: 65%;
    box-shadow: 8px 8px 0 #ef4444;
    overflow: hidden;
}

.inner-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.inner-box.blue-shadow {
    border-color: #ef4444;
    box-shadow: 8px 8px 0 #2563eb;
}

/* Mission Section */
.mission-list {
    list-style: none;
    margin-top: 30px;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
}

.mission-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
    border: 4px solid #1f2937;
}

.icon-blue {
    background: #2563eb;
    color: white;
}

.icon-red {
    background: #ef4444;
    color: white;
}

/* Founders Section */
.founders-grid {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    margin-top: 60px;
}

.founders-grid .founder-card {
    flex: 0 0 350px;
}

.founder-card {
    border: 5px solid #2563eb;
    border-radius: 30px;
    padding: 25px;
    background: white;
    text-align: center;
    box-shadow: 8px 8px 0 #2563eb;
}

.founder-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.founder-name {
    font-size: 28px;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 5px;
}

.founder-title {
    font-size: 16px;
    color: #6b7280;
    font-weight: 600;
}

/* Brands Section */
.brands-content {
    text-align: center;
}

.brands-title {
    margin-bottom: 50px;
    text-align: center;
}

.brands-section {
    position: relative;
}

.brands-wrapper {
    position: relative;
}

.brands-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px 50px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}

.brands-scroll-container::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1024px) {
    .brands-scroll-container {
        padding: 20px 40px;
    }
}

@media (max-width: 768px) {
    .brands-scroll-container {
        padding: 20px 20px;
    }
}

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2563eb;
    color: white;
    border: 4px solid #231f20;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 4px 4px 0 #231f20;
}

.arrow-btn:hover {
    transform: translateY(-50%) translate(-2px, -2px);
    box-shadow: 6px 6px 0 #231f20;
}

.arrow-left {
    left: -30px;
}

.arrow-right {
    right: -30px;
}

.brand-card {
    flex: 0 0 350px;
    background: white;
    border: 5px solid #2563eb;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 8px 8px 0 #2563eb;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 380px;
}

.brand-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #2563eb;
}

.brand-card.red-border {
    border-color: #ef4444;
    box-shadow: 8px 8px 0 #ef4444;
}

.brand-card.red-border:hover {
    box-shadow: 12px 12px 0 #ef4444;
}

.brand-image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    border-radius: 20px;
    margin-bottom: 20px;
}

.brand-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 32px;
    margin: 0 auto 20px;
    border: 4px solid #1f2937;
    background: #2563eb;
    color: white;
}

.brand-card.red-border .brand-number {
    background: #ef4444;
}

.brand-text h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #1f2937;
}

.brand-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

/* Deliverables Section */
.deliverables {
    background: white;
    padding: 100px 0;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 80px;
}

.deliverable-item {
    text-align: left;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #2563eb;
    box-shadow: 8px 8px 0 #2563eb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.deliverable-item:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #2563eb;
}

.deliverable-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f8f8;
}

.deliverable-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.deliverable-item:hover .deliverable-image img {
    transform: scale(1.05);
}

.deliverable-number {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    display: inline-block;
    padding: 8px 20px;
    background: white;
    border: 3px solid #1f2937;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
}

.deliverable-title {
    font-size: 32px;
    font-weight: 600;
    color: #1f2937;
    margin: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.arrow-link {
    font-size: 32px;
    color: #1f2937;
    text-decoration: none;
    float: right;
    margin-top: -60px;
}

.wave-line {
    position: absolute;
    width: 200px;
    height: 200px;
}

.wave-red {
    border: 12px solid #ef4444;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.wave-blue {
    border: 12px solid #2563eb;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
}

@media (max-width: 1024px) and (min-width: 800px) {
    .hero-box {
        max-width: 690px;
    }

    .hero-wave-left {
        top: -120px !important;
    }

    .hero-wave-right {
        top: -80px !important;
    }
}

@media (max-width: 1280px) {
    .container {
        padding: 0 20px;
    }

    .hero-wave-left {
        left: -100px;
    }

    .hero-wave-right {
        right: -100px;
    }

    .section-title {
        font-size: 54px;
    }

    .arrow-left {
        left: 10px;
    }

    .arrow-right {
        right: 10px;
    }

    .brands-scroll-container {
        justify-content: flex-start;
        padding: 20px 80px;
    }

    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .two-column,
    .brands-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Center all section titles and add more spacing */
    .section-title {
        font-size: 48px;
        text-align: center;
        margin-bottom: 50px;
    }

    /* All images should appear below their titles */
    .two-column .image-box,
    .two-column .image-box.red-border,
    .two-column .nested-image-box {
        order: 2;
    }

    .two-column .text-content {
        order: 1;
        text-align: center;
    }

    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hero-title {
        font-size: 50px;
    }

    /* Keep DeoDap image and question box layout same as desktop */
    .brand-showcase {
        position: relative;
        max-width: 450px;
        margin: 0 auto;
        padding-right: 80px;
        /* Make space for question box */
    }

    .question-box {
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
        width: 280px;
        margin-top: 0;
    }

    .hero-box-custom {
        padding: 30px 20px;
    }

    .hero-cta-custom {
        padding: 20px 40px;
        font-size: 24px;
    }

    /* Adjust vision and charts design for responsive */
    .nested-image-box {
        position: relative;
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .inner-box {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 65%;
        margin-top: 0;
        max-width: calc(100% - 30px);
        /* Prevent overflow */
    }

    .brands-scroll-container {
        padding: 20px 85px;
    }

    .arrow-left {
        left: 0;
    }

    .arrow-right {
        right: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        /* Adjust padding for smaller screens */
    }

    .nav-links {
        display: none;
        /* Hide navigation links */
    }

    nav {
        justify-content: center;
        /* Center the logo */
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 40px;
    }

    /* Adjust brand showcase for smaller screens while maintaining layout */
    .brand-showcase {
        padding-right: 60px;
    }

    .question-box {
        width: 220px;
        padding: 30px 20px;
    }

    .highlight-blue,
    .highlight-red {
        padding: 3px 15px;
        line-height: 1.6;
    }

    .mission-list li {
        font-size: 16px;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-box-custom img {
        height: 80px;
    }

    .hero-wave-left,
    .hero-wave-right {
        transform: scale(0.7);
    }

    /* Adjust arrow buttons for smaller screens */
    .arrow-left {
        left: 0;
    }

    .arrow-right {
        right: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-wrapper .logo img {
        height: 36px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        padding: 5px 12px;
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-cta-custom {
        padding: 15px 30px;
        font-size: 20px;
    }

    .mission-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .brand-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .deliverable-number {
        padding: 8px 20px;
        font-size: 20px;
    }

    .deliverable-title {
        font-size: 36px;
    }

    .hero-wave-left,
    .hero-wave-right {
        transform: scale(0.5);
    }
}

/* Footer Styles */
.site-footer {
    background: #1f2937;
    color: #fff;
    padding: 50px 0 20px 0;
    margin-top: 80px;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-links a {
    font-size: 18px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social a {
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 800px) {
    .footer-content {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .hero-box-custom {
        position: relative;
        padding: 20px;
        margin-bottom: 200px;
        text-align: center;
        display: flex;
        justify-content: center;
        width: 90%;
    }

    .hero-box-custom img {
        height: 80px;
        margin-bottom: 0;
    }

    .hero-stat-left,
    .hero-stat-right {
        position: absolute;
        bottom: -150px;
        width: 50%;
        text-align: center;
    }

    .hero-stat-left {
        left: 0;
    }

    .hero-stat-right {
        left: 50%;
    }

    .hero-wave-left {
        top: -120px !important;
        left: -240px !important;

    }

    .hero-wave-right {
        top: -75px !important;
        right: -180px !important;

    }

    .circle-red {

        display: none;

    }

    .decorative-square {

        display: none;
    }
}

@media (max-width: 550px) {

    .hero-stat-left,
    .hero-stat-right {

        bottom: -170px;

    }

    .brand-card {
        flex: 0 0 300px;
        height: 450px;

    }

    .brands-scroll-container {
        padding: 20px 50px;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

}

@media (max-width: 400px) {

    .hero-wave-left {
        top: -100px !important;
        left: -160px !important;
    }

    .arrow-left {
        left: 85px;
        top: 525px;
    }

    .arrow-right {
        right: 85px;
        top: 525px;
    }

    .brands-scroll-container {
        padding: 20px 25px;
    }

}

/* New classes for inline styles */
.logo-img {
    height: 48px;
}

.hero-logo-img {
    height: 120px;
    max-width: 100%;
    display: block;
}

.hero-arrow {
    font-size: 38px;
    font-weight: 700;
}

.vision-decorative {
    top: -55px;
    left: 150px;
}

.vision-circle {
    bottom: 100px;
    left: 80px;
}

.solution-circle {
    top: 50px;
    right: 100px;
}

.solution-decorative {
    background: #2563eb;
    bottom: 100px;
    right: 200px;
    transform: rotate(25deg);
}

.mission-decorative {
    top: 100px;
    right: 120px;
}

.brands-decorative {
    background: #2563eb;
    top: 80px;
    right: 150px;
    transform: rotate(20deg);
}

.deliverables-title {
    text-align: center;
}

.founders-title {
    text-align: center;
}

.footer-logo-img {
    height: 48px;
    vertical-align: middle;
    margin-right: 12px;
}

.footer-link-home {
    color: #2563eb;
    font-weight: 600;
    margin-right: 30px;
    text-decoration: none;
}

.footer-link-brands {
    color: #ef4444;
    font-weight: 600;
    margin-right: 30px;
    text-decoration: none;
}

.footer-link-services {
    color: #fbbf24;
    font-weight: 600;
    text-decoration: none;
}

.social-facebook {
    color: #2563eb;
    font-size: 22px;
    margin-right: 18px;
    text-decoration: none;
}

.social-instagram {
    color: #ef4444;
    font-size: 22px;
    margin-right: 18px;
    text-decoration: none;
}

.social-linkedin {
    color: #0077b5;
    font-size: 22px;
    margin-right: 18px;
    text-decoration: none;
}

.social-youtube {
    color: #fbbf24;
    font-size: 22px;
    text-decoration: none;
}

.footer-copyright {
    color: #6b7280;
    font-size: 16px;
}

.hero-container {
    position: relative;
    z-index: 2;

}
