/* Base Styles */
:root {
    --primary-color: #4CAF50;
    /* Green - change to your preferred accent color */
    --secondary-color: #2196F3;
    /* Blue */
    --dark-color: #0a192f;
    /* Navy blue background */
    --light-color: #ffffff;
    --highlight-color: #00d1b2;
    /* Teal for highlights */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/DsbStudios Background Image.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--highlight-color);
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: rgba(10, 25, 47, 0.9) !important;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--highlight-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-quote {
    background-color: var(--highlight-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 209, 178, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 100;
}

/* Subtle dark overlay so text always reads cleanly */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

/* ── Ambient floating orbs ── */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

.hero-orb-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 209, 178, 0.55) 0%, transparent 70%);
    top: -80px;
    left: -100px;
    animation: orbFloat 9s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.45) 0%, transparent 70%);
    bottom: -60px;
    right: -80px;
    animation: orbFloat 12s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.3) 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation: orbFloat 7s ease-in-out infinite alternate;
}

@keyframes orbFloat {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-40px) scale(1.08);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* ── Eyebrow label ── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 209, 178, 0.1);
    border: 1px solid rgba(0, 209, 178, 0.35);
    color: var(--highlight-color);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
    backdrop-filter: blur(8px);
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--highlight-color);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.75);
    }
}

/* ── Gradient headline ── */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    line-height: 1.15;
}

.hero-gradient-text {
    background: linear-gradient(120deg, var(--highlight-color) 0%, #4fc3f7 60%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p.lead {
    font-size: 1.25rem;
    margin-bottom: 36px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    margin-bottom: 56px;
}

/* ── Trust stats row ── */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 14px 36px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease 0.65s forwards;
    opacity: 0;
}

.hero-stat {
    text-align: center;
    padding: 0 28px;
}

.hero-stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--highlight-color);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.btn-primary {
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--highlight-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 209, 178, 0.3);
}

.btn-outline-light {
    border-color: var(--light-color);
    color: var(--light-color);
}

.btn-outline-light:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--highlight-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Services Section */
.services-section {
    background-color: rgba(0, 0, 0, 0.2);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}


.site-section {
    padding: 2.5em 0;
}

@media (min-width: 768px) {
    .site-section {
        padding: 8em 0;
    }
}

.site-section.site-section-sm {
    padding: 4em 0;
}

.site-section-heading {
    padding-bottom: 20px;
    margin-bottom: 0px;
    position: relative;
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .site-section-heading {
        font-size: 3rem;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--highlight-color);
}

.service-card p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.service-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--highlight-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

.pb-120 {
    padding-bottom: 120px;
}

/* Portfolio Section */
.portfolio-section {
    background-color: rgba(0, 0, 0, 0.1);
}

.portfolio-slider {
    margin-top: 50px;
    position: relative;
}

.portfolio-item {
    margin: 0 15px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.portfolio-item img {
    width: 220px;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 209, 178, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-link {
    color: var(--dark-color);
    background: var(--light-color);
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay .portfolio-link {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    background-color: rgba(0, 0, 0, 0.2);
}

.testimonials-slider {
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin: 0 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tech-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--highlight-color), var(--secondary-color));
}

.testimonial-content {
    padding-top: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-card p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 2rem;
    color: var(--highlight-color);
}



.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--highlight-color);
}

.client-info h4 {
    margin-bottom: 5px;
    color: var(--highlight-color);
}

.client-info p {
    margin: 0;
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
}

.client-info p::before {
    content: none;
}

/* Contact Section */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    height: 50px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    color: var(--light-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 209, 178, 0.25);
}

textarea.form-control {
    height: auto;
    resize: none;
}

.contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--highlight-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}


/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--highlight-color), var(--secondary-color));
}

.footer-about {
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--highlight-color);
    transform: translateX(5px);
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--highlight-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Floating Button */
.float-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    overflow: visible;
    transition: transform 0.3s ease;
}

/* Icon only on small screens */
@media (max-width: 600px) {
    .float-whatsapp span {
        display: none;
    }
}

/* Attention Animation */
.attention {
    animation: pulseAttention 1s ease-in-out 3;
}

@keyframes pulseAttention {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* Tooltip Styling */
.chat-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 10px;
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Tooltip animation on pulse */
.attention .chat-tooltip {
    opacity: 1;
    transform: translateY(-10px);
}

/* Mobile Tooltip (Position Below) */
@media (max-width: 600px) {
    .chat-tooltip {
        right: auto;
        left: 50%;
        top: 100%;
        margin: 5px 0 0 -70px;
        transform: translateY(10px);
    }

    .attention .chat-tooltip {
        transform: translateY(0);
    }
}




/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Hero: Tablet (768px and below) ── */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100svh;
        padding: 100px 0 60px;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
    }

    /* Shrink orbs so they don't overflow */
    .hero-orb-1 {
        width: 240px;
        height: 240px;
        top: -40px;
        left: -60px;
    }

    .hero-orb-2 {
        width: 180px;
        height: 180px;
        bottom: -30px;
        right: -40px;
    }

    .hero-orb-3 {
        display: none;
    }

    /* Stats: keep horizontal but tighter */
    .hero-stats {
        padding: 12px 16px;
        gap: 0;
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stat {
        padding: 0 16px;
        flex: 1;
    }

    .hero-stat-num {
        font-size: 1.3rem;
    }
}

/* ── Hero: Mobile (480px and below) ── */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 50px;
    }

    .hero-eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.12em;
        padding: 5px 12px;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero p.lead {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 36px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0;
    }

    /* Stats: wrap into 2 columns grid on very small screens */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 16px;
        text-align: center;
    }

    /* Hide the vertical dividers; grid spacing handles it */
    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        padding: 0;
        flex: unset;
    }

    .hero-stat-num {
        font-size: 1.25rem;
    }

    .hero-stat-label {
        font-size: 0.62rem;
    }
}

/* ── Shared small-screen section padding ── */
@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }

    .float-whatsapp {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 0;
        justify-content: center;
    }
}



/* ── Modern Portfolio Card Carousel ── */
.portfolio-showcase-section {
    background-color: rgba(0, 0, 0, 0.1);
}

.portfolio-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin-top: -40px;
    margin-bottom: 50px;
}

/* Carousel wrapper */
.pf-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pf-carousel-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
}

.pf-carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(.22, .84, .36, 1);
}

/* Each slide group = 3 cards in a row */
.pf-slide-group {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 8px 4px 20px;
}

/* Card */
.pf-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pf-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 209, 178, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 209, 178, 0.15);
}

/* Image area */
.pf-card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.pf-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pf-card:hover .pf-card-img-wrap img {
    transform: scale(1.06);
}

/* Category badge */
.pf-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 209, 178, 0.2);
    border: 1px solid rgba(0, 209, 178, 0.5);
    color: var(--highlight-color);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    z-index: 5;
}

/* Hover overlay with CTA */
.pf-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pf-card:hover .pf-card-overlay {
    opacity: 1;
}

.pf-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--highlight-color);
    color: var(--dark-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 8px;
    transition: transform 0.2s ease, background 0.2s ease;
    transform: translateY(12px);
}

.pf-card:hover .pf-view-btn {
    transform: translateY(0);
}

.pf-view-btn:hover {
    background: #00f0cc;
    color: #000;
}

/* Card text body */
.pf-card-body {
    padding: 18px 20px 22px;
    flex: 1;
}

.pf-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--highlight-color);
}

.pf-card-body p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

/* Browser mockup cards (for sample sites) */
.pf-card-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pf-mockup-browser {
    width: 85%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.pf-browser-bar {
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.pf-browser-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: block;
}

.pf-browser-bar span:nth-child(1) {
    background: #ff5f57;
}

.pf-browser-bar span:nth-child(2) {
    background: #febc2e;
}

.pf-browser-bar span:nth-child(3) {
    background: #28c840;
}

.pf-browser-content {
    padding: 20px 16px 18px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

/* Arrow buttons */
.pf-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

.pf-arrow:hover {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    color: var(--dark-color);
    transform: scale(1.08);
}

/* Dot navigation */
.pf-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pf-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.pf-dot.active {
    background: var(--highlight-color);
    transform: scale(1.3);
}

/* View all button */
.pf-view-all-btn {
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.pf-view-all-btn:hover {
    background: var(--highlight-color);
    color: var(--dark-color);
    border-color: var(--highlight-color);
    transform: translateY(-3px);
}

/* Responsive: single column on mobile */
@media (max-width: 768px) {
    .pf-slide-group {
        grid-template-columns: 1fr;
    }

    .pf-carousel-wrapper {
        flex-direction: column;
    }

    .pf-arrow {
        display: none;
    }
}

/* =============================================
   Blog Teaser Section (Homepage)
   ============================================= */
.blog-teaser-section {
  background: rgba(0,0,0,0.15);
}

.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-teaser-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #e8eaf0;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.blog-teaser-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,209,178,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  color: #e8eaf0;
}

.blog-teaser-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-teaser-card:hover .blog-teaser-img img {
  transform: scale(1.04);
}

.blog-teaser-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,209,178,0.85);
  color: #060f1e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.blog-teaser-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-teaser-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.blog-teaser-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  color: #fff;
}

.blog-teaser-excerpt {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.blog-teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--highlight-color);
  margin-top: 6px;
  transition: gap 0.2s;
}

.blog-teaser-card:hover .blog-teaser-link {
  gap: 10px;
}

@media (max-width: 900px) {
  .blog-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-teaser-grid {
    grid-template-columns: 1fr;
  }
}