/*=====================================================================
  Theme 2: Ocean Blue — Modern SaaS/Startup
  Complete layout + color overrides for a contemporary SaaS feel.
  Font: Inter | Palette: Deep Ocean Blues + Electric Accents
=====================================================================*/

/* ===== CSS Variables ===== */
:root {
    --t2-primary: #0e4bef;
    --t2-primary-dark: #0a3ab8;
    --t2-primary-light: #4d7ef7;
    --t2-accent: #00d4ff;
    --t2-gradient: linear-gradient(135deg, #0a1628 0%, #0e4bef 50%, #00d4ff 100%);
    --t2-gradient-subtle: linear-gradient(135deg, #f0f4ff 0%, #e8f4fd 100%);
    --t2-dark: #0a1628;
    --t2-dark-light: #121f36;
    --t2-text: #2d3748;
    --t2-text-light: #718096;
    --t2-border: #e2e8f0;
    --t2-bg-light: #f7fafc;
    --t2-radius: 16px;
    --t2-radius-sm: 10px;
    --t2-shadow: 0 4px 20px rgba(14, 75, 239, 0.08);
    --t2-shadow-hover: 0 12px 40px rgba(14, 75, 239, 0.15);
    --t2-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Global ===== */
.theme2-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: var(--t2-text);
    overflow-x: hidden;
}

.theme2-wrapper {
    font-family: 'Inter', sans-serif;
}

.theme2-wrapper h1,
.theme2-wrapper h2,
.theme2-wrapper h3,
.theme2-wrapper h4,
.theme2-wrapper h5,
.theme2-wrapper h6 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    color: var(--t2-dark);
}

/* ===== HEADER ===== */
.t2-header {
    position: relative;
    z-index: 999;
}

.t2-navbar {
    padding: 15px 0 !important;
    transition: var(--t2-transition);
}

.header_area.navbar_fixed .t2-navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.t2-navbar .navbar-nav .nav-link {
    font-weight: 500 !important;
    font-size: 15px !important;
    letter-spacing: 0.3px;
}

.t2-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.t2-cta-btn {
    display: inline-block;
    padding: 10px 28px;
    background: var(--t2-primary) !important;
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--t2-transition);
    text-decoration: none;
    border: 2px solid var(--t2-primary);
}

.theme2-wrapper .btn_three:hover {
    background: transparent !important;
    color: var(--t2-primary) !important;
}

.theme2-wrapper .apply_btn:hover {
    background: var(--t2-primary) !important;
    border-color: var(--t2-primary) !important;
    color: #fff !important;
}

.t2-cta-btn:hover {
    background: transparent !important;
    color: var(--t2-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(14, 75, 239, 0.3);
}

.t2-locale-dropdown .nav-link {
    font-size: 14px !important;
}

/* Nav hover accents */
.theme2-wrapper .menu > .nav-item > .nav-link:before {
    background: var(--t2-primary) !important;
}

.theme2-wrapper .menu > .nav-item:hover > .nav-link,
.theme2-wrapper .menu > .nav-item.active > .nav-link {
    color: var(--t2-primary) !important;
}

.header_area.navbar_fixed .w_menu .nav-item .nav-link:hover,
.header_area.navbar_fixed .w_menu .nav-item.active .nav-link {
    color: var(--t2-primary) !important;
}

/* Dropdown submenu hover */
.theme2-wrapper .menu > .nav-item.submenu .dropdown-menu .nav-item:hover > .nav-link,
.theme2-wrapper .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > .nav-link,
.theme2-wrapper .menu > .nav-item.submenu .dropdown-menu .nav-item.active > .nav-link {
    color: var(--t2-primary) !important;
}

/* Contact page tabs */
.theme2-wrapper .design_tab .nav-item .nav-link.active {
    background-color: var(--t2-primary) !important;
}

/* 404 error page */
.theme2-wrapper .error_area {
    background: linear-gradient(180deg, rgba(14, 75, 239, 0.93) 0%, rgba(77, 126, 247, 0.9) 100%) !important;
}

.theme2-wrapper .about_btn {
    color: var(--t2-primary) !important;
}

.theme2-wrapper .about_btn:hover {
    background: var(--t2-primary) !important;
    color: #fff !important;
}

/* ===== HERO SECTION ===== */
.t2-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--t2-gradient);
    overflow: hidden;
    padding: 120px 0 80px;
}

.t2-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.t2-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: #fff;
}

.t2-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: t2Float 8s ease-in-out infinite;
}

.t2-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 10%;
    animation: t2Float 6s ease-in-out infinite reverse;
}

.t2-shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 50%;
    animation: t2Float 10s ease-in-out infinite;
}

@keyframes t2Float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.t2-hero-content {
    position: relative;
    z-index: 2;
}

.t2-hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.t2-hero-content h1 {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 600px;
}

.t2-hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.t2-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.t2-btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: #fff;
    color: var(--t2-primary) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--t2-transition);
    text-decoration: none;
    border: 2px solid #fff;
}

.t2-hero .t2-btn-primary:hover,
a.t2-btn-primary:hover {
    background: transparent;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.t2-btn-outline {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--t2-transition);
    text-decoration: none;
}

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

/* Hero floating cards */
.t2-hero-visual {
    position: relative;
    height: 400px;
}

.t2-hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--t2-radius);
    padding: 28px 24px;
    text-align: center;
    color: #fff;
    transition: var(--t2-transition);
    min-width: 140px;
}

.t2-hero-card:hover {
    transform: translateY(-8px) !important;
    background: rgba(255, 255, 255, 0.18);
}

.t2-hero-card i {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
    color: var(--t2-accent);
}

.t2-hero-card span {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.t2-hero-card-1 {
    top: 20px;
    right: 60px;
    animation: t2Float 7s ease-in-out infinite;
}

.t2-hero-card-2 {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    animation: t2Float 5s ease-in-out infinite reverse;
}

.t2-hero-card-3 {
    bottom: 20px;
    right: 30%;
    animation: t2Float 9s ease-in-out infinite;
}

/* ===== SECTION HEADER ===== */
.t2-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.t2-section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(14, 75, 239, 0.08);
    color: var(--t2-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.t2-section-header h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: var(--t2-dark) !important;
}

/* ===== PRODUCT CARDS ===== */
.t2-product-card {
    border-radius: var(--t2-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--t2-shadow);
    transition: var(--t2-transition);
}

.t2-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--t2-shadow-hover);
}

.t2-product-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.t2-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--t2-transition);
}

.t2-product-card:hover .t2-product-img img {
    transform: scale(1.08);
}

.t2-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 75, 239, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--t2-transition);
}

.t2-product-card:hover .t2-product-overlay {
    opacity: 1;
}

.t2-product-link {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t2-primary) !important;
    font-size: 20px;
    transform: scale(0.5);
    transition: var(--t2-transition);
}

.t2-product-card:hover .t2-product-link {
    transform: scale(1);
}

.t2-product-info {
    padding: 20px 24px;
}

.t2-product-info h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0;
}

/* ===== SERVICE CARDS ===== */
.t2-services {
    background: var(--t2-gradient-subtle);
    padding: 100px 0;
}

.t2-service-card {
    background: #fff;
    border-radius: var(--t2-radius);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--t2-transition);
    box-shadow: var(--t2-shadow);
    height: 100%;
}

.t2-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--t2-shadow-hover);
}

.t2-service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(14, 75, 239, 0.06);
    line-height: 1;
}

.t2-service-icon {
    margin-bottom: 24px;
}

.t2-service-icon img {
    filter: hue-rotate(0deg);
}

.t2-service-card h4 {
    font-size: 20px !important;
    margin-bottom: 12px;
}

.t2-service-card p {
    color: var(--t2-text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.t2-service-link {
    color: var(--t2-primary) !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--t2-transition);
}

.t2-service-link:hover {
    color: var(--t2-primary-dark) !important;
    letter-spacing: 0.5px;
}

.t2-service-link i {
    transition: var(--t2-transition);
}

.t2-service-link:hover i {
    margin-left: 6px;
}

/* ===== PARTNERS ===== */
.t2-partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.t2-partner-item {
    background: #fff;
    border-radius: var(--t2-radius-sm);
    padding: 24px 36px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: var(--t2-transition);
}

.t2-partner-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--t2-shadow);
}

.t2-partner-item img {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--t2-transition);
}

.t2-partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== BREADCRUMB ===== */
.t2-breadcrumb {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.t2-breadcrumb-bg {
    position: absolute;
    inset: 0;
    background: var(--t2-gradient);
    z-index: 0;
}

.t2-breadcrumb-content {
    position: relative;
    z-index: 2;
}

.t2-breadcrumb h1 {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 10px;
}

.t2-breadcrumb p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    max-width: 600px;
}

.t2-breadcrumb-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.t2-breadcrumb-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== SERVICE LIST ===== */
.t2-sl-card {
    background: #fff;
    border-radius: var(--t2-radius);
    overflow: hidden;
    box-shadow: var(--t2-shadow);
    transition: var(--t2-transition);
    height: 100%;
}

.t2-sl-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--t2-shadow-hover);
}

.t2-sl-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.t2-sl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--t2-transition);
}

.t2-sl-card:hover .t2-sl-card-img img {
    transform: scale(1.08);
}

.t2-sl-card-number {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: var(--t2-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.t2-sl-card-body {
    padding: 24px;
}

.t2-sl-card-body h4 {
    font-size: 18px !important;
    margin-bottom: 10px;
}

.t2-sl-card-body p {
    color: var(--t2-text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.t2-sl-link {
    color: var(--t2-primary) !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--t2-transition);
}

.t2-sl-link:hover {
    letter-spacing: 0.5px;
}

.t2-sl-link i {
    transition: var(--t2-transition);
}

.t2-sl-link:hover i {
    margin-left: 6px;
}

/* ===== PRODUCT LIST (Alternating) ===== */
.t2-pl-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--t2-border);
}

.t2-pl-item:last-child {
    border-bottom: none;
}

.t2-pl-image {
    border-radius: var(--t2-radius);
    overflow: hidden;
    box-shadow: var(--t2-shadow);
}

.t2-pl-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--t2-transition);
}

.t2-pl-item:hover .t2-pl-image img {
    transform: scale(1.03);
}

.t2-pl-content {
    padding: 20px 40px;
}

.t2-pl-number {
    display: inline-block;
    font-size: 64px;
    font-weight: 900;
    color: rgba(14, 75, 239, 0.08);
    line-height: 1;
    margin-bottom: 16px;
}

.t2-pl-content h3 {
    font-size: 28px !important;
    margin-bottom: 16px;
}

.t2-pl-content p {
    color: var(--t2-text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Section buttons — dark context */
.t2-product-list .t2-btn-primary,
.t2-service-list .t2-btn-primary,
.t2-product-detail .t2-btn-primary,
.t2-service-detail .t2-btn-primary {
    background: var(--t2-primary);
    color: #fff !important;
    border-color: var(--t2-primary);
}

.t2-product-list .t2-btn-primary:hover,
.t2-service-list .t2-btn-primary:hover,
.t2-product-detail .t2-btn-primary:hover,
.t2-service-detail .t2-btn-primary:hover {
    background: var(--t2-primary-dark);
    color: #fff !important;
    border-color: var(--t2-primary-dark);
}

.t2-services .t2-btn-outline {
    background: transparent;
    color: var(--t2-primary) !important;
    border: 2px solid var(--t2-primary);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
}

.t2-services .t2-btn-outline:hover {
    background: var(--t2-primary);
    color: #fff !important;
}

/* ===== PRODUCT DETAIL ===== */
.t2-pd-hero {
    background: var(--t2-gradient-subtle);
    border-radius: var(--t2-radius);
    padding: 40px;
    overflow: hidden;
}

.t2-pd-image {
    border-radius: var(--t2-radius-sm);
    overflow: hidden;
}

.t2-pd-image img {
    width: 100%;
    border-radius: var(--t2-radius-sm);
}

.t2-pd-intro h2 {
    font-size: 32px !important;
    margin-bottom: 16px;
}

.t2-pd-desc {
    color: var(--t2-text-light);
    font-size: 16px;
    line-height: 1.8;
}

.t2-pd-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== SERVICE DETAIL ===== */
.t2-sd-sidebar {
    position: sticky;
    top: 100px;
}

.t2-sd-image {
    border-radius: var(--t2-radius);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--t2-shadow);
}

.t2-sd-image img {
    width: 100%;
}

.t2-sd-meta {
    background: var(--t2-gradient-subtle);
    border-radius: var(--t2-radius-sm);
    padding: 24px;
}

.t2-sd-meta p {
    color: var(--t2-text-light);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.t2-sd-content {
    padding-left: 40px;
    line-height: 1.8;
}

/* ===== RELATED CARDS ===== */
.t2-related-title {
    font-size: 24px !important;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--t2-primary);
    display: inline-block;
}

.t2-related-card {
    background: #fff;
    border-radius: var(--t2-radius-sm);
    overflow: hidden;
    box-shadow: var(--t2-shadow);
    transition: var(--t2-transition);
    height: 100%;
}

.t2-related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--t2-shadow-hover);
}

.t2-related-img {
    height: 180px;
    overflow: hidden;
}

.t2-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--t2-transition);
}

.t2-related-card:hover .t2-related-img img {
    transform: scale(1.05);
}

.t2-related-info {
    padding: 20px;
}

.t2-related-date {
    display: block;
    font-size: 13px;
    color: var(--t2-text-light);
    margin-bottom: 8px;
}

.t2-related-info h5 {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 8px;
    transition: var(--t2-transition);
}

.t2-related-info h5:hover {
    color: var(--t2-primary) !important;
}

.t2-related-info p {
    font-size: 14px;
    color: var(--t2-text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===== BLOG / POST AREA ===== */
.t2-blog-area .blog_grid_item,
.t2-post-detail .blog_grid_item {
    border-radius: var(--t2-radius-sm);
    overflow: hidden;
    box-shadow: var(--t2-shadow);
    transition: var(--t2-transition);
}

.t2-blog-area .blog_grid_item:hover {
    transform: translateY(-5px);
    box-shadow: var(--t2-shadow-hover);
}

/* ===== POST DETAIL ===== */
.t2-article {
    margin-bottom: 50px;
}

.t2-article-hero {
    position: relative;
    border-radius: var(--t2-radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.t2-article-hero img {
    width: 100%;
    border-radius: var(--t2-radius);
}

.t2-article-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--t2-primary);
    color: #fff;
    border-radius: var(--t2-radius-sm);
    padding: 12px 16px;
    text-align: center;
    line-height: 1;
}

.t2-date-day {
    display: block;
    font-size: 28px;
    font-weight: 800;
}

.t2-date-month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 600;
}

.t2-article-title {
    font-size: 32px !important;
    margin-bottom: 24px;
    line-height: 1.3;
}

.t2-article-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--t2-text);
}

.t2-article-content img {
    border-radius: var(--t2-radius-sm);
    margin: 20px 0;
}

/* ===== SIDEBAR ===== */
.t2-sidebar {
    padding-left: 20px;
}

.t2-search-form {
    position: relative;
    display: flex;
}

.t2-search-form input {
    width: 100%;
    padding: 14px 52px 14px 20px;
    border: 2px solid var(--t2-border);
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: var(--t2-transition);
    font-family: 'Inter', sans-serif;
}

.t2-search-form input:focus {
    border-color: var(--t2-primary);
    box-shadow: 0 0 0 3px rgba(14, 75, 239, 0.1);
}

.t2-search-form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--t2-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--t2-transition);
}

.t2-search-form button:hover {
    background: var(--t2-primary-dark);
}

.t2-sidebar-widget {
    margin-top: 36px;
    background: #fff;
    border-radius: var(--t2-radius-sm);
    padding: 24px;
    box-shadow: var(--t2-shadow);
}

.t2-sidebar-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--t2-primary);
    display: inline-block;
}

.t2-recent-post {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--t2-border);
}

.t2-recent-post:last-child {
    border-bottom: none;
}

.t2-recent-post img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.t2-recent-post-info h5 {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 6px;
    line-height: 1.4;
    transition: var(--t2-transition);
}

.t2-recent-post-info h5:hover {
    color: var(--t2-primary) !important;
}

.t2-recent-post-info span {
    font-size: 12px;
    color: var(--t2-text-light);
}

.t2-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.t2-category-list li {
    border-bottom: 1px solid var(--t2-border);
}

.t2-category-list li:last-child {
    border-bottom: none;
}

.t2-category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--t2-text) !important;
    text-decoration: none;
    font-size: 14px;
    transition: var(--t2-transition);
}

.t2-category-list li a:hover {
    color: var(--t2-primary) !important;
    padding-left: 6px;
}

.t2-cat-count {
    width: 28px;
    height: 28px;
    background: var(--t2-gradient-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--t2-primary) !important;
}

.t2-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.t2-tag-cloud a {
    display: inline-block;
    padding: 6px 16px;
    background: var(--t2-bg-light);
    color: var(--t2-text) !important;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--t2-transition);
    border: 1px solid var(--t2-border);
}

.t2-tag-cloud a:hover {
    background: var(--t2-primary) !important;
    color: #fff !important;
    border-color: var(--t2-primary);
}

/* ===== FOOTER ===== */
.t2-footer {
    background: var(--t2-dark);
}

.t2-footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.t2-footer-logo img {
    max-height: 45px;
    margin-bottom: 20px;
    filter: brightness(10);
}

.t2-footer-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.t2-footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 6px;
}

.t2-footer-contact i {
    color: var(--t2-accent);
    margin-right: 8px;
    width: 16px;
}

.t2-footer-contact a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    transition: var(--t2-transition);
}

.t2-footer-contact a:hover {
    color: #fff !important;
}

.t2-footer-title {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.t2-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.t2-footer-links li a {
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none;
    font-size: 14px;
    transition: var(--t2-transition);
}

.t2-footer-links li a:hover {
    color: #fff !important;
    padding-left: 6px;
}

.t2-see-all {
    color: var(--t2-accent) !important;
    font-weight: 600;
}

.t2-footer-bottom {
    padding: 24px 0;
}

.t2-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin: 0;
}

.t2-social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.t2-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5) !important;
    transition: var(--t2-transition);
    text-decoration: none;
}

.t2-social-icons a:hover {
    background: var(--t2-primary);
    border-color: var(--t2-primary);
    color: #fff !important;
}

.t2-legal-links {
    list-style: none;
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}

.t2-legal-links a {
    color: rgba(255, 255, 255, 0.4) !important;
    text-decoration: none;
    font-size: 14px;
    transition: var(--t2-transition);
}

.t2-legal-links a:hover {
    color: #fff !important;
}

/* ===== HOME FOOTER ===== */
.t2-footer-home {
    position: relative;
}

.t2-wave-divider {
    position: relative;
    margin-bottom: -1px;
    color: var(--t2-dark);
}

.t2-wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

.t2-footer-home-content {
    background: var(--t2-dark);
    padding: 60px 0 40px;
}

.t2-fh-logo img {
    max-height: 40px;
    filter: brightness(10);
    margin-bottom: 16px;
}

.t2-fh-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.t2-fh-title {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 20px;
}

.t2-fh-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.t2-fh-links li {
    margin-bottom: 10px;
}

.t2-fh-links li a {
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none;
    font-size: 14px;
    transition: var(--t2-transition);
}

.t2-fh-links li a:hover {
    color: #fff !important;
    padding-left: 6px;
}

.t2-fh-social {
    display: flex;
    gap: 12px;
}

.t2-fh-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5) !important;
    transition: var(--t2-transition);
    text-decoration: none;
}

.t2-fh-social a:hover {
    background: var(--t2-primary);
    border-color: var(--t2-primary);
    color: #fff !important;
    transform: translateY(-3px);
}

/* ===== EXISTING OVERRIDES (buttons, pagination, etc.) ===== */
.theme2-wrapper .btn_get {
    color: var(--t2-primary) !important;
    border-color: var(--t2-primary) !important;
    border-radius: 50px;
}

.theme2-wrapper .btn_get:hover {
    background: var(--t2-primary) !important;
    color: #fff !important;
}

.theme2-wrapper .btn_get_two {
    background: var(--t2-primary) !important;
    border-color: var(--t2-primary) !important;
    border-radius: 50px;
}

.theme2-wrapper .price_btn {
    color: var(--t2-primary) !important;
    border-color: var(--t2-primary) !important;
    border-radius: 50px;
}

.theme2-wrapper .price_btn:hover {
    background: var(--t2-primary) !important;
    color: #fff !important;
}

.theme2-wrapper .btn_three {
    background: var(--t2-primary) !important;
    border-color: var(--t2-primary) !important;
    border-radius: 50px;
}

.theme2-wrapper .btn_three:hover {
    color: var(--t2-primary) !important;
    background: transparent !important;
}

/* Breadcrumb override so default breadcrumb gets theme colors */
.theme2-wrapper .breadcrumb_area {
    background: var(--t2-gradient) !important;
}

/* Pagination — Livewire tailwind pagination */
.theme2-wrapper .page-item.active .page-link {
    background-color: var(--t2-primary) !important;
    border-color: var(--t2-primary) !important;
    color: #fff !important;
}

.theme2-wrapper .page-link:hover {
    color: var(--t2-primary) !important;
}

/* Override base style.css: .pagination .nav-links .page-numbers.current */
.theme2-wrapper .pagination .nav-links .page-numbers.current,
.theme2-wrapper .pagination .nav-links button.page-numbers:hover {
    background: var(--t2-primary) !important;
    color: #fff !important;
}

.theme2-wrapper nav[role="navigation"] span.page-numbers.current,
.theme2-wrapper .navigation.pagination span.page-numbers.current {
    background: var(--t2-primary) !important;
    border-color: var(--t2-primary) !important;
    color: #fff !important;
}

.theme2-wrapper nav[role="navigation"] button.page-numbers:hover,
.theme2-wrapper .navigation.pagination button.page-numbers:hover,
.theme2-wrapper nav[role="navigation"] button.next:hover,
.theme2-wrapper .navigation.pagination button.next:hover,
.theme2-wrapper nav[role="navigation"] button.previous:hover,
.theme2-wrapper .navigation.pagination button.previous:hover {
    background: var(--t2-primary) !important;
    color: #fff !important;
    border-color: var(--t2-primary) !important;
}

/* Blog hovers */
.theme2-wrapper .blog_post .blog_content h5 a:hover,
.theme2-wrapper .blog_grid_item .blog_content a:hover h5,
.theme2-wrapper .post_item .media-body a:hover h3 {
    color: var(--t2-primary) !important;
}

.theme2-wrapper .blog_post .post_date h2,
.theme2-wrapper .blog_content .post_date h2 {
    color: var(--t2-primary) !important;
}

.theme2-wrapper .widget_title {
    border-bottom-color: var(--t2-primary) !important;
}

/* Tag buttons — default sidebar */
.theme2-wrapper .widget .tag_widget a:hover,
.theme2-wrapper .blog-sidebar .widget.widget_tag_cloud .post-tags a:hover {
    background: var(--t2-primary) !important;
    border-color: var(--t2-primary) !important;
    color: #fff !important;
}

/* Social sharing links */
.theme2-wrapper .social_icon a:hover,
.theme2-wrapper .social-links a:hover {
    background: var(--t2-primary) !important;
    color: #fff !important;
}

/* Links — general hover (must NOT override specific components above) */
.theme2-wrapper a:hover {
    color: var(--t2-primary);
}

/* Re-enforce component colors that must NOT be overridden by generic a:hover */
.theme2-wrapper .t2-hero .t2-btn-primary:hover,
.theme2-wrapper .t2-hero a.t2-btn-primary:hover {
    color: #fff !important;
}

.theme2-wrapper .t2-hero .t2-btn-outline:hover,
.theme2-wrapper .t2-hero a.t2-btn-outline:hover {
    color: #fff !important;
}

.theme2-wrapper .t2-cta-btn:hover {
    color: var(--t2-primary) !important;
}

.theme2-wrapper .t2-footer a:hover,
.theme2-wrapper .t2-footer-home a:hover {
    color: #fff !important;
}

.theme2-wrapper .t2-social-icons a:hover {
    color: #fff !important;
}

.theme2-wrapper .t2-fh-social a:hover {
    color: #fff !important;
}

.theme2-wrapper .t2-tag-cloud a:hover {
    color: #fff !important;
}

.theme2-wrapper nav[role="navigation"] span.page-numbers.current,
.theme2-wrapper .navigation.pagination span.page-numbers.current {
    color: #fff !important;
}

.theme2-wrapper nav[role="navigation"] button.page-numbers:hover,
.theme2-wrapper .navigation.pagination button.page-numbers:hover {
    color: #fff !important;
}

/* Forms */
.theme2-wrapper .form-control:focus {
    border-color: var(--t2-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(14, 75, 239, 0.25) !important;
}

/* Job list */
.theme2-wrapper .job_listing .job_list_tab .list_item_tab.active:before,
.theme2-wrapper .job_listing .job_list_tab .list_item_tab:hover:before {
    background: var(--t2-primary) !important;
}

.theme2-wrapper .job_listing .job_list_tab .list_item_tab.active,
.theme2-wrapper .job_listing .job_list_tab .list_item_tab:hover {
    color: var(--t2-primary) !important;
}

.theme2-wrapper .job_listing .listing_tab .list_item .joblisting_text h4 a:hover {
    color: var(--t2-primary) !important;
}

/* Learn btn */
.theme2-wrapper .learn_btn_two.c_violet {
    color: var(--t2-primary) !important;
}

.theme2-wrapper .learn_btn_two.c_violet:before {
    background: var(--t2-primary) !important;
}

/* Service features hover */
.theme2-wrapper .saas_features_item:hover {
    border-color: var(--t2-primary) !important;
}

.theme2-wrapper .new_service .saas_features_item:hover .number {
    background: var(--t2-primary) !important;
    color: #fff !important;
}

/* Default footer override */
.theme2-wrapper .f_bg {
    background: #f0f4ff !important;
}

.theme2-wrapper .f_widget.about-widget .f_list li a:before {
    background: var(--t2-primary) !important;
}

.theme2-wrapper .f_widget.about-widget .f_list li a:hover {
    color: var(--t2-primary) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .t2-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .t2-hero-content h1 {
        font-size: 32px !important;
    }

    .t2-hero-visual {
        display: none;
    }

    .t2-nav-right {
        flex-direction: column;
        gap: 12px;
        padding: 15px 0;
    }

    .t2-section-header h2 {
        font-size: 28px !important;
    }

    .t2-breadcrumb {
        padding: 80px 0 60px;
    }

    .t2-breadcrumb h1 {
        font-size: 30px !important;
    }

    .t2-pl-content {
        padding: 20px 0;
    }

    .t2-sd-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .t2-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .t2-hero-content h1 {
        font-size: 26px !important;
    }

    .t2-hero-btns {
        flex-direction: column;
    }

    .t2-legal-links {
        justify-content: center;
        margin-top: 12px;
    }
}

/* ===== Chatbot Theme Overrides – Theme 2 (Electric Blue) ===== */
.theme2-body {
    --ai-primary: var(--t2-primary, #0e4bef);
    --ai-primary-dark: var(--t2-primary-dark, #0a3ab8);
    --ai-primary-gradient: linear-gradient(135deg, var(--ai-primary-dark) 0%, var(--ai-primary) 100%);
    --ai-bubble-user: var(--ai-primary-gradient);
    --ai-shadow: rgba(14, 75, 239, 0.25);
    --ai-shadow-hover: rgba(14, 75, 239, 0.35);
    --ai-bg-light: #f0f4ff;
    --ai-input-bg: #f8faff;
}
