* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-width: thin;
}


/* colors */
:root {
    /* background color */
    --bg-white: #ffffff;
    --bg-dark-blue: #001f3f;
    --bg-deep-teal: #003d5c;
    --bg-light-teal: #00bfa6;
    --bg-pacific-blue: #0092b8;
    --bg-light-mint: #cbfbf1;
    --bg-icy-blue: #cefafe;
    --bg-light-gray: #f9fafb;

    /* text color */
    --text-white: #ffffff;
    --text-light-teal: #00bfa6;
    --text-light-green: #009689;
}

body {
    overflow-x: hidden;
}

.navbar {
    background: var(--bg-white);
    position: relative;
    z-index: 1000;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-brand img {
    max-height: 100px;
    max-width: 100%;
    height: auto;
    width: auto;
}

.navbar-nav a:hover {
    color: #00c49a !important;
}

/* Star Content Section */
.star-content {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--bg-dark-blue),
        var(--bg-deep-teal)
    );
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    width: 100%;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    color: #00f9f9;
    animation: twinkle linear infinite;
    opacity: 0.6;
}

.star::before {
    content: "✦";
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    width: 100%;
    padding: 2rem;
}

.badge-customs {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    display: inline-block;
    padding: 8px 16px;
}

.content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.content h1 span {
    background: linear-gradient(to right, #46ecd5, #53eafd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Mission Section */
.mission-section {
    background: var(--bg-white);
    padding: 100px 0;
    width: 100%;
}

.tag {
    background: linear-gradient(
        to right,
        var(--bg-light-mint),
        var(--bg-icy-blue)
    );
    color: var(--text-light-green);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 2rem;
}

.mission-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.mission-section h1 span {
    color: var(--text-light-teal);
}

.mission-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.layout {
    width: 100%;
    max-width: 511px;
    height: 336px;
    background: linear-gradient(to bottom, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    position: relative;
    overflow: visible;
    margin: 0 auto;
}

.layout img {
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    object-fit: cover;
    border-radius: 16px;
    margin: 40px;
}

.top-right,
.bottom-left {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: sans-serif;
    text-align: center;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-right {
    top: -10px;
    right: -25px;
}

.bottom-left {
    bottom: -10px;
    left: -25px;
}

.value {
    font-size: 20px;
    font-weight: bold;
    color: #0ea5e9;
}

.label {
    font-size: 14px;
    color: #334155;
}

/* Business Section */
.business-section {
    background: linear-gradient(to right, #0f172b, #1d293d, #0f172b);
    padding: 100px 0;
    width: 100%;
}

.strategy {
    text-align: center;
    color: white;
}

.strategy h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.strategy h1 span {
    background: linear-gradient(to right, #46ecd5, #53eafd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy p {
    width: 60%;
    margin: 0 auto;
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-outline-light {
    border-radius: 16px !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #9ca3af;
    padding: 8px 20px;
    text-decoration: none;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, #0a1a2f, #0d223d);
    color: #cfd6e0;
    font-size: 0.9rem;
    padding: 4rem 0 2rem;
    width: 100%;
}

footer h5,
footer h6 {
    color: #fff;
    font-weight: 600;
}

footer .icon-box {
    background: linear-gradient(to right, #00bba7, #00b8db);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    margin-right: 10px;
    flex-shrink: 0;
}

footer .contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

footer .contact-info span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

footer .contact-info strong {
    font-size: 0.8rem;
    color: #9ca3af;
}

.badge-box {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}

.badges {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px 12px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.badges i {
    font-size: 12px;
    color: #00f7ff;
    margin-bottom: 5px;
}

.badges span {
    font-size: 9px;
    font-weight: 300;
}

footer ul li a {
    text-decoration: none;
    color: #cfd6e0;
    line-height: 28px;
}

footer ul li a:hover {
    color: #00c49a;
}

footer .subscribe-input {
    background-color: transparent;
    border: 1px solid #4b5563;
    width: 100%;
    padding: 10px;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
}

footer .subscribe-input::placeholder {
    color: #9ca3af;
}

footer .btn-subscribe {
    background-color: #009689;
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
}

footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #1c2b3e;
    color: #cfd6e0;
    font-size: 1rem;
    transition: 0.3s;
    text-decoration: none;
}

footer .social-icons a:hover {
    background-color: #00c49a;
    color: white;
}

footer hr {
    border-color: #2d3748;
}

/* RESPONSIVE DESIGN */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .content h1 {
        font-size: 4rem;
    }

    .layout {
        max-width: 550px;
        height: 360px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .content h1 {
        font-size: 3.2rem;
    }

    .layout {
        max-width: 480px;
        height: 320px;
    }

    .strategy p {
        width: 70%;
    }
}

/* Large Tablet (992px - 1199px) */
@media (max-width: 1199px) {
    .star-content {
        min-height: 85vh;
        padding: 1.5rem;
    }

    .content h1 {
        font-size: 2.8rem;
    }

    .content p {
        font-size: 1.1rem;
    }

    .layout {
        max-width: 420px;
        height: 290px;
    }

    .strategy h1 {
        font-size: 2.2rem;
    }

    .strategy p {
        width: 80%;
    }

    .mission-section {
        padding: 80px 0;
    }

    .business-section {
        padding: 80px 0;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .star-content {
        min-height: 80vh;
        padding: 1rem;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 1rem;
    }

    .layout {
        max-width: 400px;
        height: 280px;
    }

    .strategy h1 {
        font-size: 2rem;
    }

    .strategy p {
        width: 90%;
    }

    .mission-section {
        padding: 60px 0;
    }

    .mission-section h1 {
        font-size: 2rem;
    }

    .business-section {
        padding: 60px 0;
    }

    .badge-box {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .star-content {
        min-height: 70vh;
        padding: 1rem;
    }

    .content {
        padding: 1rem;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .badge-customs {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .layout {
        max-width: 350px;
        height: 250px;
    }

    .layout img {
        margin: 30px;
        width: calc(100% - 60px);
        height: calc(100% - 60px);
    }

    .top-right,
    .bottom-left {
        padding: 8px 12px;
    }

    .top-right {
        top: -15px;
        right: -15px;
    }

    .bottom-left {
        bottom: -15px;
        left: -15px;
    }

    .value {
        font-size: 16px;
    }

    .label {
        font-size: 12px;
    }

    .strategy h1 {
        font-size: 1.8rem;
    }

    .strategy p {
        width: 95%;
        font-size: 0.9rem;
    }

    .mission-section {
        padding: 50px 0;
    }

    .mission-section h1 {
        font-size: 1.8rem;
    }

    .business-section {
        padding: 50px 0;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 15px !important;
    }

    .d-flex.gap-3 a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    footer .col-lg-3,
    footer .col-lg-2 {
        margin-bottom: 2rem;
    }

    .badge-box {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .badges {
        flex-direction: row;
        gap: 5px;
        padding: 6px 10px;
    }
}

/* Mobile Medium (480px - 575px) */
@media (max-width: 575px) {
    .star-content {
        min-height: 60vh;
        padding: 0.5rem;
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 0.8rem;
        padding: 0 10px;
    }

    .layout {
        max-width: 300px;
        height: 200px;
    }

    .layout img {
        margin: 20px;
        width: calc(100% - 40px);
        height: calc(100% - 40px);
    }

    .strategy h1 {
        font-size: 1.6rem;
    }

    .strategy p {
        font-size: 0.8rem;
    }

    .mission-section h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 15px;
    }

    .navbar-nav {
        text-align: center;
    }
}


/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .star-content {
        min-height: 50vh;
        padding: 0.5rem;
    }

    .content h1 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 0.75rem;
        padding: 0 5px;
    }

    .layout {
        max-width: 280px;
        height: 180px;
    }

    .top-right,
    .bottom-left {
        padding: 6px 10px;
    }

    .value {
        font-size: 14px;
    }

    .label {
        font-size: 10px;
    }

    .strategy h1 {
        font-size: 1.4rem;
    }

    .strategy p {
        font-size: 0.75rem;
    }

    .mission-section h1 {
        font-size: 1.4rem;
    }
}

/* Fix for overflow issues */
@media (max-width: 479px) {
    body {
        overflow-x: hidden;
    }

    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row > * {
        padding-left: 5px;
        padding-right: 5px;
    }
}
