@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    font-optical-sizing: auto;
}

:root {
    --animation-duration: 1s;
    --animation-delay: 0.3s;
    --fade-distance: 30px;
    --scale-factor: 1.05;
    --footer-bg: #041022;
    --text-color: #ffffff;
    --hover-color: #f39c12;
    --footer-padding: 40px;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.97;
    z-index: 1;
}

.hero-socials {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn var(--animation-duration) ease-in-out forwards;
    z-index: 9;
}

.hero-socials .socials {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: #020f1fef;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    padding: 30px 0 250px 0;
}

.hero-header,
.hero-content,
.hero-carousel {
    position: relative;
    z-index: 2;
    animation: slideDown var(--animation-duration) ease-in-out forwards var(--animation-delay);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-header {
    display: flex;
    justify-content: space-between;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
}

.hero-logo {
    margin: 45px;
}

.hero-logo img {
    width: 200px;
    transform: scale(0.8);
    animation: scaleUp var(--animation-duration) ease-in-out forwards calc(var(--animation-delay) + 0.2s);
}

.hero-header .hero-visit {
    background-color: #041325e5;
    border-bottom-left-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 80px;
    height: 100px;
    transform: translateY(0px);
    animation: fadeIn var(--animation-duration)ease-in-out forwards calc(var(--animation-delay) + 0.4s);
}

.hero-header .hero-visit * {
    color: white;
    font-size: 22px;
    text-decoration: unset;
}

.hero-header .hero-visit a {
    font-weight: 700;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(30px);
    animation: fadeInUp var(--animation-duration) ease-in-out forwards calc(var(--animation-delay) + 0.6s);
}

.hero-content .hero-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-content .hero-text h1 {
    color: white;
    font-size: 90px;
    font-weight: 700;
    margin: 20px 0;
    min-width: 1280px;
    line-height: 60px;
    letter-spacing: 1px;
}

/* responsive */
@media (max-width: 1300px) {
    .hero-content .hero-text h1 {
        min-width: 1000px !important;
    }
}

@media (max-width: 1000px) {
    .hero-content .hero-text h1 {
        min-width: 800px !important;
    }
}

@media (max-width: 800px) {
    .hero-content .hero-text h1 {
        min-width: 600px !important;
    }
}

.hero-content .hero-text span {
    font-weight: 300;
}

.hero-content button {
    display: inline-block;
    background-color: unset;
    border: 2px solid white;
    padding: 15px 130px;
    color: white;
    border-radius: 50px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 40px;
}

.hero-content button:hover {
    background-color: white;
    color: #041022;
    transition: 0.4s;
    cursor: pointer;
}

/* Carousel container */
.hero-carousel {
    position: relative;
    /* Needed to contain absolute/fixed children if needed */
    width: 100%;
    /* Full width */
    overflow: hidden;
    /* Hide the overflowing part as it scrolls */
    background-color: #91c3ff13;
    /* Slightly transparent background */
    height: 95px;
    /* Adjust as needed */
    display: flex;
    /* We keep a flex context (if you prefer) */
    align-items: center;
    justify-content: flex-start;
}

/* The track that holds & scrolls all items */
.hero-carousel-track {
    display: flex;
    align-items: center;
    /* The keyframe animation scrolls from left to right (or right to left). */
    animation: scroll 20s linear infinite;
}

/* Each item */
.hero-carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    /* Keep city names on one line */
    padding: 20px 50px;
}

/* The city text */
.hero-carousel-item span {
    font-size: 60px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.coming-soon {
    font-weight: 400;
}

/* Dot between items */
.carousel-dot {
    width: 32px;
    /* Size of dot */
    height: 32px;
    background: #fff;
    /* White circle */
    border-radius: 50%;
}

/* Keyframes for scrolling leftward.
     Adjust percentages and transform as needed. */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move left exactly half the track's length if you duplicated the items exactly once.
         If you add more (or fewer) duplicates, you must adjust accordingly. */
        transform: translateX(-50%);
    }
}

/* Grid Container */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

/* responsive */
@media (max-width: 1300px) {
    .about-grid {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
    }

    .about-grid-item.text {
        padding: 50px 60px;
    }

    .about-grid-item:nth-child(3) {
        order: 4;
    }
}

/* Grid Items */
.about-grid-item {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(var(--fade-distance));
    animation: fadeInUp var(--animation-duration) ease-in-out forwards;
}

/* Delayed Animation */
.about-grid-item:nth-child(1) {
    animation-delay: var(--animation-delay);
}

.about-grid-item:nth-child(2) {
    animation-delay: calc(var(--animation-delay) * 2);
}

.about-grid-item:nth-child(3) {
    animation-delay: calc(var(--animation-delay) * 3);
}

.about-grid-item:nth-child(4) {
    animation-delay: calc(var(--animation-delay) * 4);
}

/* Image Hover Effect */
.about-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease-in-out;
}

.about-grid-item:hover img {
    transform: scale(var(--scale-factor));
}

/* Text Animation */
.about-grid-item h1 {
    font-size: 85px;
    font-weight: 200;
    color: #0A1F3B;
    letter-spacing: 3px;
    line-height: 93px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInText var(--animation-duration) ease-in-out forwards calc(var(--animation-delay) * 2);
}

/* Span Scaling */
.about-grid-item h1 span {
    font-weight: 700;
    display: inline-block;
    transform: scale(0.95);
    opacity: 0;
    animation: popIn 0.6s ease-in-out forwards calc(var(--animation-delay) * 3);
}

.about-grid-item.text.start {
    padding-left: 70px;
}

.about-grid-item.text.end {
    text-align: right;
    padding-right: 20px;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(var(--fade-distance));
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

.about-section {
    position: relative;
    /* Needed for absolute positioning inside */
    background-image: url('images/background-section.png');
    background-size: cover;
    background-position: bottom;
    height: 120vh;
    z-index: 1;
    /* Background layer */
}

/* about section responsive */
@media (max-width: 1730px) {
    .about-section {
        height: 160vh;
        background-size: unset;
        background-position-y: -125px;
        background-repeat: no-repeat;
    }
}

@media (max-width: 1300px) {
    .about-section {
        height: unset;
    }

    .floating-text {
        margin-top: 200px;
    }
}

@media (max-width: 1300px) {
    .about-section {
        height: 240vh;
    }

    .floating-text {
        margin-top: 300px;
    }
}

/* Overlay sits above background but below text */
.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #041325e5;
    /* Blue overlay */
    z-index: 2;
    /* Above background but below text */
}

/* About text is now absolutely positioned in top-left */
.about-text {
    position: absolute;
    /* This is required! */
    top: 20px;
    /* Adjust spacing from top */
    left: 20px;
    /* Adjust spacing from left */
    color: rgba(255, 255, 255, 0.795);
    z-index: 3;
    opacity: 0.9;
}

.about-text h1 {
    font-size: 90px;
    line-height: 85px;
    margin: 60px;
}

.about-text h1 span {
    font-weight: 200;
}

/* Container for all slides */
.about-cards {
    width: 100%;
    /* Center horizontally */
    position: absolute;
    /* This is required! */
    bottom: 0;
    /* Adjust spacing from top */
    z-index: 3;
    opacity: 0.9;
    padding: 0 120p;
}

/* Each “slide” containing two cards */
.about-slide {
    display: none;
    /* Hide by default */
    gap: 2rem;
    margin: 0 2rem;
    /* Space between cards */
    animation: fadeIn 0.5s ease forwards;
}

.about-slide.active {
    display: flex;
    /* Show the currently active slide */
}

/* Individual Card Styles */
.about-card {
    flex: 1;
    /* Let each card take up 50% of the slide */
    background-color: #041022;
    /* White background for “bubble” look */
    border-radius: 30px;
    padding: 20px 30px;
    border: 1px solid #0057DE;
    color: white;
    padding-bottom: 90px;
}

/* Floating text container */
.floating-texts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    /* Ensures text does not interfere with other elements */
}

/* Floating text styling */
.floating-text {
    position: absolute;
    display: flex;
    color: white;
    font-size: 24px;
    font-weight: 300;
    max-width: 250px;
    animation: floatText 3s infinite ease-in-out alternate;
}

/* Blue triangle */
.triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid #0890D5;
    /* Blue triangle */
    transform: rotate(30deg);
    /* Adjust triangle direction */
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

/* Floating animation */
@keyframes floatText {
    0% {
        transform: translateY(0);
        opacity: 0.9;
    }

    100% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-text {
        font-size: 16px;
        max-width: 200px;
    }
}


.dot-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

/* Dot navigation container */
.dot-container .dots {
    display: flex;
    justify-content: center;
    background-color: #041022;
    padding: 12px 40px;
    margin-top: 50px !important;
    border-radius: 50px;
}

/* Each dot */
.dot {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #0057de;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.dot {
    display: none !important;
    /* Hide all dots by default */
}

.dot.active {
    display: flex !important;
    /* Show only the active dot */
}

/* Mobile: Show all dots */
@media (max-width: 900px) {
    .dot {
        display: flex !important;
        /* Show all dots on mobile */
    }
}

.dot.active {
    background-color: white;
    border: 1px solid #0057de;
    width: 18px;
    height: 18px;
    margin-top: 0;
    /* Highlight active dot */
}

.about-card h2 {
    font-size: 45px;
    display: flex;
    flex-direction: column;
    line-height: 45px;
    height: 130px;
}

@media screen and (max-width: 1265px) {
    .about-card h2 {
        height: 190px;
    }
}

@media screen and (max-width: 1200px) {
    .about-card h2 {
        height: 250px;
    }
}

.about-card h2 span {
    text-align: center !important;
}

.about-card p {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    font-weight: 400;
    color: white;
}

.about-card p strong {
    font-weight: 800;
}

/* Fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: responsive tweak to stack cards vertically on small screens */
@media (max-width: 768px) {
    .about-slide {
        flex-direction: column;
    }
}

.contact-section {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.contact-section h2 {
    text-align: center;
    font-size: 59px;
    margin-top: 30px;
    font-weight: 200;
    line-height: 80px;
    color: #041022;
}

.contact-section h2 span {
    font-weight: 800;
}

.contact-section button {
    background-color: #041022;
    color: white;
    border-radius: 50px;
    padding: 18px 190px;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 50px;
}

.contact-section button:hover {
    background-color: white;
    color: #041022;
    transition: 0.4s;
    cursor: pointer;
}

.contact-section img {
    width: 100%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--text-color);
    padding: var(--footer-padding) 20px;
    font-family: "Arial", sans-serif;
}

/* Footer Container */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Logo */
.footer-logo img {
    width: 150px;
    opacity: 0.9;
    transition: opacity 0.3s ease-in-out;
}

.footer-logo img:hover {
    opacity: 1;
}

/* Navigation Links */
.footer-nav {
    display: flex;
    font-size: 18px;
    font-weight: 500;
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-nav a:hover {
    color: var(--hover-color);
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--text-color);
    font-size: 20px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.footer-social a:hover {
    color: var(--hover-color);
    transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
}

/* Footer Base */
.footer {
    background: var(--footer-bg);
    color: var(--text-color);
    padding: var(--footer-padding) 20px;
    font-family: "Arial", sans-serif;
    border-top: 3px solid white;
}

/* Footer Container */
.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

/* Footer Columns */
.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Social Media Icons */
.footer-social .social-links {
    display: flex;
    gap: 15px;
}

.footer-social .social-links a {
    color: var(--text-color);
    font-size: 20px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.footer-social .social-links a:hover {
    color: var(--hover-color);
    transform: scale(1.2);
}

/* Navigation Links */
.footer-nav a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    margin: 5px 0;
    transition: color 0.3s ease-in-out;
}

.footer-nav a:hover {
    color: var(--hover-color);
}

/* Footer Info */
.footer-info p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-info img {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
}

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (max-width: 900px) {

    /* Hide the second .about-card in each .about-slide */
    .about-slide .about-card:nth-child(2) {
        display: none;
    }
}

/* mobile screens */
@media (max-width: 500px) {
    .hero-logo img {
        width: 80px;
    }

    .hero-logo {
        margin: 20px;
    }

    .hero-header .hero-visit {
        padding: 0px 50px;
        height: 70px;
    }

    .hero-header .hero-visit * {
        font-size: 16px;
    }

    .hero-content .hero-text h1 {
        min-width: unset !important;
        font-size: 52px;
        line-height: 68px;
        margin: unset;
    }

    .hero-content button {
        font-size: 22px;
        padding: 8px 60px;
    }

    .hero-content {
        justify-content: flex-start;
        align-items: flex-start;
        margin-left: 20px;
    }

    .hero-socials .socials {
        padding: 15px 0px 0 0px;
        border-top-left-radius: 60px;
        border-bottom-left-radius: 60px;
    }

    .hero-socials .socials img {
        width: 70px;
    }

    .hero-socials {
        bottom: 300px;
    }

    .hero-carousel-item span {
        font-size: 40px;
    }

    .about-grid-item h1 {
        font-size: 34px;
        line-height: 40px !important;
        letter-spacing: unset;
    }

    .about-grid-item.text.start {
        padding-left: 40px;
    }

    .about-grid-item.text.end {
        padding-right: 40px;
    }

    .about-grid-item.text {
        padding: 40px;
    }

    .about-text h1 {
        font-size: 18px;
        margin: unset;
    }

    .about-text h1 {
        font-size: 38px;
        line-height: 45px;
        margin: unset;
    }

    .contact-section h2 {
        font-size: 38px;
        line-height: 47px;
    }

    .contact-section button {
        padding: 10px 90px;
        font-size: 18px;
    }

    .about-card h2 {
        height: 180px;
    }

    .footer-container {
        align-items: unset;
    }

    .about-section {
        height: unset;
    }

    .about-cards {
        position: relative;
        margin: 50px 0;
        padding-bottom: 10px;
    }

    .floating-texts {
        position: relative;
        padding: 250px 20px 0px 20px;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .floating-text:nth-child(1) {
        top: 10% !important;
        left: 30% !important;
        max-width: 250px !important;
        text-align: center !important;
    }

    .floating-text:nth-child(1) .triangle {
        bottom: 0 !important;
        right: 0 !important;
        left: unset !important;
        top: unset !important;
        border-left: 21px solid transparent !important;
        border-right: 39px solid transparent !important;
        border-top: 45px solid #0890D5 !important;
        rotate: 219deg !important;
    }

    .floating-text:nth-child(2),
    .floating-text:nth-child(4) {
        top: 15% !important;
        left: 10% !important;
        max-width: 200px !important;
        text-align: center !important;
    }

    .floating-text:nth-child(2) .triangle {
        border-left: 20px solid transparent !important;
        border-right: 21px solid transparent !important;
        rotate: -37deg !important;
        border-top: 46px solid #0890D5 !important;
        transform: rotate(6deg) !important;
        left: -26px !important;
        top: -47px !important;
    }

    .floating-text:nth-child(3) .triangle {
        border-left: 23px solid transparent !important;
        border-right: 23px solid transparent !important;
        border-top: 46px solid #0890D5 !important;
        transform: rotate(155deg) !important;
        left: unset !important;
        top: unset !important;
        bottom: -60% !important;
        right: 40px !important;
    }

    .floating-text:nth-child(4) .triangle {
        border-left: 30px solid transparent !important;
        border-right: 30px solid transparent !important;
        border-top: 45px solid #0890D5 !important;
        transform: rotate(10deg) !important;
        ;
        left: -30px !important;
        top: 70% !important;
    }

    .floating-text:nth-child(5) .triangle {
        border-left: 16px solid transparent !important;
        border-right: 18px solid transparent !important;
        border-top: 41px solid #0890D5 !important;
        transform: rotate(8deg) !important;
        left: 100px !important;
        top: -60% !important;
    }

    .floating-text:nth-child(3),
    .floating-text:nth-child(5) {
        top: 30% !important;
        left: 40% !important;
        max-width: 180px !important;
        text-align: center !important;
    }

    .floating-text {
        all: unset;
        color: white;
        display: flex;
        align-items: center;
        position: relative;
    }

    .hero-overlay {
        opacity: 0.7;
    }

    .about-card h2 {
        height: unset;
        margin-bottom: 20px;
    }
}

.socket {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    margin-left: -100px;
    top: 50%;
    margin-top: -100px;
    z-index: 9999;
}

.hex-brick {
    background: #ABF8FF;
    width: 30px;
    height: 17px;
    position: absolute;
    top: 5px;
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
}

.h2 {
    transform: rotate(60deg);
    -webkit-transform: rotate(60deg);
}

.h3 {
    transform: rotate(-60deg);
    -webkit-transform: rotate(-60deg);
}

.gel {
    height: 30px;
    width: 30px;
    transition: all .3s;
    -webkit-transition: all .3s;
    position: absolute;
    top: 50%;
    left: 50%;
}

.center-gel {
    margin-left: -15px;
    margin-top: -15px;

    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
}

.c1 {
    margin-left: -47px;
    margin-top: -15px;
}

.c2 {
    margin-left: -31px;
    margin-top: -43px;
}

.c3 {
    margin-left: 1px;
    margin-top: -43px;
}

.c4 {
    margin-left: 17px;
    margin-top: -15px;
}

.c5 {
    margin-left: -31px;
    margin-top: 13px;
}

.c6 {
    margin-left: 1px;
    margin-top: 13px;
}

.c7 {
    margin-left: -63px;
    margin-top: -43px;
}

.c8 {
    margin-left: 33px;
    margin-top: -43px;
}

.c9 {
    margin-left: -15px;
    margin-top: 41px;
}

.c10 {
    margin-left: -63px;
    margin-top: 13px;
}

.c11 {
    margin-left: 33px;
    margin-top: 13px;
}

.c12 {
    margin-left: -15px;
    margin-top: -71px;
}

.c13 {
    margin-left: -47px;
    margin-top: -71px;
}

.c14 {
    margin-left: 17px;
    margin-top: -71px;
}

.c15 {
    margin-left: -47px;
    margin-top: 41px;
}

.c16 {
    margin-left: 17px;
    margin-top: 41px;
}

.c17 {
    margin-left: -79px;
    margin-top: -15px;
}

.c18 {
    margin-left: 49px;
    margin-top: -15px;
}

.c19 {
    margin-left: -63px;
    margin-top: -99px;
}

.c20 {
    margin-left: 33px;
    margin-top: -99px;
}

.c21 {
    margin-left: 1px;
    margin-top: -99px;
}

.c22 {
    margin-left: -31px;
    margin-top: -99px;
}

.c23 {
    margin-left: -63px;
    margin-top: 69px;
}

.c24 {
    margin-left: 33px;
    margin-top: 69px;
}

.c25 {
    margin-left: 1px;
    margin-top: 69px;
}

.c26 {
    margin-left: -31px;
    margin-top: 69px;
}

.c27 {
    margin-left: -79px;
    margin-top: -15px;
}

.c28 {
    margin-left: -95px;
    margin-top: -43px;
}

.c29 {
    margin-left: -95px;
    margin-top: 13px;
}

.c30 {
    margin-left: 49px;
    margin-top: 41px;
}

.c31 {
    margin-left: -79px;
    margin-top: -71px;
}

.c32 {
    margin-left: -111px;
    margin-top: -15px;
}

.c33 {
    margin-left: 65px;
    margin-top: -43px;
}

.c34 {
    margin-left: 65px;
    margin-top: 13px;
}

.c35 {
    margin-left: -79px;
    margin-top: 41px;
}

.c36 {
    margin-left: 49px;
    margin-top: -71px;
}

.c37 {
    margin-left: 81px;
    margin-top: -15px;
}

.r1 {
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .2s;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .2s;
}

.r2 {
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .4s;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .4s;
}

.r3 {
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .6s;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .6s;
}

.r1>.hex-brick {
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .2s;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .2s;
}

.r2>.hex-brick {
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .4s;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .4s;
}

.r3>.hex-brick {
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .6s;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .6s;
}


@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.01);
        transform: scale(0.01);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes fade {
    0% {
        background: #ABF8FF;
    }

    50% {
        background: #90BBBF;
    }

    100% {
        background: #ABF8FF;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.01);
        transform: scale(0.01);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes fade {
    0% {
        background: #ABF8FF;
    }

    50% {
        background: #389CA6;
    }

    100% {
        background: #ABF8FF;
    }
}

#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #041325e5;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#content {
    opacity: 0; /* Initially invisible */
    transition: opacity 1s ease-in-out; /* Smooth fade-in effect */
}