* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    background: #0c0c0c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    gap: 30px;
    font-family: "Inter", "system-ui", "Segoe UI", sans-serif;
    text-rendering: optimizeLegibility;
}
main {
  display: contents;
}
.header {
    position: fixed;
    top: 10%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: #000;
    border-radius: 9999px;
    z-index: 10000;
}
.logo {
    width: 75px;
    height: auto;
}
.logo img {
    height: 100%;
    width: 100%;
}
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.nav a {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.3 ease-in-out;
}
.nav a::after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: #00dfff;
    transition: width 0.3s ease-in-out;
}
.nav a:hover::after {
    width: 100%;
}
.nav a:hover {
    color: #00dfff;
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    background: none;
    border: none;
    font: inherit;
    padding: 0;
}
.nav-dropdown-toggle::after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: #00dfff;
    transition: width 0.3s ease-in-out;
}
.nav-dropdown-toggle:hover::after,
.nav-dropdown.open .nav-dropdown-toggle::after {
    width: 100%;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
    color: #00dfff;
}
.dropdown-caret {
    font-size: 10px;
    transition: transform 0.25s ease;
}
.nav-dropdown.open .dropdown-caret {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #000;
    border: 1px solid rgb(0 223 255 / 0.3);
    border-radius: 12px;
    min-width: 160px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    z-index: 10001;
}
.nav-dropdown-menu a {
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
}
.nav-dropdown-menu a:hover {
    background: rgb(0 223 255 / 0.15);
    color: #00dfff;
}
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
@media (min-width: 701px) {
    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}
.hamburger {
    display: none;
}
.cta {
    background-color: #1a1a1a;
    color: #00dfff;
    border: 2px solid #00dfff;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.cta:hover {
    background-color: #00dfff;
    color: #1a1a1a;
    box-shadow:
        0 0 10px #00dfff,
        0 0 20px #00dfff;
    border-color: #00dfff;
}
.call:hover::after {
    width: 0% !important;
}
svg {
    width: 90%;
    height: auto;
    transform-origin: center;
}
path {
    fill: none;
    stroke-width: 100;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.template {
    stroke: #313030;
}
.tracer {
    stroke: #00dfff;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    display: none;
}
#trace-effect {
    width: 80%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-stage {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-preview-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 10px 0;
    opacity: 1;
    pointer-events: none;
    top: 350px;
}
.hero-preview-row {
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}
.hero-preview-track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
}
.hero-preview-track.slide-left {
    animation-name: heroSlideLeft;
    animation-duration: 26s;
}
.hero-preview-track.slide-right {
    animation-name: heroSlideRight;
    animation-duration: 30s;
}
@keyframes heroSlideLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes heroSlideRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}
.hero-preview-card.template-preview {
    width: 170px;
    height: 106.25px;
    flex: 0 0 auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgb(0 0 0 / 0.55);
    border-color: rgb(0 223 255 / 0.3);
}
.catch-phrase {
    opacity: 0;
    color: #fff;
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.catch-phrase span {
    font-size: 20px;
}
.catch-phrase span:hover {
    color: #00dfff;
}
.catch-phrase h1 {
    font-size: large;
}
.section-1 {
    position: relative;
    width: 100%;
    min-height: 102vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.section-2 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    gap: 30px;
}
.about-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00dfff;
    background-color: #1a1a1a;
    padding: 10px 10px;
    border-radius: 10px;
    box-shadow:
        0 4px 15px rgb(0 223 255 / 0.3),
        0 8px 30px rgb(0 223 255 / 0.2);
    cursor: pointer;
}
.about-header h2 {
    font-size: 20px;
}
.about-header i {
    color: #00dfff;
    font-size: 20px;
}
.video {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 20px;
    gap: 30px;
    flex-wrap: wrap;
}
.video-wrapper {
    position: relative;
    max-width: 50%;
    border-radius: 12px;
}
.video-wrapper video {
    width: 100%;
}
.volume-btn {
    position: absolute;
    top: 10px;
    left: 93%;
    cursor: pointer;
    width: 10px;
    height: 10px;
}
.fas.fa-volume-mute {
    animation: popScale 1s ease infinite;
}
@keyframes popScale {
    0% {
        transform: scale(1);
    }
    25% {
        opacity: 1;
        transform: scale(1.5);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}
.video video::-webkit-media-controls {
    display: none !important;
}
.about-text {
    max-width: 500px;
    align-self: baseline;
}
.about-text span {
    display: block;
    font-size: 20px;
    text-align: justify;
}
.cards {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-self: center;
    gap: 25px;
}
.service-cards {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-self: center;
    flex-wrap: wrap;
    gap: 25px;
}
.card {
    width: 100%;
    height: fit-content;
    padding: 32px 32px 42px;
    border-radius: 20px;
    background-color: #262626;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.5s ease-out,
        transform 0.5s ease-out;
}
.service-card {
    width: 40%;
    height: fit-content;
    padding: 32px 32px 42px;
    border-radius: 20px;
    background-color: #262626;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    transform: translateY(50px);
    transition:
        opacity 0.5s ease-out,
        transform 0.5s ease-out;
}
.card.show {
    opacity: 1;
    transform: translateY(0);
}
.card-image {
    width: 100px;
    height: 100px;
    aspect-ratio: 1;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0c0c0c;
}
.card-image i {
    font-size: 50px;
    color: #fff;
}
.card-description {
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.card-description h3 {
    font-size: 30px;
    text-align: center;
    color: #fff;
}
.card-description span {
    color: #fff;
    text-align: center;
    font-size: 20px;
    width: 90%;
    height: 50%;
}
.section-3 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.map-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    color: #fff;
}
.map-card {
    width: min(1100px, 100%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgb(26 26 26 / 0.95), rgb(38 38 38 / 0.95));
    border: 1px solid rgb(0 223 255 / 0.25);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(0 223 255 / 0.12);
}
.map-wrapper {
    flex: 1 1 500px;
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}
.location-details {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
}
.location-details h3 {
    color: #00dfff;
    font-size: 24px;
}
.location-details p {
    color: #d9d9d9;
    font-size: 16px;
    line-height: 1.6;
}
.location-details a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.location-details a:hover {
    color: #00dfff;
}
.faq-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    color: #fff;
}
.faq-intro {
    max-width: 700px;
    text-align: center;
    color: #d9d9d9;
    font-size: 16px;
    line-height: 1.6;
}
.faq-list {
    width: min(900px, 100%);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: linear-gradient(135deg, rgb(26 26 26 / 0.95), rgb(38 38 38 / 0.95));
    border: 1px solid rgb(0 223 255 / 0.25);
    border-radius: 14px;
    padding: 4px 22px;
    box-shadow: 0 6px 20px rgb(0 223 255 / 0.08);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.faq-item[open] {
    border-color: rgb(0 223 255 / 0.6);
    box-shadow: 0 10px 30px rgb(0 223 255 / 0.18);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #00dfff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item[open] summary::after {
    transform: rotate(180deg);
}
.faq-item p {
    color: #d9d9d9;
    font-size: 15px;
    line-height: 1.7;
    padding: 0 0 20px;
    max-width: 800px;
}
@media screen and (max-width: 700px) {
    .faq-item summary {
        font-size: 15px;
    }
}
.services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    gap: 30px;
}
.dial-carousel {
    position: relative;
    width: 80%;
    height: 365px;
    perspective: 1200px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    background: url(/dottedblackbackground.jpg) no-repeat center;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #fff;
}
.dial-carousel:active {
    cursor: grabbing;
}
.cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s linear;
}
.carousel-card {
    position: absolute;
    width: 350px;
    height: 200px;
    left: 50%;
    top: 50%;
    background: rgb(255 255 255 / 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow:
        0 25px 50px rgb(0 0 0 / 0.15),
        0 10px 25px rgb(0 0 0 / 0.1),
        inset 0 1px 0 rgb(255 255 255 / 0.9);
    transform-origin: center center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.3);
}
.carousel-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--card-color);
}
.card-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--card-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.card-title {
    font-size: 25px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.2;
}
.card-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}
.card-description {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}
.carousel-card.theme-red {
    --card-color: #ff6b6b;
}
.carousel-card.theme-blue {
    --card-color: #4ecdc4;
}
.carousel-card.theme-purple {
    --card-color: #667eea;
}
.carousel-card.theme-green {
    --card-color: #96ceb4;
}
.carousel-card.theme-orange {
    --card-color: #ffa726;
}
.carousel-card.theme-pink {
    --card-color: #f06292;
}
.carousel-card.theme-teal {
    --card-color: #26c6da;
}
.carousel-card.theme-indigo {
    --card-color: #7986cb;
}
.position-indicator {
    position: absolute;
    display: none;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}
.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgb(254 253 253 / 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}
.indicator-dot.active {
    background: #ff6b6b;
    transform: scale(1.5);
    box-shadow: 0 0 15px rgb(255 107 107 / 0.5);
}
.current-position {
    position: absolute;
    display: none;
    left: 230px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255 255 255 / 0.8);
    color: #fff;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    z-index: 100;
    min-width: 60px;
    text-align: center;
}
.scroll-hint {
    position: absolute;
    top: 30px;
    left: 10%;
    transform: translateX(-50%);
    color: rgb(255 255 255);
    font-size: 15px;
    text-align: center;
    animation:
        popScale 3s infinite,
        pulse 2s infinite;
}
@keyframes pulse {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
.control-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}
.control-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgb(255 255 255 / 0.6);
    border-radius: 50%;
    background: rgb(255 255 255 / 0.9);
    color: #333;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgb(255 255 255 / 0.2);
}
.control-btn:hover {
    background: rgb(255 255 255);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(255 255 255 / 0.3);
}
.control-btn:active {
    transform: translateY(0);
    background: rgb(240 240 240);
}
.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
@media (max-width: 768px) {
    body {
        flex-direction: column;
        gap: 40px;
    }
    .dial-carousel {
        width: 100%;
        max-width: 350px;
        height: 600px;
        background: url(/dottedblackbackgroundmobile.jpg) center center no-repeat;
    }
    .carousel-card {
        width: 300px;
        height: 180px;
    }
    .position-indicator {
        right: -40px;
    }
    .current-position {
        left: -60px;
    }
    .control-buttons {
        top: 100px;
    }
    .scroll-hint {
        top: unset;
        bottom: 45px !important;
        left: 30%;
    }
}
.design {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.design .video-wrapper {
    position: relative;
    width: 500px;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        z-index 0.3s ease;
    z-index: 2;
}
.design .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body.blur-active::before {
    content: "";
    position: fixed;
    inset: 0;
    backdrop-filter: blur(6px) brightness(0.6);
    background: rgb(0 0 0 / 0.3);
    z-index: 1;
    pointer-events: none;
}
.video-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0 0 0 / 0.65);
    backdrop-filter: blur(8px) brightness(0.55);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 180ms ease,
        visibility 180ms;
    pointer-events: none;
}
.video-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.video-overlay .popup {
    width: 90vw;
    max-height: 100vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgb(0 0 0 / 0.6);
    background: #fff0;
    position: relative;
}
.video-overlay video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}
.video-overlay .popup-vol {
    position: absolute;
    right: 50px;
    top: 50px;
    z-index: 2;
    border: none;
    background: rgb(255 255 255 / 0.06);
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    backdrop-filter: blur(4px);
}
.video-overlay .popup-vol i {
    font-size: 16px;
}
.design .video-wrapper.hovered video {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.fa-solid.fa-arrow-pointer {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    color: orangered;
    animation: clickHint 2s infinite;
}
@keyframes clickHint {
    0% {
        transform: scale(0.8) translateX(20px) translateY(50px);
    }
    25% {
        transform: scale(1.5) translateX(-20px);
    }
    50% {
        transform: scale(0.8) translateX(20px) translateY(50px);
    }
    75% {
        transform: scale(1.5) translateX(-20px);
    }
    100% {
        transform: scale(0.8) translateX(20px) translateY(50px);
    }
}
.section-4 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stats-cards {
    width: 100%;
    display: flex;
    padding: 20px;
    gap: 10%;
    justify-content: center;
    align-items: center;
}
.stats {
    width: 200px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    color: #fff;
    box-shadow: 15px 0 12px -12px #fff;
}
.stats .title {
    font-size: 3rem;
}
.outer {
    width: 350px;
    height: 500px;
    border-radius: 10px;
    padding: 1px;
    background: radial-gradient(circle 230px at 0% 0%, #ffffff, #0c0d0d);
    position: relative;
}
.dot {
    width: 5px;
    aspect-ratio: 1;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 10px #fff;
    border-radius: 100px;
    z-index: 2;
    right: 10%;
    top: 10%;
    animation: moveDot 6s linear infinite;
}
@keyframes moveDot {
    0%,
    100% {
        top: 10%;
        right: 10%;
    }
    25% {
        top: 10%;
        right: calc(100% - 39px);
    }
    50% {
        top: calc(100% - 44px);
        right: calc(100% - 39px);
    }
    75% {
        top: calc(100% - 44px);
        right: 10%;
    }
}
.ana-card {
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    border: solid 1px #202222;
    background-size: 20px 20px;
    background: radial-gradient(circle 280px at 0% 0%, #444444, #0c0d0d);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 60px;
    padding-left: 35px;
    padding-right: 35px;
}
.ray {
    width: 220px;
    height: 45px;
    border-radius: 100px;
    position: absolute;
    background-color: #c7c7c7;
    opacity: 0.4;
    box-shadow: 0 0 50px #fff;
    filter: blur(10px);
    transform-origin: 10%;
    top: 0%;
    left: 0;
    transform: rotate(40deg);
}
.ana-card .text {
    font-weight: bolder;
    font-size: 1.6rem;
    background: #00dfff;
    background-clip: text;
    color: #fff0;
    justify-self: flex-start;
}
.package-details {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 5px;
}
.package-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.line {
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #2c2c2c;
}
.topl {
    top: 10%;
    background: linear-gradient(90deg, #888888 30%, #1d1f1f 70%);
}
.bottoml {
    bottom: 10%;
}
.leftl {
    top: 0;
    left: 10%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, #747474 30%, #222424 70%);
}
.rightl {
    top: 0;
    right: 10%;
    width: 1px;
    height: 100%;
}
.reviews {
    width: 100%;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.reviews-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
}
.reviews-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
}
.review-card {
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    width: 200px;
    height: 300px;
    border-radius: 10px;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.3);
}
.review-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
}
.review-stars i {
    color: gold;
}
.slider-btn {
    background: none;
    border: 2px solid #fff;
    color: #fff;
    font-size: 20px;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10;
}
.slider-btn:hover {
    background: #fff;
    color: #000;
}
.slider-btn.prev {
    position: absolute;
    right: 55%;
    bottom: 0;
}
.slider-btn.next {
    position: absolute;
    left: 55%;
    bottom: 0;
}
.section-5 {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.subscriptions {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.section-6 {
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.footer {
    width: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(dottedblackbackground.jpg) no-repeat;
    gap: 20px;
}
.catch-phrase-footer {
    width: 100%;
    color: #fff;
    font-size: 4rem;
    text-align: center;
}
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.social-links a {
    text-decoration: none;
    color: #00dfff;
    font-size: 2.3rem;
    transition: color 0.3s ease-in-out;
}
.social-links a:hover {
    color: #fff;
}
.copy-right {
    color: #fff;
}
.site-links {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.site-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
}
.site-links a:hover {
    color: #00dfff;
}
@media screen and (max-width: 1115px) {
    .about {
        flex-direction: column;
    }
    .video-wrapper {
        max-width: 90% !important;
    }
    .about-text {
        max-width: 90%;
    }
    .cards {
        flex-direction: column;
    }
    .service-cards {
        flex-direction: column;
    }
    .service-card {
        width: 100%;
    }
    .subscriptions {
        flex-direction: column;
    }
}
@media screen and (max-width: 700px) {
    .nav {
        display: none;
    }
    .hamburger {
        display: flex;
        width: 35px;
        height: 35px;
    }
    .hamburger-button {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background-color: #fff0;
        border: none;
        cursor: pointer;
        border-radius: 10px;
        transition: 0.3s ease-in-out;
    }
    .hamburger-button:hover {
        background-color: #00dfff;
        transform: scale(1.2);
    }
    .bars {
        background-color: #fff;
        width: 90%;
        height: 3px;
        border-radius: 3px;
    }
    .header {
        width: 80%;
    }
    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        width: 90%;
        height: 300px;
        top: 75px;
        background: #000;
        border-radius: 10px;
        z-index: 1000;
    }
    .stats-cards {
        flex-wrap: wrap;
    }
    .stats {
        box-shadow: 0 15px 12px -12px #fff;
    }
    .footer {
        background-image: url(/dottedblackbackgroundmobile.jpg) !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-size: cover !important;
        background-attachment: scroll !important;
        padding-bottom: 50px;
    }
    .site-links {
        flex-direction: column;
    }
    .catch-phrase h1 {
        font-size: x-small !important;
    }
}
.templates-section {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 48px 0 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: #eef5ff;
}
.templates-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00dfff;
    background-color: #1a1a1a;
    padding: 10px 10px;
    border-radius: 10px;
    box-shadow:
        0 4px 15px rgb(0 223 255 / 0.3),
        0 8px 30px rgb(0 223 255 / 0.2);
    cursor: pointer;
}
.templates-header h1 {
    font-size: 20px;
    margin: 0;
}
.templates-header i {
    color: #00dfff;
    font-size: 20px;
}
.templates-body {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
    align-items: flex-start;
    width: 100%;
}
.templates-sidebar,
.template-panel {
    background: linear-gradient(180deg, rgb(18 20 26 / 0.96), rgb(15 17 23 / 0.96));
    border-radius: 28px;
    border: 1px solid rgb(255 255 255 / 0.08);
    box-shadow:
        inset 0 0 0 1px rgb(255 255 255 / 0.04),
        0 24px 72px rgb(0 0 0 / 0.2);
    padding: 28px;
    backdrop-filter: blur(12px);
}
.templates-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.templates-sidebar p {
    margin: 0;
    color: #d1d9e4;
    line-height: 1.8;
    font-size: 15px;
}
.category-chip {
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(255 255 255 / 0.04);
    color: #eef5ff;
    padding: 14px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition:
        transform 0.24s ease,
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
    text-align: left;
    width: 100%;
    font-size: 15px;
    box-shadow: 0 0 0 1px rgb(255 255 255 / 0.015);
}
.category-chip.active,
.category-chip:hover {
    background: rgb(0 223 255 / 0.2);
    color: #080808;
    border-color: rgb(0 223 255 / 0.35);
    transform: translateX(2px);
    box-shadow: 0 18px 30px rgb(0 223 255 / 0.12);
}
.template-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.template-panel h2 {
    margin: 0;
    color: #fff;
    font-size: 30px;
}
.template-meta {
    color: #b8c7d8;
    margin: 0;
    font-size: 15px;
}
.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.template-card {
    position: relative;
    background: rgb(18 20 26 / 0.95);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 28px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    cursor: default;
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease,
        border-color 0.32s ease,
        background 0.32s ease;
    min-height: 240px;
    overflow: hidden;
}
.template-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top left, rgb(0 223 255 / 0.08), transparent 25%),
        linear-gradient(180deg, rgb(255 255 255 / 0.02), transparent 45%);
}
.template-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 90px rgb(0 0 0 / 0.45);
    border-color: rgb(0 223 255 / 0.24);
    background: rgb(20 22 30 / 0.99);
}
.template-preview {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #0d0f14;
    border: 1px solid rgb(255 255 255 / 0.08);
    z-index: 1;
    cursor: pointer;
}
.template-preview iframe {
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    display: block;
    background: #fff;
    transform-origin: top left;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease;
}
.template-preview iframe.is-loaded {
    opacity: 1;
}
.template-preview .preview-loading {
    animation: previewPulse 1.6s ease-in-out infinite;
    transition: opacity 0.35s ease;
}
.template-preview .preview-loading.is-hidden {
    opacity: 0;
    pointer-events: none;
}
@keyframes previewPulse {
    0%,
    100% {
        opacity: 0.55;
    }
    50% {
        opacity: 1;
    }
}
.template-preview .preview-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d8b9a;
    font-size: 13px;
    background: #0d0f14;
    text-align: center;
    padding: 10px;
}
.template-preview .preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.25s ease;
    background: linear-gradient(180deg, transparent 60%, rgb(0 0 0 / 0.55));
}
.template-preview:hover .preview-overlay {
    opacity: 1;
}
.preview-overlay span {
    background: rgb(0 223 255 / 0.15);
    color: #d7f7ff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    border: 1px solid rgb(0 223 255 / 0.3);
}
.template-card h3 {
    margin: 0;
    color: #f8fbff;
    font-size: 22px;
    z-index: 1;
}
.template-card p {
    margin: 0;
    color: #d5dae0;
    line-height: 1.75;
    font-size: 14px;
    z-index: 1;
}
.template-card .features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 1;
}
.feature-pill {
    background: rgb(0 223 255 / 0.12);
    color: #d7f7ff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    border: 1px solid rgb(0 223 255 / 0.16);
    backdrop-filter: blur(4px);
}
.template-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}
.template-demo-button {
    background: linear-gradient(135deg, #00dfff, #5d99ff);
    color: #0d1117;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        background 0.24s ease;
    box-shadow: 0 14px 30px rgb(0 223 255 / 0.22);
}
.template-demo-button:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #4de6ff, #8cb0ff);
    box-shadow: 0 20px 34px rgb(0 223 255 / 0.28);
}
.empty-state {
    color: #d4d4d4;
    font-size: 15px;
    padding: 20px;
    background: rgb(255 255 255 / 0.03);
    border-radius: 18px;
    border: 1px dashed rgb(255 255 255 / 0.08);
}
.template-status {
    color: #88e8ff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
@media (max-width: 960px) {
    .templates-body {
        grid-template-columns: 1fr;
    }
    .templates-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .templates-sidebar,
    .template-panel {
        padding: 20px;
    }
}
