* {
    font-family: 'DM Sans', sans-serif;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

/* Slider */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.03);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Navbar dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
}

/* Mobile menu */
#mobile-menu {
    display: none;
}

#mobile-menu.open {
    display: block;
}

/* Counter animation */
.counter-val {
    transition: all 0.3s;
}

/* Testimonial slider */
.tslide {
    display: none;
}

.tslide.active {
    display: flex;
}

/* Tab */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery hover */
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}


/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1B3A6B;
    border-radius: 3px;
}

/* Sticky navbar */
#main-navbar {
    transition: all 0.3s ease;
}

#main-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(27, 58, 107, 0.15);
}

/* Video play button */
.play-btn {
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

/* FAQ */
.faq-answer {
    display: none;
}

.faq-answer.open {
    display: block;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-icon.open {
    transform: rotate(45deg);
}

/* Tracking form */
.track-input:focus {
    outline: none;
    border-color: #E8A020;
}

/* Service card hover */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

/* Divider line */
.section-divider {
    width: 60px;
    height: 3px;
    /* background: #E8A020; */
    background: #558077;
}

.section-divider-lg {
    width: 80px;
    height: 4px;
}

/* Timeline */
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    width: 2px;
    height: calc(100% - 24px);
    background: #E8EDF5;
}


/* ── WhatsApp float button ── */
@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0)
    }
}

#wa-float {
    animation: wa-pulse 2.5s infinite;
}

#wa-float:hover {
    transform: scale(1.1) translateY(-2px);
}


.hero-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 48px 48px;
}

.timeline-line {
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: #E8EDF5;
}

.tl-item:last-child .timeline-line {
    display: none;
}

/* Team card */
.team-card:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-overlay {
    opacity: 0;
    transform: translateY(10px);
    transition: all .35s ease;
}

/* Value card */
.value-card {
    transition: transform .3s ease, box-shadow .3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(27, 58, 107, .12);
}

/* Stat number */
.stat-num {
    font-variant-numeric: tabular-nums;
}


/* Section divider */
.sdiv {
    width: 56px;
    height: 3px;
    background: #E8A020;
    border-radius: 2px;
}

/* Partner logo */
.partner-logo {
    filter: grayscale(1) opacity(.55);
    transition: filter .3s;
}

.partner-logo:hover {
    filter: grayscale(0) opacity(1);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #1B3A6B;
    border-radius: 3px;
}

.sdiv {
    width: 56px;
    height: 3px;
    background: #E8A020;
    border-radius: 2px;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-sticky {
    position: sticky;
    top: 90px;

    /* max-height: calc(100vh - 110px); */
    overflow-y: auto;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ck-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
    color: #1e293b;
}

.ck-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.25rem 0 0.65rem;
    color: #1e293b;
}

.ck-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: #1e293b;
}

.ck-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.ck-content ul,
.ck-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.ck-content ul {
    list-style-type: disc;
}

.ck-content ol {
    list-style-type: decimal;
}

.ck-content li {
    margin-bottom: 0.4rem;
    line-height: 1.75;
}

.ck-content a {
    color: #e8a020;
    text-decoration: underline;
}

.ck-content blockquote {
    border-left: 4px solid #e8a020;
    background: #f8f8f8;
    padding: 0.75rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin: 1.25rem 0;
    color: #555;
}

.ck-content strong {
    font-weight: 600;
    color: #1e293b;
}

.ck-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.ck-content table td,
.ck-content table th {
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

.ck-content table th {
    background: #f1f5f9;
    font-weight: 600;
}