/*
Theme Name: Niconat Custom Theme
Theme URI: https://niconat.com
Author: Niconat
Author URI: https://niconat.com
Description: A custom blank WordPress theme for Niconat
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: niconat-custom
Tags: custom, blank, starter
*/

/* ===================================
   Custom Styles for Niconet
   =================================== */

/* ==========================================================================
   1. Root Variables & Global Styles
   ========================================================================== */

:root {
    --primary-color: #3E4095;
    --secondary-color: #EC268F;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #fff;
    --dark-color: #000;
    --text-dark: #000;
    --text-light: #737373;
    --font-family-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

section {
    position: relative;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ==========================================================================
   2. Typography & Utility
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-family-heading);
}

.text-accent {
    color: var(--secondary-color);
}

.text-blue {
    color: var(--primary-color);
}

.bg-primary-dark {
    background-color: var(--primary-color);
}

.section-label {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.heading36 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

.min-vh-75 {
    min-height: 75vh;
}

/* ==========================================================================
   3. Navigation (Navbar & Header)
   ========================================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

body.sticky-header header {
    background: transparent !important;
}

header .navbar,
.navbar.navbar-expand-lg {
    background: transparent !important;
    position: relative;
    z-index: 1000;
}

header .navbar::before,
.navbar.navbar-expand-lg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6) !important;
    /* change to 0.75 or 0.85 for darker */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: -1;
}

header .navbar {
    opacity: 1 !important;
}

.navbar-logo {
    max-width: 218px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand:hover {
    opacity: 0.9;
}

.navbar-nav {
    gap: 30px;
}

.nav-link {
    position: relative;
    display: inline-block;
    /* prevents full-width underline issues */
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 0 !important;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
}

/* underline */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    /* important, keeps it away from the link box */
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Disable transition and hide lines on initial load */
body.is-loading .nav-link::after {
    transform: scaleX(0) !important;
    transition: none !important;
}

.nav-link:hover::after,
.nav-link.active::after,
.current-menu-item>.nav-link::after,
.current_page_item>.nav-link::after,
.current-menu-ancestor>.nav-link::after {
    transform: scaleX(1);
}

.nav-link.active,
.current-menu-item>.nav-link,
.current_page_item>.nav-link {
    color: #fff !important;
}

.btn-quote {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-quote:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 95, 217, 0.4);
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-background.gif') center center/cover no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 200px 20px 118px;
}

.hero-logo-wrapper {
    margin-bottom: 25px;
}

.hero-logo {
    width: 354px;
    height: auto;
    filter: brightness(0) invert(1);
}

.hero-tagline {
    font-size: 70px;
    font-weight: 500;
    line-height: 1.4;
    font-style: italic;
    font-family: var(--font-family-body);
    color: white;
}

.hero-tagline .accent {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-section h1 {
    animation: fadeInUp 1s ease-out;
}

.hero-section p {
    animation: fadeInUp 1.2s ease-out;
}

.scroll-down {
    position: relative;
    margin: 40px auto 0;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    z-index: 10;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    transform: scale(1.1);
    color: var(--light-color);
}

@keyframes bounce {

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

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

    60% {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   5. Home Page Sections
   ========================================================================== */

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background: #f8f9fa url('../images/service-background.png') center center/cover no-repeat;
    position: relative;
    background-position: center center;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 249, 250, 0.9);
    z-index: 1;
}

.solutions-section .container {
    position: relative;
    z-index: 2;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-features {
    margin-top: 30px;
}

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

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: visible;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.about-social-overlap {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 38px;
    z-index: 15;
}

/* Difference Section */
.difference-section {
    padding: 100px 0;
    background:
        linear-gradient(0deg, rgba(62, 64, 149, 0.8), rgba(62, 64, 149, 0.8)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("../images/why-choose-us.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.difference-section .container {
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid #ffffff18;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    height: 100%;
    text-align: left;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.25rem;
    color: white;
}

.feature-card:hover .feature-icon-box {
    background: var(--secondary-color) !important;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 0;
}

/* Transform Section */
.transform-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-method-icon {
    width: 45px;
    height: 45px;
    background: rgba(43, 45, 149, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-method-info h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-method-info p {
    font-size: 16px;
    color: #737373;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-method-info a {
    color: #737373;
    text-decoration: none;
}

.contact-method-info a:hover {
    color: var(--primary-color);
}

.consultation-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.consultation-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.btn-consultation {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    margin-top: 10px;
}

.btn-consultation:hover {
    background: #2b2d5f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Map Section */
.map-section {
    padding-bottom: 100px;
    background: #f8f9fa;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
}

.map-address-box {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-address-box i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.map-address-box span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

.map-section iframe {
    width: 100%;
    height: 340px;
    border: 0;
}

/* ==========================================================================
   6. Components
   ========================================================================== */

/* Buttons */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    color: var(--light-color);
    box-shadow: 0 5px 15px rgba(62, 64, 149, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.solution-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 20px -4px #1429521F;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
}

.solution-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.solution-card-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.solution-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-card-title {
    color: var(--primary-color);
}

.solution-card-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 5;
}

.solution-card-body {
    padding: 32px;
}

.solution-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.solution-card-text {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 400;
}

.solution-features li::before {
    content: '\2022';
    font-size: 16px;
    font-weight: bold;
    font-family: 'font awesome pro';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Sliders */
.about-slider {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--primary-color);
    color: white;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-dots {
    position: absolute;
    bottom: 20px;
    display: flex !important;
    justify-content: center;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li.slick-active button {
    background: #ffffff;
    width: 12px;
    height: 12px;
}

.service-slider {
    height: 220px;
}

.service-slider .slick-list,
.service-slider .slick-track,
.service-slider .service-slide {
    height: 100%;
}

.service-slider .solution-card-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.service-slider .slick-dots {
    bottom: 10px;
}

/* Forms */
.consultation-form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.consultation-form .form-control {
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 14px;
    color: var(--text-dark);
}

.consultation-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(236, 38, 143, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Social Icons */
.social-box {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--primary-color);
}

.social-box .fa-linkedin-in {
    color: #0077b5;
}

.social-box .fa-facebook-f {
    color: #1877f2;
}

.social-box .fa-instagram {
    color: #e4405f;
}

.social-box:hover i {
    color: white;
}

/* Misc */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

.bi {
    transition: transform 0.3s ease;
}

.card:hover .bi,
.service-item:hover .bi {
    transform: scale(1.1) rotate(5deg);
}

.service-item {
    transition: all 0.3s ease;
    background: white;
}

.service-item:hover {
    background: var(--light-color);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   7. Footer
   ========================================================================== */

footer {
    background-color: var(--primary-color) !important;
    color: white;
}

.footer-logo {
    width: 140px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
    max-width: 280px;
}

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

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary-color);
    color: white;
}

.footer-heading {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.footer-contact li {
    margin-bottom: 4px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-contact li a:hover {
    color: var(--light-color) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: white;
}

/* ==========================================================================
   8. Animations
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   Service  — Single & Archive Template
   ========================================================================== */

/* --- Hero Banner (shared by single & archive) --- */
.internal-banner-section {
    position: relative;
    padding: 126px 0px 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000 center center / cover no-repeat;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.internal-banner-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.internal-banner-title {
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    font-family: var(--font-family-heading);
}

/* Archive hero slightly shorter */
.service-archive-hero {
    height: 45vh;
    min-height: 280px;
}

/* --- Service Detail Section --- */
.service-detail-section {
    padding: 80px 0 60px;
    background: #fff;
}

/* Large left-column heading */
.service-detail-heading {
    font-family: var(--font-family-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 0;
}

/* Magenta accent underline below heading */
.service-heading-accent {
    width: 48px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    margin-top: 18px;
    margin-bottom: 0;
}

/* Body paragraphs */
.service-detail-body {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 40px;
}

.service-detail-body p {
    margin-bottom: 1.1rem;
}

/* Icon feature list */
.service-icon-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-icon-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    background: #f5f6fa;
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 10px;
}

.service-icon-features li i {
    font-size: 1rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* --- CTA Sidebar Card --- */
.service-cta-card {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 6px 28px rgba(62, 64, 149, 0.08);
    position: sticky;
    top: 110px;
    /* sits below fixed header */
}

.service-cta-title {
    font-family: var(--font-family-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.service-cta-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-cta-service {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 20px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn-cta-service:hover {
    background-color: #2b2d5f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(62, 64, 149, 0.3);
}

/* --- Gallery Slider (below fold on single) --- */
.service-gallery-section {
    padding: 0 0 80px;
    background: #fff;
}

.service-gallery-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

/* --- Related Services + Archive CTA overrides --- */
.related-services-section {
    padding-top: 80px;
}

.services-archive-section {
    padding-top: 80px;
}

.services-archive-cta {
    padding: 100px 0;
}

/* Archive pagination */
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #dde1f0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    margin: 0 4px;
    text-decoration: none;
    transition: all 0.25s ease;
}

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

/* ── CTA Sidebar Card ────────────────────── */
.svc-cta-card {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 40px;
    position: sticky;
    top: 110px;
}

.svc-cta-title {
    font-family: var(--font-family-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.svc-cta-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 24px;
}

.svc-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 0px;
    font-weight: 600;
    padding: 13px 20px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.svc-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(62, 64, 149, 0.3);
}

.svc-tagline-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.svc-tagline-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f6fa;
    border-radius: 8px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.svc-tagline-item i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

/* === "WHAT WE DO" pill grid section ===== */

.svc-what-section {
    padding: 80px 0;
    background: #F7FAFC;
}

.svc-what-grid {
    display: flex;
    gap: 24px;
    margin-top: 10px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}


.svc-what-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: 0px 4px 20px -4px #14295205;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    width: 100%;
    max-width: 300px;
    cursor: pointer;
}

.svc-what-item:hover {
    box-shadow: 0 6px 20px rgba(62, 64, 149, 0.1);
    transform: translateY(-2px);
}

.svc-what-item:hover .svc-what-icon img {
    filter: brightness(0) invert(1);
}

.svc-what-item:hover .svc-what-icon {
    background: var(--secondary-color);
    border-radius: 8px;

}

.svc-reviews-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.svc-reviews-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    /* overlay */
    background:
        linear-gradient(0deg, rgba(62, 64, 149, 0.75), rgba(62, 64, 149, 0.75)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
}

/* make sure content stays above overlay */

.svc-review-logo-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-review-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.svc-review-logo-placeholder {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
}

.svc-review-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.svc-review-link {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.svc-review-link:hover {
    color: #fff;
}



/* ==========================================================================
   Testimonial Section 
   ========================================================================== */

.svc-reviews-inner {
    position: relative;
    z-index: 2;
}

.svc-reviews-title {
    font-family: var(--font-family-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.svc-review-card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: 100%;
    backdrop-filter: blur(4px);
    background: #FFFFFF0D;
}

/* ── Hover overlay: full pink card slides up from bottom ── */
.svc-review-hover-overlay {
    position: absolute;
    inset: 0;
    background: var(--secondary-color);
    opacity: 0;
    transition: opacity 0.45s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 150px 20px 28px;
    /* Added top padding to clear the logo area */
    z-index: 10;
}

.svc-review-card:hover .svc-review-hover-overlay {
    opacity: 1;
}

/* Text fades in and slides up once overlay is revealed */
.svc-review-hover-content {
    color: #fff;
    font-size: 15px;
    line-height: 1.75;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

.svc-review-card:hover .svc-review-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.svc-review-hover-content p {
    margin: 0;
    color: #fff;
}

.svc-review-logo-circle {
    position: relative;
    z-index: 15;
}

.svc-review-logo-circle img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 24px;
}

.svc-review-brand-text {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    font-family: Georgia, serif;
}

.svc-review-company {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.svc-review-stars {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.svc-review-stars .fa-star {
    color: #FFCC00;
    font-size: 0.85rem;
}

.svc-review-quote {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: #fff;
    margin: 4px 0 0;
}

.svc-review-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    flex: 1;
    max-width: 224px;
    width: 100%;
}

.svc-review-attribution {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
    margin: 4px 0 0;
}

/* More Services section */
.svc-more-section {
    padding: 112px 0;
    background: #fff;
}

.svc-more-head {
    margin-bottom: 22px;
}

.svc-more-kicker {
    margin: 0 0 6px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #2f49ff;
}

.svc-more-heading {
    margin: 0;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    color: #0f172a;
}

.svc-more-underline {
    display: inline-block;
    margin-top: 10px;
    width: 44px;
    height: 2px;
    background: #2f49ff;
    border-radius: 2px;
}

/* Card */
.svc-more-card {
    position: relative;
    display: block;
    text-decoration: none;
}

.svc-more-media {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background: #0b1220;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.svc-more-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    display: block;
    transform: scale(1);
    transition: transform 300ms ease;
    border-radius: 12px;
}

.svc-more-card:hover .svc-more-img {
    transform: scale(1.08);
}

/* Gradient overlay covers the full card */
.svc-more-overlay {
    position: absolute;
    inset: 0;
    padding: 18px 18px 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0) 100%);
    border-radius: 12px;
}

.svc-more-title {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

.svc-more-subtitle {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    opacity: 0.7;
    color: #FFFF;
}

h2.heading-border:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 64px;
    background-color: #3E4095;
    bottom: -16px;
}

h2.heading-border {
    position: relative;
}

/* ==========================================================================
   Who We Are Section
   ========================================================================== */

.who-we-are {
    background-color: #fff;
    padding: 100px 0;
}

.who-we-are .section-title {
    line-height: 1.2;
    margin-bottom: 30px;
}

.who-we-are-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.who-we-are-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


/* ==========================================================================
   Our Team Section
   ========================================================================== */

.our-team {
    background-color: #F7FAFC;
    padding: 80px 0;
}

.our-team-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.our-team-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Override for icon features in team section */
.service-icon-features.no-bg li {
    background: transparent;
    padding: 0;
    margin-bottom: 15px;
}

.service-icon-features.no-bg li i {
    font-size: 18px;
    color: var(--primary-color);
}


/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background-color: #fff;
    padding: 80px 0px;
}

/* Contact Page CSS Start */

.contact-section{
	padding:100px 0px;
}

.contact-form .form-label{
	font-size:14px;
}
.contact-form{
	padding-top:36px;
}
.contact-form .form-control{
	border: 1px solid #E2E8F0;
	padding:10px 13px;
	border-radius:0px;
}

.contact-form-card{
	box-shadow: 0px 8px 30px -6px #1429521F;
    background: #FFFFFF;
	padding:40px;
	border-radius:16px;
}
.contact-info-list h4{
	font-size:16px;
	font-weight:600;
}
.contact-info-list p,
.business-hours-list li{
	font-size:16px;
	font-weight:400;
}
.info-icon-box{
	background: #3E40951A;
    border-radius: 8px;
    padding: 14px;
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
}

.info-icon-box i{
  color: var(--primary-color);
}
.badge{
	background: #EC268F0D;
    color: #EC268F;
}
.contact-map-wrapper{
	border: 1px solid #C8C8C8;
	border-radius: 16px;
}
.contact-map-wrapper iframe{
	 border-radius: 16px;
}
.section-padding {
	padding:100px 32px !important;
}
.section-label i{
	font-size:80px;
}
.error-title{
	font-size:46px;
	font-weight:700;
	text-align:center;
}
.wpcf7-spinner{
	display:none;
}

/* For Font Awesome Icon Start */

.far,
.fa-regular,
.fa-light,
.fa-duotone {
    font-family: "Line Awesome Free";
    display: inline-block;
    font-style: normal;
}

.far,
.fa-regular {
    font-weight: 700;
}

.fa-light,
.fa-duotone {
    font-weight: 700;
}