/* Global CSS */
:root {
    --primary-color: #4361ee;
    --primary-light: #4895ef;
    --secondary-color: #3f37c9;
    --success-color: #4cc9f0;
    --dark-color: #0f172a;
    --light-bg: #f8fafc;
    --transition-speed: 0.3s;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #1e293b;
    overflow-x: hidden;
    background-color: #fff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.text-primary {
    color: var(--primary-color) !important;
}
.navbar-nav li a:hover, .navbar-nav li.current-menu-item a, .navbar-nav li.active a
{
    border-radius: 10px 0px;
    background: #03A9F4;
    color: #fff !important;
}
/* Premium Buttons Enhanced */
.btn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    padding: 14px 35px;
    color: #fff;
    z-index: 1;
    animation: btn-glow-pulse 3s infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateY(-50%) skewX(-30deg);
    transition: 0.75s;
    z-index: 1;
}

.btn-primary:hover::before {
    left: 150%;
    transition: 0.7s;
}

@keyframes btn-glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(67, 97, 238, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(67, 97, 238, 0.5);
    }
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.5);
}

.btn-outline-dark {
    border: 2px solid var(--dark-color);
    font-weight: 600;
}

.btn-outline-dark:hover {
    background: var(--dark-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
}

.shadow-primary {
    box-shadow: 0 10px 40px rgba(67, 97, 238, 0.3);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-nav li a {
    font-weight: 500;
    color: var(--dark-color) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.navbar-nav li a:hover,
.navbar-nav li.current-menu-item a,
.navbar-nav li.active a {
    color: var(--primary-color) !important;
}

/* Contact Button style for the last menu item */
.navbar-nav li:last-child {
    margin-left: 1rem;
}

.navbar-nav li:last-child a {
    background: var(--primary-color);
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 100px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

.navbar-nav li:last-child a:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
}

@media (max-width: 991.98px) {
    .navbar-nav li:last-child {
        margin-left: 0;
        margin-top: 1rem;
    }

    .navbar-nav li:last-child a {
        display: inline-block;
    }

    /* Hamburger Toggle Animation */
    .hamburger-toggle {
        width: 25px;
        height: 20px;
        position: relative;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger-toggle span {
        display: block;
        height: 2px;
        width: 100%;
        background: var(--dark-color);
        border-radius: 9px;
        opacity: 1;
        transition: .25s ease-in-out;
    }

    /* Active state for X icon */
    .btn-active .hamburger-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .btn-active .hamburger-toggle span:nth-child(2) {
        opacity: 0;
    }

    .btn-active .hamburger-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Offcanvas Styling */
    .offcanvas-nav .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.8rem 1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .offcanvas-nav .nav-link:hover {
        background: rgba(67, 97, 238, 0.05);
        color: var(--primary-color) !important;
        padding-left: 1.5rem;
    }

    .offcanvas-nav li:last-child a {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* Hero Section Updated */
.hero-section {
    padding: 0;
    height: 850px;
    max-height: 850px;
    background: #fff;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(67, 97, 238, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(76, 201, 240, 0.05) 0%, transparent 50%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fw-black {
    font-weight: 900;
}

.shadow-primary {
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
}

.tech-glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
    animation: pulse-glow 8s ease-in-out infinite;
}

.tech-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--success-color), transparent 70%);
    filter: blur(120px);
    opacity: 0.1;
    z-index: 1;
    animation: pulse-glow 10s ease-in-out infinite alternate;
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(67, 97, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(67, 97, 238, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.liquid-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.2;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    top: 10%;
    left: 5%;
    animation: blob-bounce 15s infinite alternate;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--success-color), var(--primary-color));
    bottom: 15%;
    right: 15%;
    animation: blob-bounce 12s infinite alternate-reverse;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(1);
    }

    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

@keyframes blob-bounce {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.text-xs {
    font-size: 0.75rem;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

/* Widgets */
.glass-morphism {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.hero-main-visual {
    padding: 2rem;
}

.main-img-container {
    perspective: 1000px;
}

.main-hero-img {
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-main-visual:hover .main-hero-img {
    transform: rotateY(0deg) rotateX(0deg);
}

.widget-seo {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 200px;
    z-index: 5;
}

.widget-traffic {
    position: absolute;
    bottom: 5%;
    right: -5%;
    width: 240px;
    z-index: 5;
}

.widget-mobile {
    position: absolute;
    bottom: 50%;
    right: -12%;
    z-index: 5;
}

.icon-circle-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

@keyframes float-fast {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 6s ease-in-out infinite;
}

.animate-float-fast {
    animation: float-fast 3s ease-in-out infinite;
}

.progress-animated {
    width: 0;
    transition: width 2s cubic-bezier(0.65, 0, 0.35, 1);
}

.shadow-3d {
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1), -10px -10px 40px rgba(255, 255, 255, 0.5);
}

/* Service Card Liquid Glass Updated */
.service-card-liquid {
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-liquid::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0.5;
    transition: all 0.5s ease;
    z-index: -1;
}

.service-card-liquid:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.2) !important;
}

.service-card-liquid:hover::before {
    opacity: 0.8;
    transform: translate(10%, 10%);
}

.service-uiux {
    background: linear-gradient(135deg, #4361ee 0%, #4cc9f0 100%);
}

.service-dev {
    background: linear-gradient(135deg, #2ecc71 0%, #a8e063 100%);
}

.service-seo {
    background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
}

.service-premium {
    background: linear-gradient(135deg, #7209b7 0%, #f72585 100%);
}

.service-card-liquid .icon-box {
    border-radius: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.rounded-5 {
    border-radius: 2.5rem !important;
}

/* Services */
.bg-primary-light {
    background-color: rgba(67, 97, 238, 0.1);
}

.bg-success-light {
    background-color: rgba(40, 167, 69, 0.1);
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.1);
}

/* Original Service Card Styles - Keep or update as needed */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.service-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
}

/* Portfolio Premium */
.tracking-widest {
    letter-spacing: 0.2em;
}

.portfolio-filters .btn {
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-filters .btn-light {
    background: transparent;
    color: var(--dark-color);
}

.portfolio-filters .filter-btn:not(.active):hover {
    background: rgba(0, 0, 0, 0.05);
}

.portfolio-card-premium {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.portfolio-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.portfolio-main-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.portfolio-info-premium {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 20px;
    border-radius: 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

/* Visible Info Variant */
.portfolio-card-premium.visible-info {
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.portfolio-card-premium.visible-info .portfolio-info-premium {
    position: relative;
    opacity: 1;
    transform: none;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    padding: 20px 25px 25px;
}

.portfolio-info-premium h4 {
    font-size: 1.15rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-info-premium p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    /* Optional: keep height consistent */
}

.portfolio-info-premium h4 a {
    transition: color 0.3s ease;
}

.portfolio-info-premium h4 a:hover {
    color: var(--primary-color) !important;
}



.portfolio-card-premium.visible-info:hover {
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
}

.view-project-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-project-btn:hover {
    background: var(--dark-color);
    color: #fff;
    transform: rotate(45deg);
}

/* Hover Effects */
.portfolio-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

.portfolio-card-premium:hover .portfolio-main-img {
    transform: scale(1.1);
}

.portfolio-card-premium:hover .portfolio-info-premium {
    transform: translateY(0);
    opacity: 1;
}

/* Specific button for filters */
.btn-transparent-dark {
    background: transparent;
    color: var(--dark-color);
    border: none;
}

/* Portfolio */
.portfolio-item {
    cursor: pointer;
}

.portfolio-item img {
    transition: transform 0.6s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Why Choose Us Liquid Glass Dark */
.bg-dark {
    background-color: var(--dark-color) !important;
}

.tech-glow-dark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
}

.stat-card-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-card-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
}

.stat-card-glass:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.stat-card-glass:hover::before {
    opacity: 1;
    transform: translate(20%, 20%);
}

.z-3 {
    z-index: 3 !important;
}

/* Stats Original */
.stat-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Liquid Glass Updated */
.icon-liquid-info {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.2rem;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.liquid-blue {
    background: linear-gradient(135deg, #4361ee 0%, #4cc9f0 100%);
}

.liquid-green {
    background: linear-gradient(135deg, #2ecc71 0%, #a8e063 100%);
}

.liquid-yellow {
    background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
}

.transition-hover {
    transition: all 0.3s ease;
    cursor: default;
}

.transition-hover:hover {
    background: rgba(67, 97, 238, 0.03);
}

/* Team Section Styles */
.team-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.team-img {
    transition: all 0.5s ease;
    filter: grayscale(20%);
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.team-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card:hover .team-img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.team-card:hover .team-info {
    transform: translateY(0);
    opacity: 1;
}

.social-btn-sm {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn-sm:hover {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(360deg);
}

.contact-form-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 5px !important;
}

.form-glow {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.glass-input {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease !important;
}

.glass-input:focus {
    background: #fff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.1) !important;
    transform: translateY(-2px);
}

/* Footer Liquid Glass Dark */
.footer-dark-glass {
    background: #0f172a;
    /* Deep Navy Dark */
}

.footer-glow {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
}

.footer-glass-links li {
    margin-bottom: 12px;
}

.footer-glass-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    display: none;
}

form.wpcf7-form.init .glass-input {
    min-height: 40px;
    font-size: 14px;
}

form.wpcf7-form.init textarea.glass-input {
    height: 130px;
}

.footer-glass-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.social-btn-glass {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-btn-glass:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.glass-input-footer {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    backdrop-filter: blur(10px);
    padding: 12px 20px !important;
    border-radius: 12px 0 0 12px !important;
}

.glass-input-footer::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.glass-input-footer:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}

.glass-input-group .btn {
    border-radius: 0 12px 12px 0 !important;
}

.font-sm {
    font-size: 0.9rem;
}

/* Footer */
.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* CTA Banner Liquid Glass */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7209b7 100%);
}

.cta-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    filter: blur(80px);
    z-index: 1;
}

.btn-light {
    background: #fff;
    color: var(--primary-color) !important;
    border: none;
}

.btn-light:hover {
    background: #f8fafc;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff !important;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-5px);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .cta-banner {
        padding: 40px 20px !important;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }

    .hero-section .d-flex {
        justify-content: center;
    }
}

/* Quick Contact Floating Styles */
.quick-contact-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.quick-contact-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.quick-contact-btn i {
    font-size: 1.4rem;
}

.phone-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    animation: pulse-phone 2s infinite;
}

.zalo-btn {
    background: #fff;
    border-color: #0084ff;
    padding: 10px;
}

.messenger-btn {
    background: linear-gradient(135deg, #0084ff, #00c6ff);
}

.btn-label {
    position: absolute;
    left: 70px;
    background: #1e293b;
    color: #fff;
    padding: 6px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.quick-contact-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

.quick-contact-btn:hover .btn-label {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Fix for small screens */
@media (max-width: 576px) {
    .quick-contact-wrapper {
        bottom: 20px;
        left: 20px;
    }

    .btn-label {
        display: none;
    }
}

/* Utilities */
.grayscale-hover {
    filter: grayscale(100%);
    opacity: 0.6;
}

.grayscale-hover:hover {
    filter: grayscale(0%);
    opacity: 1;
    background: #fff !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-5px);
}

.transition {
    transition: all 0.3s ease;
}

/* Social Button for Light Backgrounds */
.social-btn-primary-glass {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(67, 97, 238, 0.05);
    color: var(--primary-color) !important;
    text-decoration: none;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(67, 97, 238, 0.1);
    transition: all 0.3s ease;
}

.social-btn-primary-glass:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-5px);
}

/* Founder Section */
.founder-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.founder-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(231, 234, 243, 0.7);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.08);
}

.founder-avatar-wrap {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 30px;
}

.founder-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px;
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.2);
    transform: rotate(-3deg);
    transition: all 0.5s ease;
}

.founder-avatar:hover {
    transform: rotate(0) scale(1.05);
}

.founder-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #10b981;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid #fff;
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.tech-stack-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.tech-pill {
    background: #24292e;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tech-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.floating-tech-icon {
    position: absolute;
    opacity: 0.1;
    font-size: 2rem;
    pointer-events: none;
    animation: float-slow 6s ease-in-out infinite alternate;
}

@keyframes float-slow {
    0% {
        transform: translateY(0) rotate(0);
    }

    100% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.founder-info-list {
    list-style: none;
    padding: 0;
}

.founder-info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
}

.founder-info-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.founder-info-list a:hover {
    text-decoration: underline;
}

.greeting-text {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* Pagination Styling */
.pagination {
    margin-top: 30px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 50px;
    background: #f8fafc;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(58, 134, 255, 0.2);
}

.pagination .prev.page-numbers,
.pagination .next.page-numbers {
    background: #f8fafc;
    color: #0f172a;
}

.pagination .prev.page-numbers:hover,
.pagination .next.page-numbers:hover {
    background: var(--primary-color);
    color: #fff;
}

.screen-reader-text {
    display: none;
}

.post-featured-img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.entry-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    color: var(--dark-color);
}

.entry-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.entry-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #475569;
}

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

.entry-content li {
    margin-bottom: 0.5rem;
    color: #475569;
    line-height: 1.7;
}

.entry-content li p {
    margin-bottom: 0 !important;
}

/* Project Detail Premium Styles */
.project-hero-premium {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.tech-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

.project-hero-img-wrap {
    position: relative;
    z-index: 2;
}

.project-main-featured-img {
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(15, 23, 42, 0.2);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: cover;
    width: 100%;
}

.project-main-featured-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 60px 120px rgba(67, 97, 238, 0.25);
}

.project-meta-box-floating {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 45px;
    position: relative;
    z-index: 10;
    margin-top: -80px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 12px;
    display: block;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #0f172a;
}

.impact-metric-card {
    background: #fff;
    border-radius: 35px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.impact-metric-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(67, 97, 238, 0.15);
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-color), #4cc9f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    display: block;
}

.metric-label {
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.showcase-section {
    padding: 100px 0;
    background: #fff;
}

.gallery-masonry-item {
    border-radius: 35px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
}

.gallery-masonry-item:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.section-heading-premium {
    position: relative;
    margin-bottom: 60px;
}

.section-heading-premium::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 10px;
}

.cta-floating-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 50px;
    border-radius: 45px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.3);
}

.cta-blur-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
    }
}

@media (max-width: 991.98px) {
    .project-hero-premium {
        padding: 120px 0 80px;
        text-align: center;
    }

    .project-main-featured-img {
        height: auto;
        max-height: 400px;
    }

    .project-meta-box-floating {
        padding: 30px;
        margin-top: -60px;
        border-radius: 30px;
    }

    .meta-label {
        letter-spacing: 1px;
        margin-bottom: 5px;
    }

    .meta-value {
        font-size: 1rem;
    }

    .section-heading-premium {
        margin-bottom: 40px;
    }
}

/* FAQ Page Styles */
.custom-faq-accordion .accordion-item {
    transition: all 0.3s ease;
}

.custom-faq-accordion .accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.custom-faq-accordion .accordion-button {
    background-color: #fff;
    color: var(--dark-color);
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #fff;
    box-shadow: none;
}

.custom-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.custom-faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e293b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234361ee'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Tech / Hero Sections */
.hero-section-faq {
    height: auto;
    min-height: 400px;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-600 {
    max-width: 600px;
}

.tech-glow-2-faq {
    bottom: -20%;
    right: -10%;
}

a {
    text-decoration: none;
}

.paginate-section {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px
}

input.form-control.glass-input-footer.border-end-0 {
    border: 1px solid #ededed !important;
    color: #333 !important;
}

.paginate-section>* {
    background: #fff;
    padding: 6px 20px;
    border-radius: 6px;
    border: 1px solid #ededed;
    font-size: 13px
}

.paginate-section>a:hover {
    background: linear-gradient(120deg, var(--accent, #2563eb), var(--accent-strong, #0ea5e9));
    color: #f8fafc
}

.paginate-section>.current {
    background: linear-gradient(120deg, var(--accent, #2563eb), var(--accent-strong, #0ea5e9));
    color: #f8fafc
}

nav.sticky-top {
    z-index: 9999999 !important;
}

.sticky-top {
    z-index: 3;
}

/* Premium Breadcrumbs Upgrade */
.rank-math-breadcrumb {
    font-size: 0.75rem;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-white .rank-math-breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.rank-math-breadcrumb a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-white .rank-math-breadcrumb a {
    color: #fff !important;
}

.rank-math-breadcrumb .separator {
    margin: 0 10px;
    opacity: 0.4;
    font-size: 0.6rem;
}

.rank-math-breadcrumb .last {
    font-weight: 800;
    color: #1e293b;
}

.breadcrumb-white .rank-math-breadcrumb .last {
    color: #fff;
}

/* Premium Tech Pills */
.tech-pill-premium {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.tech-pill-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.tech-pill-premium i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.section-label-premium {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.section-label-premium::after {
    content: "";
    height: 2px;
    width: 35px;
    background: var(--primary-color);
    display: inline-block;
}

/* Contact Page Additional */
.contact-map-wrap {
    height: 450px;
}

.rank-math-breadcrumb p {
    margin-bottom: 0;
}

/* Premium Search Form */
.search-form-premium .input-group {
    background: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-form-premium .input-group:focus-within {
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.1) !important;
    border-color: var(--primary-color);
}

.bg-primary-light {
    background-color: rgba(67, 97, 238, 0.1) !important;
}

.hover-scale {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.blog-list-item.transition-hover:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Premium Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination .nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #475569;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pagination .page-numbers.current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 10px 15px -3px rgba(67, 97, 238, 0.3);
}

.pagination .page-numbers:not(.current):hover {
    background: #f8fafc;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    width: auto;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.pagination .page-numbers.dots {
    background: transparent;
    box-shadow: none;
    border: none;
}

@media (max-width: 1399px) {
    h1.display-3.fw-black.mb-4 {
        font-size: 42px;
    }

    h1.display-3.fw-black.mb-4 {
        font-size: 42px;
    }

    a.btn.btn-primary.btn-lg.rounded-pill.px-5.py-3.shadow-primary {
        font-size: 15px;
    }

    a.btn.btn-outline-dark.btn-lg.rounded-pill.px-5.py-3.d-flex.align-items-center {
        font-size: 15px;
    }

    .portfolio-filters .btn {
        font-size: 13px;
    }

    .portfolio-filters .btn:hover {
        transform: unset;
    }

    h2.fw-black.display-5.mb-0 {
        font-size: 40px;
    }

    hr.my-5.border-white.border-opacity-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .footer-dark-glass {
        padding-bottom: 0 !important;
    }

    .container.py-4.position-relative.z-3 {
        padding-bottom: 10px !important;
    }

    ul.founder-info-list.font-sm {
        font-size: 13px;
    }

    ul.founder-info-list.font-sm li {
        gap: 5px;
    }

    p.text-white.text-opacity-50.mb-5 {
        margin-bottom: 20px !important;
    }

    h2.fw-black.display-5.mb-4.text-white {
        margin-bottom: 10px !important;
    }

    .founder-section {
        padding: 50px 0;
    }

    .founder-card {
        padding: 30px;
    }

    .hero-section {
        height: auto;
        padding: 50px 0;
    }

    section#services {
        padding: 50px 0 !important;
    }

    section#portfolio {
        padding: 50px 0 !important;
    }

    section.py-5.bg-dark.position-relative.overflow-hidden {
        padding: 50px 0 !important;
    }

    section#contact {
        padding: 50px 0 !important;
    }
}

@media (max-width: 1199px) {
    .portfolio-filters.d-inline-flex.flex-wrap.gap-2.p-2.bg-light.rounded-pill {
        gap: 1px !important;
    }

    .portfolio-filters .btn {
        padding: 10px 17px !important;
    }

    h1.display-3.fw-black.mb-4 {
        font-size: 35px;
    }

    .widget-seo {
        position: absolute;
        top: 10%;
        left: -3%;
        width: 173px;
        z-index: 5;
    }

    p.lead.text-secondary.mb-5.pe-lg-5 {
        margin-bottom: 20px !important;
    }

    .row.mt-5.g-4 {
        margin-top: 5px !important;
    }

    a.btn.btn-primary.btn-lg.rounded-pill.px-5.py-3.shadow-primary {
        padding: 10px 30px !important;
    }

    a.btn.btn-outline-dark.btn-lg.rounded-pill.px-5.py-3.d-flex.align-items-center {
        padding: 10px 30px !important;
    }

    section#services {
        padding: 0 !important;
    }

    h2.fw-black.display-5.mb-4.text-white {
        font-size: 40px;
    }

    section.py-5.bg-dark.position-relative.overflow-hidden {
        padding: 0 !important;
    }

    section#portfolio {
        padding: 0 !important;
    }

    h2.fw-black.display-5.mb-4.text-dark {
        font-size: 40px;
    }

    section#contact {
        padding: 0 !important;
    }

    .contact-form-glass.p-5.rounded-5.shadow-lg.position-relative.overflow-hidden {
        padding: 30px !important;
        border-radius: 10px !important;
        padding-bottom: 0 !important;
    }

    ul.founder-info-list.font-sm li {
        display: inline-block;
        margin-bottom: 5px;
    }

    h2.fw-black.display-5.mb-2 {
        font-size: 40px;
    }

    section.py-5.overflow-hidden {
        padding: 20px !important;
    }

    .container.position-relative.z-3.text-center.py-5 {
        padding: 0 !important;
    }

    img.img-fluid.hover-scale.w-100.wp-post-image {
        height: 100%;
        object-fit: cover;
    }

    .blog-list-item .row.align-items-center {
        display: flex;
        align-items: stretch !important;
    }

    .blog-list-item .row.align-items-center a {
        display: block;
        height: 100%;
    }

    a.btn.btn-primary.btn-lg.w-100.rounded-pill.py-3.fw-black.shadow-primary.position-relative.z-3 {
        font-size: 14px;
    }

    .hero-section-faq {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    nav.sticky-top {
        padding: 5px !important;
    }

    .hero-section {
        max-height: max-content;
    }
}

@media (max-width: 767px) {
    h1.display-3.fw-black.mb-4 br {
        display: none;
    }

    h6.fw-bold.text-white.mb-4 {
        margin-top: 10px;
    }

    section.project-hero-premium {
        padding-top: 30px;
    }

    .button-review {
        width: 100%;
        text-align: center;
        display: block !important;
    }
}