@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

html {
    scroll-behavior: smooth;
    background-color: #ffffff;
    /* Clean White */
    cursor: none;
}


header {
    background-color: #001a66;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header>.collapsible-header {
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: #001a66;
    place-content: center;
    overflow: hidden;
    /* transition: width 0.3s ease; */
}

.outline-effect {
    color: black;
    -webkit-text-fill-color: white;
    /* Will override color (regardless of order) */
    -webkit-text-stroke: 1px black;
}

.animated-collapse {
    transition: width 0.3s ease;
}

.header-links {
    display: flex;
    position: relative;
    align-items: center;
    min-width: fit-content;
    border-radius: 25px;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s;
}

.header-links:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: '';
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #001a66;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.header-links:hover:after {
    width: 100%;
    left: 0;
}

.header-black-bg {
    color: #ffffff;
}

.header-black-bg:hover {
    background-color: #001a66 !important;
    color: #fff !important;
}

.cursor {
    width: 20px;
    height: 20px;
    position: fixed;
    background-color: transparent;
    pointer-events: none;
    /* Prevent it from interfering with mouse events */
    z-index: 9999;
    display: none;
}

.cursor-div {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: small;
    font-weight: 500;
    padding: 4px 8px;
    /* border: 1px solid #000; */
    color: #fff;
    background-color: #001a66;
    box-shadow: 0px 0px 10px 1px #f40a15d5;
}

.cursive-text {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.primary-text-color {
    color: #001a66;
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-100 {
    opacity: 100 !important;
}

.btn {
    padding: 10px 15px;
    width: max-content;
    color: #f6f2f2;
    background-color: #001a66;
    justify-content: center;
    align-items: center;
    display: flex;
}

select {
    outline: none;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 5px;
}

select>option {
    background-color: #000;
    border-radius: 5px;
    color: #fff;
    padding: 5px;
}

.btn:hover {
    background-color: #001144;
}

.input {
    padding: 10px;
    outline: none;
    min-width: 100px;
    color: #333333;
    background-color: transparent;
    border: 2px solid #cecece;
    transition: border 0.3s;
}

.input:active,
.input:focus,
.input:focus-within {
    border: 2px solid #001a66;
}

.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-toggle {
    width: 100%;
    outline: none;
    /* background-color: #000; */
    /* border: 1px solid #ccc; */
}

.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: #000000;
    border: 1px solid #f2f2f2;
    list-style-type: none;
    padding: 0;
    width: 100%;
    left: 0px;
    top: 105%;
    border-radius: 10px;
    overflow: hidden;
}

.dropdown-menu li {
    padding: 8px 12px;
    /* cursor: pointer; */
}

.dropdown-menu li:hover {
    background-color: #ff000084;
}

.slides {
    display: none;
    position: relative;
    height: 100%;
}

/* Slideshow container */
.slideshow-container {
    width: 100%;
    position: relative;
    margin: auto;
    height: auto;
}

.slideshow-container img {
    vertical-align: middle;
    height: 100%;
}

#flip-image {
    /* transform-origin: bottom center; */
    transition: transform 0.5s;
}

.sliding-image-container {
    position: relative;
    width: max-content;
    overflow-x: hidden;
}


.sliding-image {
    flex-shrink: 0;
    position: relative;
}

.sliding-image-gradient {
    pointer-events: none;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, #ffffff 0%, #ffffff00 15%, #ffffff09 80%, #ffffff 100%);
}

/* Create keyframe animation */
@keyframes slideLeft {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

.footer-link {
    color: #333;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #00d1ff;
}


@media not all and (min-width: 768px) {
    header .collapsible-header {
        position: absolute;
        right: 0px;
        flex-direction: column;
        justify-content: space-between;
        opacity: 0;
        height: 100vh;
        width: 0vw;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: end;
        background-color: #001a66;
        color: #ffffff;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    }

    .sliding-image {
        width: 250px;
    }
}

/* Hero Sections */
.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 3rem;
}

.hero-top-row {
    display: grid;
    grid-template-columns: 200px 1fr 400px;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.hero-main-title {
    display: none;
}

.hero-center-content {
    margin-left: 30px;
}

.hero-content-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(0, 26, 102, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

.logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #001a66;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: pulse 2.5s infinite ease-in-out;
    margin-left: 40px;
}

.logo-circle img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.camera-player-container {
    width: 100%;
    max-width: 400px;
    position: relative;
    justify-self: end;
}

.camera-player-label {
    margin-bottom: 8px;
    font-weight: 700;
    color: #001a66;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.camera-player-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #e53935;
    border-radius: 50%;
    animation: blink_live 2s infinite;
}

@keyframes blink_live {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.video-js-container {
    border: 3px solid #001a66;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-js.vjs-default-skin {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9;
}

@media (max-width: 1200px) {
    .hero-top-row {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 2rem;
    }

    .hero-main-title {
        order: -1;
    }

    .camera-player-container {
        max-width: 500px;
    }
}

/* Video Gallery Styles */
.video-gallery-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 5% auto 0;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    border: 4px solid #001a66;
    border-bottom: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.play-pause-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    font-size: 4rem;
    color: #fff;
}

.play-pause-overlay.show {
    opacity: 1;
}

.video-controls-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #001a66;
    width: 100%;
    padding: 12px 20px;
    border-radius: 0 0 16px 16px;
    border: 4px solid #001a66;
    border-top: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.vctrl-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.vctrl-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.vctrl-play {
    width: 56px;
    height: 56px;
    background: #fff;
    color: #001a66;
    border: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.vctrl-play:hover {
    background: #e8ecff;
    transform: scale(1.12);
}

.vctrl-dots {
    display: flex;
    gap: 8px;
    margin: 0 8px;
}

.video-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.video-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 5px;
}

/* VoIP Call Card */
.voip-card {
    background: linear-gradient(135deg, #001a66 0%, #003399 100%);
    border-radius: 24px;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    box-shadow: 0 20px 60px rgba(0, 26, 102, 0.4);
    max-width: 520px;
    width: 100%;
    text-align: center;
}

.voip-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.voip-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.voip-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.voip-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.voip-call-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 16px 36px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    animation: voip-pulse 2s infinite;
    transition: transform 0.2s, background 0.2s;
}

.voip-call-btn:hover {
    background: #16a34a;
    transform: scale(1.05);
}

@keyframes voip-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.voip-hint {
    margin-top: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.voip-status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.voip-spinner {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.voip-status-text {
    color: rgba(255, 255, 255, 0.9);
}

.voip-timer-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #22c55e;
}

.voip-ctrl-row {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.voip-ctrl-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.voip-ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.voip-hangup {
    background: #ef4444;
}

.voip-hangup:hover {
    background: #dc2626;
}

@media (max-width: 640px) {
    .voip-card {
        padding: 28px 20px;
    }

    .voip-title {
        font-size: 1.2rem;
    }

    .voip-call-btn {
        font-size: 1rem;
        padding: 14px 24px;
    }
}

/* ── Site Footer ─────────────────────────────────── */
.site-footer {
    background: #001a66;
    padding: 40px 10% 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.footer-social-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-soc-link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.footer-soc-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.12);
}

.footer-credits-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
}

.footer-credits-text strong {
    color: rgba(255, 255, 255, 0.8);
}