/*
Theme Name: Seeb Lite
Theme URI: https://example.com/seeb-lite
Author: DigiZone
Description: Lightweight Seeb theme with Seeb blocks, patterns, and styling (no pages seeded).
Version: 1.0.0
Text Domain: seeb-lite
*/

:root {
    --bg-dark: #0a0a0c;
    --bg-panel: #111117;
    --text-primary: #ffffff;
    --text-muted: #c4c7d1;
    --accent-1: #7a5af8;
    --accent-2: #3bd3c3;
    --btn-gradient: linear-gradient(90deg, #6d67ff 0%, #28c7b7 50%, #f0b03f 100%);
    --card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.06) 100%);
    --shadow-card: 0 25px 50px rgba(0, 0, 0, 0.25);
    --radius-large: 1rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
	scroll-behavior: smooth;
}

body {
    font-family: 'Unbounded', 'Segoe UI', sans-serif;
    font-weight: 400;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.site-container {
    width: 100%;
    overflow: hidden;
}

.section {
    padding: 80px 24px;
}

.container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

/* Header */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 5em;
    background: rgba(10, 10, 12, 0.55);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 7.5em;
    width: auto;
    transition: height 0.25s ease, transform 0.25s ease;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
}

.brand-name {
    font-weight: 600;
    letter-spacing: 0.4px;
}

.nav-links {
    display: flex;
    align-items: flex-end;
	align-self: center;
    gap: 26px;
    font-weight: 500;
}

.nav-links .wp-block-navigation__container {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links .wp-block-navigation-item__content {
    color: #f1f2f7;
    font-weight: 500;
}

.nav-links .menu {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links .menu a {
    color: #f1f2f7;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #f1f2f7;
    border-radius: 4px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu {
    display: none;
}

.mobile-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #f1f2f7;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.btn-primary {
    padding: 10px 22px;
    border: none;
    border-radius: 999px;
    border: 2px solid #ffffff;
    font-weight: 600;
    /* background: var(--btn-gradient); */
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.nav-scrolled .top-nav {
    padding: 16px 3em;
    background: rgba(10, 10, 12, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

body.nav-scrolled .logo {
    height: 4em;
}

body.nav-scrolled .brand-name {
    font-size: 0.95rem;
}

/* Hero */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.8) 90%);
    z-index: 1;
}

.hero-slides {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    margin: 0;
    padding: 0;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.hero-slide.active {
    opacity: 1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 24px 30px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 300;
    margin: 0 0 16px;
}

.hero p {
    max-width: 640px;
    color: #e5e6ec;
    margin: 0 0 24px;
}

.hero-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 8rem;
}

.dot {
    padding: 0;
    cursor: pointer;
}

.dot .wp-block-button__link,
.dot {
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    min-width: 0;
    padding: 0;
}

.dot.active .wp-block-button__link,
.dot.active {
    background: #ffffff;
    color: #ffffff;
}

/* Seeb Slider Block */
.seeb-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.seeb-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s ease;
    margin: 0;
    padding: 0;
}

.seeb-slider.is-fade .seeb-slider-track {
    position: static;
}

.seeb-slider.is-fade .seeb-slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.seeb-slider.is-fade .seeb-slider-slide.active {
    opacity: 1;
}

.seeb-slider.is-slide .seeb-slider-slide {
    flex: 0 0 100%;
}

.seeb-slider-slide {
    margin: 0;
    padding: 0;
}

.seeb-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seeb-slider-dots,
.seeb-slider .hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.seeb-slider-dots .dot,
.seeb-slider .hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.seeb-slider-dots .dot.active,
.seeb-slider .hero-dots .dot.active {
    background: #ffffff;
}

.seeb-slider--editor {
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.seeb-slider-upload {
    margin-bottom: 12px;
}

.seeb-slider-empty {
    color: #c4c7d1;
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}

.seeb-slider-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    pointer-events: none;
    z-index: 2;
}

.seeb-slider-overlay > * {
    pointer-events: auto;
}

/* Seeb container */
.seeb-container {
    width: 100%;
    box-sizing: border-box;
}

/* Seeb link */
.seeb-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--seeb-link-padding, 10px 18px);
    border-radius: var(--seeb-link-radius, 999px);
    border: var(--seeb-link-border, 1px solid transparent);
    color: var(--seeb-link-color, #ffffff);
    background: var(--seeb-link-bg, transparent);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.seeb-link:hover {
    color: var(--seeb-link-hover-color, var(--seeb-link-color, #ffffff));
    background: var(--seeb-link-hover-bg, var(--seeb-link-bg, transparent));
    border-color: var(--seeb-link-hover-border, currentColor);
}

.seeb-link.is-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* Seeb card image */
.seeb-card-image {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.seeb-card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
}

.seeb-card-image-placeholder {
    text-align: center;
    color: #c4c7d1;
    padding: 24px;
}

.seeb-card-image-caption {
    padding: 12px 16px 16px;
    color: #e5e6ec;
    font-size: 14px;
    text-align: center;
}

/* Seeb icon */
.seeb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--seeb-icon-padding, 12px);
    border-radius: var(--seeb-icon-radius, 12px);
    border: var(--seeb-icon-border, 1px solid rgba(255, 255, 255, 0.25));
    background: var(--seeb-icon-bg, rgba(255, 255, 255, 0.08));
    color: var(--seeb-icon-color, #ffffff);
    box-shadow: var(--seeb-icon-shadow, 0 12px 28px rgba(0,0,0,0.18));
}

.seeb-icon .dashicon {
    width: auto;
    height: auto;
}

/* Seeb counter */
.seeb-counter {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.seeb-counter-value {
    display: inline-flex;
    gap: 4px;
    align-items: baseline;
}

.seeb-counter-label {
    color: var(--text-muted);
    font-size: 14px;
}

/* Seeb countdown */
.seeb-countdown-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.seeb-countdown-item {
    min-width: 86px;
    text-align: center;
}

.seeb-countdown-number {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
}

.seeb-countdown-label {
    font-size: 12px;
    color: #e5e6ec;
    letter-spacing: 0.4px;
    margin-top: 4px;
}

/* Editor-specific adjustments to keep hero close to frontend look */
.editor-styles-wrapper .hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    padding: 120px 32px 120px;
    background: #0a0a0c;
    overflow: hidden;
}

.editor-styles-wrapper .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.8) 90%);
    z-index: 1;
}

.editor-styles-wrapper .hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.editor-styles-wrapper .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.editor-styles-wrapper .hero-slide.active {
    opacity: 1;
}

.editor-styles-wrapper .hero-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
}

.editor-styles-wrapper .hero .container,
.editor-styles-wrapper .hero-content {
    position: relative;
    z-index: 2;
    padding: 0;
    max-width: 720px;
}

.editor-styles-wrapper .hero-dots .wp-block-button__link {
    border-radius: 999px;
    min-width: 10px;
    min-height: 10px;
}

/* Sections */
.section-title {
    margin-bottom: 16px;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 300;
}

.section-subtitle {
    color: #e5e6ec;
    max-width: 900px;
    margin: 0 auto 32px;
    font-size: 14px;
}

.section-title:not(.has-text-align-left):not(.has-text-align-center):not(.has-text-align-right) {
    text-align: center;
}

.section-subtitle:not(.has-text-align-left):not(.has-text-align-center):not(.has-text-align-right) {
    text-align: center;
}

.is-style-seeb-heading {
    text-align: center;
    color: #ffffff;
    font-weight: 300;
}

.is-style-seeb-subtitle {
    text-align: center;
    color: #e5e6ec;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.editor-styles-wrapper .section-title,
.editor-styles-wrapper .is-style-seeb-heading {
    text-align: center;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 16px;
}

.editor-styles-wrapper .section-subtitle,
.editor-styles-wrapper .is-style-seeb-subtitle {
    text-align: center;
    color: #e5e6ec;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.is-style-seeb-section {
    padding: 80px 24px;
}

.wp-block-button.is-style-seeb-primary .wp-block-button__link,
.is-style-seeb-primary .wp-block-button__link {
    padding: 10px 22px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.wp-block-button.is-style-seeb-primary .wp-block-button__link:hover,
.is-style-seeb-primary .wp-block-button__link:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.is-style-seeb-card-image img {
    border-radius: 2rem;
/*     box-shadow: var(--shadow-card); */
	-webkit-filter: drop-shadow(var(--shadow-card));
  	filter: drop-shadow(var(--shadow-card));
}

/* Responsive typography helpers */
.seeb-link {
    font-size: var(--seeb-link-font-base, inherit);
}
@media (max-width: 1024px) {
    .seeb-link { font-size: var(--seeb-link-font-tab, var(--seeb-link-font-base, inherit)); }
}
@media (max-width: 768px) {
    .seeb-link { font-size: var(--seeb-link-font-mob, var(--seeb-link-font-tab, var(--seeb-link-font-base, inherit))); }
}

.seeb-counter-value {
    font-size: var(--seeb-counter-font-base, 32px);
}
.seeb-counter-label {
    font-size: var(--seeb-counter-label-base, 14px);
}
@media (max-width: 1024px) {
    .seeb-counter-value { font-size: var(--seeb-counter-font-tab, var(--seeb-counter-font-base, 32px)); }
    .seeb-counter-label { font-size: var(--seeb-counter-label-tab, var(--seeb-counter-label-base, 14px)); }
}
@media (max-width: 768px) {
    .seeb-counter-value { font-size: var(--seeb-counter-font-mob, var(--seeb-counter-font-tab, var(--seeb-counter-font-base, 32px))); }
    .seeb-counter-label { font-size: var(--seeb-counter-label-mob, var(--seeb-counter-label-tab, var(--seeb-counter-label-base, 14px))); }
}

.seeb-countdown-number {
    font-size: var(--seeb-countdown-number-base, 28px);
}
.seeb-countdown-label {
    font-size: var(--seeb-countdown-label-base, 13px);
}
@media (max-width: 1024px) {
    .seeb-countdown-number { font-size: var(--seeb-countdown-number-tab, var(--seeb-countdown-number-base, 28px)); }
    .seeb-countdown-label { font-size: var(--seeb-countdown-label-tab, var(--seeb-countdown-label-base, 13px)); }
}
@media (max-width: 768px) {
    .seeb-countdown-number { font-size: var(--seeb-countdown-number-mob, var(--seeb-countdown-number-tab, var(--seeb-countdown-number-base, 28px))); }
    .seeb-countdown-label { font-size: var(--seeb-countdown-label-mob, var(--seeb-countdown-label-tab, var(--seeb-countdown-label-base, 13px))); }
}

.abstract-bg {
    background: url('./assets/images/bg1.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
    gap: 22px;
}

.card {
    background: var(--card-gradient);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    overflow: hidden;
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-card);
}

.card .wp-block-image {
    margin: 0;
}

.card .wp-block-image img {
    border-radius: 0;
}

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

.card-body {
    padding: 14px 18px 18px;
    text-align: center;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.panel-section {
    background: linear-gradient(180deg, #191a1f 0%, #0c0d12 100%);
}

.light-panel {
    background: linear-gradient(180deg, #fafafa 0%, #f0f1f5 100%);
    color: #0b0c11;
}

.light-panel .section-title,
.light-panel .section-subtitle {
    color: #0b0c11;
}

.light-panel .card {
    background: #ffffff;
    color: #101019;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.15);
    border: 1px solid #e6e8ed;
}

.light-panel .card-title {
    color: #0b0c11;
}

/* Gradient banner */
.gradient-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 200px;
    display: grid;
    place-items: center;
    color: #f7f7f9;
}

.gradient-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.55) 90%);
}

.gradient-text {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 300;
    letter-spacing: 0.4px;
}

/* Form section */
.contact-wrap {
    background: linear-gradient(180deg, #f3f3f7 0%, #e8e9ee 100%);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.input-box,
.textarea-box {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #d8dbe4;
    background: #ffffff;
    font-family: inherit;
    font-size: 14px;
    color: #0a0a0c;
    min-height: 44px;
}

.textarea-box {
    min-height: 100px;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #d8dbe4;
    background: #ffffff;
    font-family: inherit;
    font-size: 14px;
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    border: 2px solid #0a0a0c;
    /* background: var(--btn-gradient); */
    color: #0a0a0c;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

/* Footer */
.site-footer {
    padding: 28px 24px 40px;
    color: #0b0c11;
    background: linear-gradient(180deg, #e9ebf2 0%, #d4d7e0 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: center;
}

.footer-contact {
    display: grid;
    gap: 8px;
    font-size: 14px;
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 12px;
}

.footer-meta {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #3a3c44;
}

.social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 50%;
    font-size: 12px;
}

.social a img {
    width: 1.5rem;
    height: 1.5rem;
    /* width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; */
}

.my-auto {
	margin: auto;
}

.is-layout-grid {
	gap: 1.5em !important;
}

.seeb-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 1;
}

.paragraph-text {
	font-size: 24px !important;
}

@media (max-width: 1320px) {
    .nav-links {
        display: none !important;
    }
    .burger {
        display: flex;
    }
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: min(340px, 80vw);
        height: 100vh;
        background: rgba(12, 13, 18, 0.96);
        backdrop-filter: blur(8px);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding: 100px 24px 32px;
        z-index: 9;
        box-shadow: -12px 0 32px rgba(0, 0, 0, 0.35);
    }
    .mobile-close {
        display: inline-flex;
    }
    body.nav-open .mobile-menu {
        transform: translateX(0);
    }
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
}

.mobile-menu-list .wp-block-navigation__container {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
}

.mobile-menu-list a {
    color: #f1f2f7;
    font-weight: 500;
}
.mobile-menu-list .btn-primary {
        display: inline-flex;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .top-nav {
        position: fixed;
        background: rgba(10, 10, 12, 0.92);
        backdrop-filter: blur(6px);
		transition: none !important;
    	box-shadow: none;
    }
    .hero {
        min-height: 80vh;
    }
    body.nav-scrolled .top-nav {
        padding: 16px 1.5rem;
    }
    .hero-content {
        padding: 140px 20px 120px;
    }
    .top-nav {
        padding: 28px 2em;
    }
    .logo {
        height: 4em;
    }
    .hero-content {
        padding: 120px 2rem 20px;
    }
    
    .site-footer {
        padding: 28px 2rem 40px;
    }
    .hero-dots {
        margin-top: 3rem;
    }
	.paragraph-text {
		font-size: 20px !important;
	}
}

@media (max-width: 600px) {
    .section {
        padding: 64px 18px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 14px;
    }
    .top-nav {
        padding: 18px 16px;
    }
    .hero-content {
        padding: 120px 16px 20px;
    }
    .logo {
        height: 3em;
    }
    .mobile-close {
        display: inline-flex;
    }
    .mobile-menu {
        width: 100%;
    }
    .site-footer {
        padding: 28px 16px 40px;
    }
    .hero-dots {
        margin-top: 3rem;
    }
	.paragraph-text {
		font-size: 16px !important;
	}
}

/* Seeb section */
.seeb-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: var(--seeb-pad-base, 64px 24px);
    margin: var(--seeb-margin-base, 0 0 32px 0);
    gap: var(--seeb-gap, 0);
    row-gap: var(--seeb-row-gap, var(--seeb-gap, 0));
}

.seeb-section-inner {
    width: 100%;
}

/* Seeb container */
.seeb-container {
    width: 100%;
    box-sizing: border-box;
    padding: var(--seeb-pad-base, 32px);
    margin: var(--seeb-margin-base, 0);
}

.seeb-container.is-parallax {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

@media (max-width: 1024px) {
    .seeb-section {
        padding: var(--seeb-pad-tab, var(--seeb-pad-base, 64px 24px));
        margin: var(--seeb-margin-tab, var(--seeb-margin-base, 0 0 32px 0));
    }
    .seeb-container {
        padding: var(--seeb-pad-tab, var(--seeb-pad-base, 32px));
        margin: var(--seeb-margin-tab, var(--seeb-margin-base, 0));
    }
	.seeb-container.is-parallax {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .seeb-section {
        padding: var(--seeb-pad-mob, var(--seeb-pad-tab, var(--seeb-pad-base, 64px 24px)));
        margin: var(--seeb-margin-mob, var(--seeb-margin-tab, var(--seeb-margin-base, 0 0 32px 0)));
    }
    .seeb-container {
        padding: var(--seeb-pad-mob, var(--seeb-pad-tab, var(--seeb-pad-base, 32px)));
        margin: var(--seeb-margin-mob, var(--seeb-margin-tab, var(--seeb-margin-base, 0)));
    }
	.seeb-container.is-parallax {
        background-attachment: scroll;
    }
}


/* Slider overlay responsive padding */
.seeb-slider-overlay {
    padding: var(--seeb-overlay-pad-base, 0);
}
@media (max-width: 1024px) {
    .seeb-slider-overlay {
        padding: var(--seeb-overlay-pad-tab, var(--seeb-overlay-pad-base, 0));
    }
}
@media (max-width: 768px) {
    .seeb-slider-overlay {
        padding: var(--seeb-overlay-pad-mob, var(--seeb-overlay-pad-tab, var(--seeb-overlay-pad-base, 0)));
    }
}

.editor-styles-wrapper .seeb-slider-overlay {
    padding: var(--seeb-overlay-pad-base, 0);
}
@media (max-width: 1024px) {
    .editor-styles-wrapper .seeb-slider-overlay {
        padding: var(--seeb-overlay-pad-tab, var(--seeb-overlay-pad-base, 0));
    }
}
@media (max-width: 768px) {
    .editor-styles-wrapper .seeb-slider-overlay {
        padding: var(--seeb-overlay-pad-mob, var(--seeb-overlay-pad-tab, var(--seeb-overlay-pad-base, 0)));
    }
}

/* Seeb section video background */
.seeb-section { position: relative; overflow: hidden; }
.seeb-section-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.seeb-section > * { position: relative; z-index: 2; }


/* Seeb container video background */
.seeb-container { position: relative; overflow: hidden; }
.seeb-container .seeb-section-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.seeb-container > * { position: relative; z-index: 2; }

/* Overlay image shared */
.seeb-overlay-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    opacity: var(--seeb-overlay-opacity, 0.35);
}

/* Seeb Container Link hover effects */
.seeb-container-link,
.seeb-container-link-editor {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

.seeb-container-link[data-effect="shimmer"],
.seeb-container-link-editor[data-effect="shimmer"] {
    position: relative;
    overflow: hidden;
}

.seeb-container-link[data-effect="shimmer"]::after,
.seeb-container-link-editor[data-effect="shimmer"]::after {
    content: "";
    position: absolute;
    inset: -60%;
    background: linear-gradient(var(--seeb-shimmer-angle, 110deg),
        transparent 0%,
        var(--seeb-shimmer-from, rgba(255,255,255,0)) 40%,
        var(--seeb-shimmer-to, rgba(255,255,255,0.35)) 60%,
        transparent 100%);
    opacity: var(--seeb-shimmer-opacity, 0.55);
    transform: translateX(-130%);
    pointer-events: none;
}

.seeb-container-link[data-effect="shimmer"]:hover::after,
.seeb-container-link-editor[data-effect="shimmer"]:hover::after {
    animation: seeb-shimmer var(--seeb-shimmer-duration, 1200ms) ease-out forwards;
}

@keyframes seeb-shimmer {
    to {
        transform: translateX(140%);
    }
}