.header {
    font-family: "Roboto Mono", monospace;
    display: flex;
    height: 80px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--color-base);
    padding: 0 60px;
}

.left-section-header {
    display: flex;
    align-items: center;
}

.logo-icon-header {
    height: 48px;
    cursor: pointer;
}

.middle-section-header {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 48px;
    align-items: center;
}

.header-nav-item {
    font-family: 'Roboto Mono', monospace;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.header-nav-item:hover {
    color: var(--color-cyan);
}

.right-section-header {
    display: flex;
    align-items: center;
}

.btn-solicitar {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.btn-solicitar:hover {
    background-color: var(--color-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.4);
}

/* Responsive Header */
@media (max-width: 992px) {
    .header { padding: 0 30px; }
    .middle-section-header { gap: 20px; }
    .header-nav-item { font-size: 14px; }
    .btn-solicitar { padding: 10px 24px; font-size: 14px; }
}

@media (max-width: 768px) {
    .header { padding: 0 15px; }
    .middle-section-header { display: none; /* Oculta enlaces estatus minimalista */ }
    .btn-solicitar { padding: 8px 16px; font-size: 12px; }
}
/* Hero Section */
.dashboard-hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-color: var(--color-very-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 10;
    padding-left: 80px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 30px;
}

.hero-highlight {
    background: linear-gradient(to right, var(--color-primary), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-servicios {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-servicios:hover {
    background-color: var(--color-blue-light);
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-img {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 600px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 30%);
    mask-image: linear-gradient(to right, transparent, black 30%);
}

/* About Section */
.dashboard-about {
    background: linear-gradient(135deg, #0A1F5C 22%, #020B2D 63%);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -2px; /* Prevent any hairline subpixel gaps */
    position: relative;
    z-index: 5;
}

.about-logo {
    height: 100px;
    margin-bottom: 40px;
}

.about-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: white;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

/* Purpose Section */
.dashboard-purpose-wrap {
    background-color: #E2E8F0; /* Light slate grey */
    position: relative;
    padding-top: 80px;
    padding-bottom: 100px;
    color: var(--color-very-dark);
    font-family: 'Poppins', sans-serif;
    z-index: 10; /* Added to lift over the About section */
}

.purpose-tab {
    position: absolute;
    top: -40px; /* Pulls it up over the dark section slightly, wait, the image shows it is part of the grey background sticking up */
    left: 50%;
    transform: translateX(-50%);
    background-color: #E2E8F0;
    padding: 20px 60px;
    font-size: 24px;
    font-weight: 800;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    color: var(--color-very-dark);
    letter-spacing: -0.5px;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.1);
}

.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 60px;
         column-gap: 60px;
    row-gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.purpose-heading {
    font-size: 64px;
    font-weight: 800;
    text-align: center;
    color: var(--color-very-dark);
    margin: 0;
    letter-spacing: -1px;
}

.purpose-card {
    background-color: var(--color-blue-fade);
    padding: 30px 40px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-very-dark);
}

.purpose-card.mission {
    background-color: #8DA9E9; /* Lighter/muted blue */
}

.purpose-card.vision {
    background-color: #9CB8F0; /* Even lighter blue */
}

/* Responsive Dashboard View */
@media (max-width: 992px) {
    .dashboard-hero { flex-direction: column; padding: 40px 20px; text-align: center; }
    .hero-content { padding-left: 0; margin-bottom: 40px; }
    .hero-title { font-size: 38px; }
    .purpose-grid { grid-template-columns: 1fr; gap: 30px; padding: 0 20px; }
    .purpose-heading { font-size: 48px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 32px; }
    .hero-img { max-height: 350px; mask-image: none; -webkit-mask-image: none; }
    .dashboard-about { padding: 60px 20px; }
    .about-text { font-size: 14px; }
    .purpose-tab { padding: 15px 40px; font-size: 20px; }
    .purpose-card { padding: 25px 20px; }
}

/* Banner Section */
.servicios-banner {
    width: 100%;
    min-height: 480px;
    background-color: var(--color-very-dark);
    background-image:
        linear-gradient(to right, var(--color-very-dark) 0%, var(--color-very-dark) 50%, rgba(10, 31, 92, 0.4) 100%),
        url('/img/resources/IMG_1324%201.png');
    background-size: 100% 100%, contain;
    background-position: left center, right center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 100px;
    padding-left: 80px;
}

.servicios-subtitle {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 6px 24px;
    color: white;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    margin-bottom: 24px;
}

.servicios-title {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    background: linear-gradient(to right, var(--color-primary), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.servicios-title-white {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px 0;
}

.servicios-desc {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    max-width: 500px;
    line-height: 1.5;
}

/* Lower Area overlay */
.servicios-lower {
    background-color: #E2E8F0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Polygon Separator */
.polygon-separator {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-top: -65px;
    /* Pull it up into the banner specifically */
    width: 100%;
    z-index: 10;
}

.polygon-img {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
}

.polygon-text {
    position: absolute;
    top: 35px;
    /* Visually centered horizontally and vertically inside the polygon mass */
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    z-index: 11;
}

/* Accordion Section */
.servicios-list-wrap {
    background-color: transparent;
    padding: 40px 20px 100px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Seguridad Section */
.seguridad-section {
    width: 100%;
    /* Soft vertical radial-like linear gradient from the image reference */
    background: linear-gradient(to bottom, #5071ae 0%, #304e93 40%, #152b61 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seguridad-title {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    text-align: center;
}

.seguridad-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: white;
    text-align: center;
    max-width: 800px;
    line-height: 1.5;
    margin-bottom: 60px;
}

.seguridad-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 900px;
}

.seguridad-row {
    display: flex;
    gap: 20px;
    width: 100%;
    height: 180px; /* Force consistent internal box sizing */
}

/* For responsive testing, or normal layout we stretch to fill the 180px */
.seguridad-text-box {
    flex: 1.5;
    background: linear-gradient(to right, #1a49db 0%, #0d1e57 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 30px 40px;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.seg-title-col {
    flex: 0 0 35%;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.seg-title-col h3 {
    font-family: 'Roboto Mono', monospace;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.seg-desc-col {
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.seg-desc-col p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    line-height: 1.5;
}

.seguridad-img-box {
    flex: 1; 
    border-radius: 20px;
    overflow: hidden;
    background-color: #E2E8F0; /* placeholder bg */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.seguridad-img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.acc-item {
    width: 100%;
    max-width: 800px;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.acc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-very-dark);
    margin: 0;
}

.acc-icon {
    font-size: 24px;
    color: var(--color-very-dark);
    transition: transform 0.3s ease;
}

.acc-item.expanded .acc-icon {
    transform: rotate(180deg);
}

.acc-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.acc-item.expanded .acc-content {
    max-height: 400px;
    opacity: 1;
    padding: 0 40px 30px 40px;
    /* Padding applied when expanded to not mess up collapsed math */
}

.acc-detail {
    display: flex;
    gap: 30px;
    align-items: center;
    background-color: transparent;
}

.acc-detail img {
    width: 280px;
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.acc-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-very-dark);
    line-height: 1.6;
    flex: 1;
}

/* Responsive Servicios */
@media (max-width: 992px) {
    .servicios-banner { padding: 80px 40px; background-position: center; flex-direction: column; text-align: center; }
    .servicios-title, .servicios-title-white { font-size: 48px; }
    .servicios-desc { margin: 0 auto; }
    .seguridad-row { flex-direction: column; height: auto; }
    .seguridad-img-box { order: 1; height: 250px; }
    .seguridad-text-box { order: 2; flex-direction: column; padding: 20px; }
    .seguridad-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .acc-detail { flex-direction: column; }
    .acc-detail img { width: 100%; height: auto; max-height: 200px; }
    .polygon-img { width: 220px; }
    .polygon-text { top: 20px; font-size: 20px; }
    .seg-title-col, .seg-desc-col { flex: unset; padding: 0; width: 100%; text-align: center; border-left: none; }
    .seg-desc-col { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; margin-top: 15px; text-align: justify; }
    .acc-item.expanded .acc-content { padding: 0 25px 25px 25px; }
    .acc-header { padding: 20px 25px; }
    .acc-title { font-size: 20px; }
}
/* Hero Section */
.centro-hero {
    width: 100%;
    min-height: 480px;
    background-color: #020B2D;
    background-image:
        linear-gradient(to bottom, rgba(2, 11, 45, 0.7) 0%, rgba(2, 11, 45, 0.8) 100%),
        url('/img/resources/IMG_1327%201.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    /* Offset for header */
}

.centro-title {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin: 0;
}

.centro-title span {
    color: #4A83FD;
    /* Matching the bright blue */
}

/* Body Section */
.centro-body {
    position: relative;
    background-color: #E2E8F0;
    /* Matches existing design system */
    width: 100%;
    min-height: 800px;
    padding: 80px 10%;
    overflow: hidden;
    /* Contains the absolute background elements safely */
}

/* Decorative Side Shapes */
.centro-shape-left-front {
    position: absolute;
    bottom: -150px;
    left: -50px;
    height: 70%;
    width: auto;
    z-index: 2;
    -o-object-fit: contain;
       object-fit: contain;
}

.centro-shape-left-back {
    position: absolute;
    bottom: -100px;
    left: 80px;
    /* Push inward */
    height: 55%;
    width: auto;
    z-index: 1;
    /* Stay behind the front shape */
    -o-object-fit: contain;
       object-fit: contain;
}

.centro-shape-right-front {
    position: absolute;
    top: -50px;
    right: -80px;
    height: 80%;
    width: auto;
    z-index: 2;
    -o-object-fit: contain;
       object-fit: contain;
}

.centro-shape-right-back {
    position: absolute;
    top: -100px;
    right: 20px;
    /* Push aggressively to the right border */
    height: 60%;
    width: auto;
    z-index: 1;
    /* Stay behind the front shape */
    -o-object-fit: contain;
       object-fit: contain;
}

/* Main Content Grid */
.centro-content-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* Big center safety gap */
    max-width: 1400px;
    /* Cap outward extension */
    margin: 0 auto;
    /* Snap exactly center to avoid edges perfectly */
    padding: 0 15%;
    /* Safety bumper from the side edge */
}

.centro-list-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-right: 40px;
}

.centro-list-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50%;
    /* Staggered effect pushing it down visually */
    padding-left: 20px;
}

/* Item Formatting */
.cd-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cd-pill {
    display: inline-block;
    padding: 8px 60px 8px 25px;
    border-radius: 30px;
    background: linear-gradient(to right, rgba(175, 190, 219, 1) 0%, rgba(175, 190, 219, 0) 100%);
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    font-size: 22px;
    color: #0d1e57;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Specifically for right items if they need text alignment tweaking, but the design shows them formatted identical to left */
.cd-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #2D3748;
    line-height: 1.6;
    margin: 0;
    padding-left: 25px;
    max-width: 400px;
}

/* Responsive Centro Datos */
@media (max-width: 992px) {
    .centro-hero { padding: 100px 30px; text-align: center; }
    .centro-title { font-size: 48px; }
    .centro-content-grid { grid-template-columns: 1fr; gap: 40px; }
    .centro-list-right { margin-top: 0; padding-left: 0; }
    .centro-list-left { padding-right: 0; }
    .centro-shape-left-front, .centro-shape-left-back, .centro-shape-right-front, .centro-shape-right-back {
        display: none; /* Make ellipses completely invisible on media devices */
    }
}

@media (max-width: 576px) {
    .cd-pill { padding: 8px 30px 8px 20px; font-size: 18px; }
    .cd-item p { padding-left: 15px; font-size: 14px; }
    .centro-body { padding: 60px 20px; }
    .centro-title { font-size: 38px; }
}
.footer {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-very-dark);
    color: white;
    padding: 60px 80px 20px 80px;
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.footer-logo {
    height: 100px;
    width: auto;
}

.footer-middle {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav li {
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-nav li:hover {
    color: var(--color-cyan);
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-socials {
    display: flex;
    gap: 24px;
}

.social-icon-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-icon-wrapper:hover {
    transform: scale(1.1);
}

.social-ellipse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.social-icon {
    position: relative;
    z-index: 2;
    height: 24px;
}

.footer-contact {
    font-size: 16px;
    font-weight: 400;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: var(--color-blue-fade);
    padding-top: 20px;
    margin-top: 20px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content { flex-direction: column; align-items: center; gap: 40px; text-align: center; }
    .footer-left, .footer-middle, .footer-right { justify-content: center; width: 100%; align-items: center; }
    .footer { padding: 40px 20px 20px 20px; }
}
.certificates-section {
    background-color: #E2E8F0;
    padding: 30px 20px 40px 20px;
    text-align: center;
}

.certificates-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: var(--color-very-dark);
    margin-bottom: 40px;
}

.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.carousel-container {
    display: flex;
    gap: 30px; /* Reduced gap since items are smaller */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 30px 50px 60px 50px; /* Strong padding on all sides to prevent ANY shadow clipping */
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    scroll-snap-align: center;
    flex: 0 0 auto;
    width: 280px; /* Much smaller width */
    height: 410px; /* Smaller height, slightly shorter proportionally to force bottom clipping */
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px; /* Adjusted mask radius for smaller size */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.carousel-slide img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    background-color: transparent;
    /* Scale up and nudge downwards to guarantee the bottom border is fully clipped */
    transform: scale(1.16) translateY(3%);
}

/* Controllers */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.carousel-btn:hover {
    background-color: var(--color-blue-light);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

/* Responsive Carrousel */
@media (max-width: 576px) {
    .certificates-heading { font-size: 40px; }
    .carousel-btn.prev { left: 5px; }
    .carousel-btn.next { right: 5px; }
    .carousel-wrapper { padding: 0 10px; }
}

.contact-wrapper {
    background: linear-gradient(135deg, #020B2D 0%, #0A1F5C 100%);
    width: 100%;
    min-height: calc(100vh - 80px);
    /* Fill screen below header */
    padding: 60px 20px 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #BCCDE4;
    /* Light blue tint text */
}

.contact-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #E2E8F0;
    font-weight: 300;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

/* Left Form */
.contact-form-box {
    background-color: #0A1128;
    /* Very dark rounded box */
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background-color: white;
    color: #0d1e57;
    outline: none;
    transition: box-shadow 0.3s;
}

.contact-input:focus,
.contact-textarea:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}

.contact-textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background-color: white;
    color: #0d1e57;
    height: 150px;
    resize: none;
    outline: none;
    transition: box-shadow 0.3s;
}

.contact-submit {
    margin-top: 10px;
    background-color: #2563EB;
    /* Bright blue button */
    color: white;
    font-family: 'Roboto Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    align-self: center;
    /* Center horizontally */
    transition: background-color 0.3s, transform 0.2s;
    letter-spacing: 1px;
}

.contact-submit:hover {
    background-color: #1D4ED8;
    transform: translateY(-2px);
}

/* Right Glass Cards */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.glass-card {
    /* Glassmorphism Logic */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 30px;
    color: white;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
    transform: translateX(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.gc-region {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    min-width: 120px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 30px;
    text-align: center;
}

.gc-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gc-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.gc-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    opacity: 0.9;
    flex-shrink: 0;
}

.gc-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: #E2E8F0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-header h1 {
        font-size: 42px;
    }
    
    .contact-form-box {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-header h1 {
        font-size: 36px;
    }
    
    .contact-header p {
        font-size: 15px;
    }

    .contact-form-box {
        padding: 25px 20px;
    }
    
    .glass-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
    }

    .gc-region {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 10px;
        margin-right: 0;
        min-width: unset;
        width: 100%;
        text-align: left;
    }
}
.product-carts {
    font-family: "Lexend Deca", sans-serif;
    font-weight: 900;
    margin: 80px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 40px;
    align-items: center;
    text-align: center;
}

.card{
    border-radius: 8px;
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.14 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.collapse {
  visibility: collapse;
}
.relative {
  position: relative;
}
.z-10 {
  z-index: 10;
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.-mt-px {
  margin-top: -1px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.ml-4 {
  margin-left: 1rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-\[3\/4\] {
  aspect-ratio: 3/4;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-full {
  height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.w-16 {
  width: 4rem;
}
.w-36 {
  width: 9rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.max-w-7xl {
  max-width: 80rem;
}
.shrink-0 {
  flex-shrink: 0;
}
.border-collapse {
  border-collapse: collapse;
}
.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.resize {
  resize: both;
}
.snap-x {
  scroll-snap-type: x var(--tw-scroll-snap-strictness);
}
.snap-mandatory {
  --tw-scroll-snap-strictness: mandatory;
}
.snap-start {
  scroll-snap-align: start;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.self-center {
  align-self: center;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}
.bg-\[\#121224\] {
  --tw-bg-opacity: 1;
  background-color: rgb(18 18 36 / var(--tw-bg-opacity));
}
.bg-black\/10 {
  background-color: rgb(0 0 0 / 0.1);
}
.bg-black\/20 {
  background-color: rgb(0 0 0 / 0.2);
}
.bg-emerald-400\/20 {
  background-color: rgb(52 211 153 / 0.2);
}
.bg-emerald-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(16 185 129 / var(--tw-bg-opacity));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}
.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity));
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}
.bg-red-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(153 27 27 / var(--tw-bg-opacity));
}
.bg-sky-400\/90 {
  background-color: rgb(56 189 248 / 0.9);
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-fuchsia-400 {
  --tw-gradient-from: #e879f9 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(232 121 249 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-700 {
  --tw-gradient-from: #374151 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-700\/50 {
  --tw-gradient-from: rgb(55 65 81 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-white\/20 {
  --tw-gradient-from: rgb(255 255 255 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-sky-400 {
  --tw-gradient-to: #38bdf8 var(--tw-gradient-to-position);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.bg-center {
  background-position: center;
}
.stroke-gray-400 {
  stroke: #9ca3af;
}
.stroke-gray-600 {
  stroke: #4b5563;
}
.stroke-red-500 {
  stroke: #ef4444;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-black {
  font-weight: 900;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.leading-relaxed {
  line-height: 1.625;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-emerald-300 {
  --tw-text-opacity: 1;
  color: rgb(110 231 183 / var(--tw-text-opacity));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.text-sky-300 {
  --tw-text-opacity: 1;
  color: rgb(125 211 252 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-white\/60 {
  color: rgb(255 255 255 / 0.6);
}
.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}
.text-white\/80 {
  color: rgb(255 255 255 / 0.8);
}
.text-white\/85 {
  color: rgb(255 255 255 / 0.85);
}
.underline {
  text-decoration-line: underline;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-gray-500 {
  --tw-shadow-color: #6b7280;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-gray-500\/20 {
  --tw-shadow-color: rgb(107 114 128 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-500\/10 {
  --tw-shadow-color: rgb(168 85 247 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-sky-500\/10 {
  --tw-shadow-color: rgb(14 165 233 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline {
  outline-style: solid;
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-purple-400\/60 {
  --tw-ring-color: rgb(192 132 252 / 0.6);
}
.ring-white {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity));
}
.ring-white\/10 {
  --tw-ring-color: rgb(255 255 255 / 0.1);
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-filter {
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.\[-ms-overflow-style\:none\] {
  -ms-overflow-style: none;
}
.\[scrollbar-width\:none\] {
  scrollbar-width: none;
}

:root {
  --color-very-dark: #020B2D;
  --color-base: #0A1F5C;
  --color-primary: #2563EB;
  --color-blue-light: #60A5FA;
  --color-blue-lighter: #D1DCF5;
  --color-blue-muted: #6B7DB8;
  --color-blue-fade: #98A7D7;
  --color-cyan: #67E8F9;
}

.dashboard-body {
  background-color: var(--color-very-dark);
  color: white;
  margin: 0;
  padding: 0;
  padding-top: 80px; /* Accounts for fixed header */
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Importa tus estilos personalizados si quieres unificarlos */
.selection\:bg-red-500 *::-moz-selection {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}
.selection\:bg-red-500 *::selection {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}
.selection\:text-white *::-moz-selection {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.selection\:text-white *::selection {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.selection\:bg-red-500::-moz-selection {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}
.selection\:bg-red-500::selection {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}
.selection\:text-white::-moz-selection {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.selection\:text-white::selection {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hover\:bg-emerald-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(52 211 153 / var(--tw-bg-opacity));
}
.hover\:bg-sky-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(125 211 252 / var(--tw-bg-opacity));
}
.hover\:text-gray-700:hover {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.focus\:rounded-sm:focus {
  border-radius: 0.125rem;
}
.focus\:outline:focus {
  outline-style: solid;
}
.focus\:outline-2:focus {
  outline-width: 2px;
}
.focus\:outline-red-500:focus {
  outline-color: #ef4444;
}
@media (prefers-reduced-motion: no-preference) {

  .motion-safe\:hover\:scale-\[1\.01\]:hover {
    --tw-scale-x: 1.01;
    --tw-scale-y: 1.01;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}
@media (min-width: 640px) {

  .sm\:fixed {
    position: fixed;
  }

  .sm\:right-0 {
    right: 0px;
  }

  .sm\:top-0 {
    top: 0px;
  }

  .sm\:ml-0 {
    margin-left: 0px;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:w-40 {
    width: 10rem;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:justify-center {
    justify-content: center;
  }

  .sm\:justify-between {
    justify-content: space-between;
  }

  .sm\:text-left {
    text-align: left;
  }

  .sm\:text-right {
    text-align: right;
  }

  .sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px) {

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:w-44 {
    width: 11rem;
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:p-8 {
    padding: 2rem;
  }

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 1280px) {

  .xl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}
@media (prefers-color-scheme: dark) {

  .dark\:bg-gray-800\/50 {
    background-color: rgb(31 41 55 / 0.5);
  }

  .dark\:bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity));
  }

  .dark\:bg-red-800\/20 {
    background-color: rgb(153 27 27 / 0.2);
  }

  .dark\:bg-gradient-to-bl {
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops));
  }

  .dark\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity));
  }

  .dark\:text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }

  .dark\:shadow-none {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .dark\:ring-1 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .dark\:ring-inset {
    --tw-ring-inset: inset;
  }

  .dark\:ring-white\/5 {
    --tw-ring-color: rgb(255 255 255 / 0.05);
  }

  .dark\:hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
.\[\&\:\:-webkit-scrollbar\]\:hidden::-webkit-scrollbar {
  display: none;
}

