/* Custom CSS Variables */
:root {
    --color-black-dark: #000000;
    --color-black-light: #0A1128;

    /* Very dark blue, almost black */
    --color-blue-deep: #0A1128;
    --color-blue-medium: #123C69;
    --color-blue-light: #6096BA;
    --color-white: #FFFFFF;
    --color-orange-highlight: #FF8C00;

    /* Darker orange for prominence */
    --color-red-highlight: #DC143C;

    /* Crimson red for strong highlight */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-blue-deep);
    overflow-x: hidden;

    /* Prevent horizontal scroll from animations */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-orange-highlight);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;

    /* For shapes and overlays */
}

.section-title {
    font-size: 3em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5em;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2em;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.highlight-orange {
    color: var(--color-orange-highlight);
}

.highlight-red {
    color: var(--color-red-highlight);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--color-orange-highlight);
    color: var(--color-black-light);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    background-color: var(--color-green-highlight);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.secondary-cta-button {
    background-color: var(--color-blue-medium);
    color: var(--color-white);
    border: 2px solid var(--color-orange-highlight);
}

.secondary-cta-button:hover {
    background-color: var(--color-orange-highlight);
    color: var(--color-black-light);
    border-color: var(--color-red-highlight);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    z-index: 1000;
}

/* Fixed Navbar */
.fixed-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 17, 40, 0.9);

    /* Semi-transparent dark blue */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2000;

    /* Higher than other elements */
}

/* Scrolled navbar state */
.fixed-navbar.scrolled {
    padding: 10px 40px;
    background-color: rgba(10, 17, 40, 0.95);

    /* More opaque when scrolled */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo-link {
    text-decoration: none;
    color: var(--color-white);
    display: flex;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0px;
}

.logo-eye {
    height: 29.12px;

    /* Increased by 4% from 28px */
    margin-right: 8px;
    vertical-align: middle;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.05em;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-orange-highlight);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* Vertically center content */
    align-items: center;

    /* Horizontally center content */
    background-color: var(--color-black-light);
    overflow: hidden;
    padding-top: 120px;

    /* Increased space for fixed navbar */
    margin-top: 0;

    /* No margin as navbar is fixed */
}

.animated-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        var(--color-blue-deep) 0%,
        var(--color-black-light) 25%,
        var(--color-blue-medium) 50%,
        var(--color-black-light) 75%,
        var(--color-blue-deep) 100%
    );
    background-size: 400% 400%;

    /* Make gradient larger than container */
    animation: gradientShift 15s ease infinite;

    /* Animated gradient */
    opacity: 0.8;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 80% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

/* Split Layout for Hero Section */
.split-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.hero-text {
    flex: 1;
    padding-right: 2rem;
}

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

.hero-islands-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-title {
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Geometric Shapes - Hero */
.geometric-shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.08);

    /* Subtle white overlay */
    z-index: 0;
    will-change: transform, opacity;

    /* Optimize animations */
}

.hero-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    top: 15%;
    left: 10%;
    transform: translate(-50%, -50%);
    filter: blur(5px);
}

.hero-triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid rgba(255, 255, 255, 0.08);
    bottom: 5%;
    right: 15%;
    transform: translate(50%, 50%) rotate(30deg);
    filter: blur(5px);
}

/* About Section */
.about-section {
    background-color: var(--color-white);
    color: var(--color-blue-deep);
    padding-top: 150px;

    /* Space for the curved top */
    padding-bottom: 150px;
}

.about-section .section-title {
    color: var(--color-blue-deep);
}

.about-section .section-description {
    color: var(--color-blue-medium);
}

.about-section .container {
    padding-left: 50px;

    /* Offset for left image */
}

.section-content {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.text-block {
    flex: 1;
    min-width: 400px;
    max-width: 50%;
    text-align: left;
}

.image-block {
    flex: 1;
    min-width: 300px;
    max-width: 40%;
    position: relative;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.curved-separator {
    position: absolute;
    width: 100%;
    height: 150px;

    /* Adjust height for curve depth */
    background-color: var(--color-white);
    z-index: 1;
}

.bottom-left-curve {
    bottom: -1px;

    /* Slight negative to force overlap */
    left: 0;
    background-color: var(--color-blue-deep);
    transform: translateY(0);
    height: 200px;
    margin-bottom: 0;
    padding-bottom: 0;
    z-index: 10;
}

/* Animation keyframes removed */
.curved-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    transform-origin: top left;
    clip-path: ellipse(150% 100% at 50% 100%);
    z-index: 11;
}

.about-section .curved-separator.bottom-left-curve {
    bottom: 0;

    /* Flush with the section below */
    height: 150px;

    /* Restore original height */
    left: 0;
    width: 100%;
    background-color: transparent;

    /* Make this parent transparent */
    z-index: 5;

    /* Create the actual curve using :before or :after */
}

.about-section .curved-separator.bottom-left-curve::before {
    background-color: var(--color-blue-deep);

    /* The color of the next section */
    clip-path: ellipse(120% 70% at 50% 100%);

    /* Restore original pronounced curve */
    top: -100px;

    /* Restore original position */
    left: 0;
    height: 100%;
    width: 100%;
}

.feature-list {
    list-style: none;
    margin-top: 2em;
}

.feature-list li {
    font-size: 1.1em;
    margin-bottom: 0.8em;
    display: flex;
    align-items: center;
    color: var(--color-blue-medium);
}

.bullet-icon {
    color: var(--color-orange-highlight);
    font-size: 1.4em;
    margin-right: 10px;
    font-weight: bold;
}

.frosted-glass-card {
    position: absolute;
    bottom: -20px;
    right: -30px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 300px;
    z-index: 3;
    text-align: left;
}

.frosted-glass-card h3 {
    font-size: 1.4em;
    color: var(--color-orange-highlight);
    margin-bottom: 10px;
}

/* Custom styles for the curved client image section */
.curved-content-layout {
    position: relative;
    z-index: 1;
}

.workers-text {
    text-align: left;
    padding-right: 30px;
}

.workers-text .section-description {
    text-align: left;
    margin-left: 0;
    max-width: 100%;
}

.curved-image-container {
    position: relative;
    overflow: hidden;
}

.client-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.curved-client-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0px 25px 0px 25px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

.local-focus-card {
    top: auto;
    left: 20px;
    right: auto;
    bottom: 0;
    transform: translateY(50%);
    z-index: 5;
    border-radius: 15px;
}

.frosted-glass-card p {
    font-size: 0.95em;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.square-bg {
    width: 150px;
    height: 150px;
    background-color: rgba(var(--color-orange-highlight), 0.1);

    /* Subtle orange tint */
    top: -50px;
    right: -50px;
    transform: rotate(20deg);
    border-radius: 15px;
    filter: blur(3px);
    z-index: 1;
}

/* Difference Section */
.difference-section {
    margin-top: -10px;

    /* Extremely aggressive negative margin */
    position: relative;
    z-index: 2;

    /* Ensure this section stays above curved separator */
    background-color: var(--color-blue-medium);
    text-align: center;
    padding-top: 120px;
    padding-bottom: 100px;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    /* Four columns for four cards */
    gap: 24px;
    margin: 50px 0;
    align-items: stretch;
}

.difference-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 18px;

    /* Reduced padding to fit four cards */
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 0;

    /* Prevent content from forcing card width */
    opacity: 1 !important;

    /* Force visibility */
    transform: none !important;

    /* Prevent any transform animations */
}

.difference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}

.principles-list {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.principle-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.principle-item .bullet-icon {
    margin-right: 20px;
    background-color: var(--color-orange-highlight);
    color: var(--color-black-light);
    min-width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 700;
}

.principle-content h4 {
    font-size: 1.3em;
    margin-bottom: 8px;
    color: var(--color-white);
}

.principle-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
    margin-bottom: 0;
}

/* Solutions Section */
.solutions-section {
    background-color: var(--color-blue-deep);
    text-align: center;
    padding-top: 150px;

    /* Accommodate curve from previous section */
    padding-bottom: 100px;
    color: var(--color-white);
}

.solutions-section .section-title {
    color: var(--color-white);
    margin-bottom: 3em;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    /* Four columns for four cards */
    gap: 24px;
    margin: 50px 0;
}

.solution-card {
    background-color: rgba(18, 60, 105, 0.4);

    /* blue-medium with opacity */
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 25px 18px;

    /* Reduced padding to fit four cards */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 0;

    /* Prevent content from forcing card width */
    height: 100%;

    /* Ensure consistent height */
    opacity: 1 !important;

    /* Force visibility */
    transform: none !important;

    /* Prevent any transform animations */
}

.solution-card:hover {
    transform: translateY(-10px);
    background-color: var(--color-blue-medium);
}

.solution-card .icon-wrapper {
    background-color: var(--color-orange-highlight);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.solution-card .icon {
    font-size: 2.5em;
    color: var(--color-black-light);
}

.solution-card h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-white);
}

.solution-card p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.solution-link {
    color: var(--color-orange-highlight);
    font-weight: 600;
    font-size: 0.9em;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.solution-link:hover {
    color: var(--color-red-highlight);
    border-bottom-color: var(--color-red-highlight);
}

/* Geometric Shapes - Solutions Section */
.solutions-square-overlay {
    width: 200px;
    height: 200px;
    background-color: rgba(220, 20, 60, 0.08);

    /* Subtle red tint */
    top: 10%;
    left: -50px;
    transform: rotate(45deg);
    filter: blur(5px);
}

.solutions-triangle-overlay {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 170px solid rgba(255, 255, 255, 0.08);
    bottom: 20%;
    right: 5%;
    transform: rotate(90deg);
    filter: blur(5px);
}

/* Trust Section */
.trust-section {
    background-color: var(--color-blue-deep);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

.client-logos {
    margin: 50px 0;
    text-align: center;
}

.client-logos-placeholder {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--color-white);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content p::before {
    content: '\201C';

    /* Opening quote mark */
    font-size: 1.5em;
    color: var(--color-orange-highlight);
    position: relative;
    top: 5px;
}

.testimonial-content p::after {
    content: '\201D';

    /* Closing quote mark */
    font-size: 1.5em;
    color: var(--color-orange-highlight);
    position: relative;
    top: 5px;
}

.testimonial-author {
    text-align: right;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-blue-medium) 0%, var(--color-black-light) 100%);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3em;
    font-weight: 300;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

/* Geometric Shapes - CTA */
.cta-pattern-1 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: rgba(var(--color-orange-highlight), 0.1);
    top: -50px;
    left: 20%;
    filter: blur(8px);
    transform: scale(0.8);
}

.cta-pattern-2 {
    width: 250px;
    height: 150px;
    background-color: rgba(220, 20, 60, 0.1);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);

    /* Trapezoid */
    bottom: -30px;
    right: 15%;
    filter: blur(8px);
    transform: rotate(-10deg);
}

/* Footer */
.footer-section {
    background-color: var(--color-black-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-info {
    margin: 15px 0;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    display: inline-block;
    max-width: 500px;
}

.contact-info p {
    margin: 8px 0;
    color: var(--color-white);
}

.contact-info a {
    color: var(--color-orange-highlight);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-orange);
    text-decoration: underline;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5em;
    font-weight: 700;
    color: var(--color-white);
}

.footer-links {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--color-orange-highlight);
}

.difference-card ul {
    text-align: left;
    margin: 1em 0 1em 0;
    padding-left: 1.1em;
    list-style-position: outside;
}

.difference-card ul li {
    text-align: left;
    margin-bottom: 0.55em;
    padding-left: 0;
    color: #fff;
    line-height: 1.6;
}

.difference-card p,
.difference-card h3 {
    text-align: left;
}

.difference-card strong {
    color: var(--color-orange-highlight);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
    }

    .fixed-navbar {
        padding: 10px 20px;
    }

    .nav-links {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li {
        margin: 5px 10px;
    }

    .split-layout {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        padding-right: 0;
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .hero-islands-img {
        max-width: 80%;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 3.5em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .hero-circle,
    .hero-triangle {
        width: 150px;
        height: 150px;
    }

    .section-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .text-block,
    .image-block {
        max-width: 100%;
    }

    .text-block {
        text-align: center;
    }

    .frosted-glass-card,
    .local-focus-card {
        position: static;

        /* Remove absolute positioning on small screens */
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .curved-client-image {
        border-radius: 15px;
        clip-path: none;
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }

    .client-image-wrapper {
        margin-top: 20px;
    }

    .solutions-grid,
    .difference-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .principles-list {
        padding: 0 20px;
    }

    .cta-title {
        font-size: 2.5em;
    }

    .cta-subtitle {
        font-size: 1em;
    }

    .about-section .container {
        padding-left: 20px;

        /* Reset padding for mobile */
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5em;
        margin-bottom: 1em;
    }

    .hero-title {
        font-size: 2.8em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 10px;
    }

    .nav-links li {
        margin: 0 10px;
        font-size: 0.9em;
    }

    .hero-title {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 0.9em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .section-title {
        font-size: 2em;
    }

    .solution-card h3 {
        font-size: 1.5em;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .principle-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .principle-item .bullet-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}