/* ==========================================================================
   WebnNets IT Solutions - Premium Custom Stylesheet
   Design system inspired by Porto & Orange Digital Marketing
   ========================================================================== */

/* --- Fonts & Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* --- Design System Variables --- */
:root {
    --primary-color: #00a1cd;       /* Sleek Cyan / Light Blue */
    --secondary-color: #183f72;     /* Deep Navy Blue */
    --tertiary-color: #0281d7;      /* Royal Blue */
    --quaternary-color: #383f48;    /* Slate Gray */
    --bg-light: #f4f9fc;            /* Soft blue-tinted white */
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px rgba(24, 63, 114, 0.08);
}

/* --- Reset & Core --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--tertiary-color);
}

/* --- Container & Layout Utils --- */
.container {
    width: 100%;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
}

.section {
    padding: 100px 0;
    position: relative;
}
.bg-light-tint {
    background-color: var(--bg-light);
}
.bg-navy {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* --- Button Styles --- */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: var(--white) !important;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 30px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 161, 205, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.btn-premium:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 63, 114, 0.35);
}
.btn-secondary-style {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(24, 63, 114, 0.2);
}
.btn-secondary-style:hover {
    background-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 161, 205, 0.3);
}

/* --- Header & Topbar --- */
.topbar-header {
    background-color: var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    color: var(--white);
    font-size: 13.5px;
    font-weight: 500;
}
.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.topbar-item i {
    color: var(--primary-color);
}
.topbar-social {
    display: flex;
    gap: 15px;
}
.topbar-social a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.main-header {
    background-color: var(--white);
    padding: 18px 0;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 999;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-box img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin: 0;
}
.nav-item {
    position: relative;
}
.nav-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 8px 0;
    text-transform: capitalize;
    border-bottom: 2px solid transparent;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-phone-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-phone-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    animation: phone-shake 3s infinite;
}
.header-phone-info p {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0;
    text-transform: uppercase;
}
.header-phone-info a {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary-color);
}
.header-phone-info a:hover {
    color: var(--primary-color);
}

@keyframes phone-shake {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(-15deg); }
    94% { transform: rotate(15deg); }
    96% { transform: rotate(-15deg); }
    98% { transform: rotate(15deg); }
}

/* Sticky Header State */
.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
    animation: slide-down 0.4s ease-out;
}
@keyframes slide-down {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
}

/* --- Hero Section & Callback Form --- */
.hero-section {
    position: relative;
    padding: 120px 0 140px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    background-image: linear-gradient(135deg, rgba(24, 63, 114, 0.95) 40%, rgba(2, 129, 215, 0.8) 100%), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Shape Divider bottom curve (Porto Style SVG shape) */
.hero-shape-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}
.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 110px;
}
.hero-shape-divider .shape-fill {
    fill: var(--white);
}

.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffc107;
}
.hero-rating-badge i {
    color: #ffc107;
}

.hero-title {
    font-size: 46px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}
.hero-title span {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}
.hero-desc {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 650px;
}

.hero-checklist {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.hero-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 600;
}
.hero-checklist-item i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Callback Request Form Card (Porto layout) */
.callback-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 40px;
    color: var(--text-dark);
    border-top: 5px solid var(--primary-color);
    position: relative;
    z-index: 3;
}
.callback-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}
.callback-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
}
.form-group-custom {
    margin-bottom: 18px;
}
.form-input-custom {
    width: 100%;
    height: 48px;
    background-color: #f3f4f6;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    padding: 0 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}
.form-input-custom:focus {
    background-color: var(--white);
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 161, 205, 0.1);
}
textarea.form-input-custom {
    height: auto;
    padding: 14px 16px;
}
select.form-input-custom {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23183f72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

/* --- Features Ticker Banner --- */
.ticker-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}
.ticker-track {
    display: inline-flex;
    animation: ticker-slide 45s linear infinite;
    gap: 50px;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ticker-item i {
    font-size: 8px;
    opacity: 0.7;
}

@keyframes ticker-slide {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* --- About Us Section --- */
.about-section {
    padding-bottom: 80px;
}
.section-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.section-tagline::before {
    content: '';
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
}
.section-title-large {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}
.section-title-large span {
    color: var(--primary-color);
}
.about-text {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.about-feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
}
.about-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}
.about-footer-contact {
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}
.about-call-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-call-icon {
    font-size: 26px;
    color: var(--primary-color);
}
.about-call-info p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}
.about-call-info a {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
}

/* Float-element Circular Images (Porto style) */
.about-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 480px;
}
.about-circle-img-1 {
    width: 75%;
    border-radius: 50%;
    box-shadow: var(--shadow-premium);
    border: 10px solid var(--white);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
    animation: float-slow 6s ease-in-out infinite;
}
.about-circle-img-2 {
    width: 55%;
    border-radius: 50%;
    box-shadow: var(--shadow-premium);
    border: 8px solid var(--white);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    animation: float-slow-reverse 6s ease-in-out infinite;
}
.about-circle-img-1 img, .about-circle-img-2 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes float-slow-reverse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

/* --- Services Section --- */
.services-section {
    background-color: var(--bg-light);
}
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}
.services-header .left-side {
    max-width: 700px;
}
.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    transition: var(--transition);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}
.service-card:hover::before {
    height: 8px;
}
.service-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
    transition: var(--transition);
}
.service-card:hover .service-icon-box {
    background-color: var(--primary-color);
    color: var(--white);
}
.service-card h3 {
    font-size: 19px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.service-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}
.service-link {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}
.service-link i {
    font-size: 11px;
    transition: var(--transition);
}
.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* --- Banner CTA Section --- */
.cta-banner-section {
    position: relative;
    padding: 80px 0;
    background-image: linear-gradient(135deg, rgba(24, 63, 114, 0.96) 30%, rgba(2, 129, 215, 0.9) 100%), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}
.cta-banner-shape-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.cta-banner-shape-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}
.cta-banner-shape-top .shape-fill {
    fill: var(--bg-light);
}

.cta-banner-shape-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.cta-banner-shape-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}
.cta-banner-shape-bottom .shape-fill {
    fill: var(--white);
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-banner-text h2 {
    color: var(--white);
    font-size: 30px;
    margin-bottom: 8px;
}
.cta-banner-text p {
    font-size: 16px;
    opacity: 0.85;
}

/* --- Why Choose Us (Benefits) --- */
.benefits-section {
    background-color: var(--white);
}

/* Custom Styled Accordion (Porto look-and-feel) */
.custom-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.accordion-item-custom {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--white);
}
.accordion-header-custom {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 16px;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--white);
    transition: var(--transition);
}
.accordion-header-custom.active {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}
.accordion-icon-custom {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--secondary-color);
    transition: var(--transition);
}
.accordion-header-custom.active .accordion-icon-custom {
    transform: rotate(180deg);
    background-color: var(--primary-color);
    color: var(--white);
}
.accordion-body-custom {
    padding: 22px 25px;
    font-size: 14.5px;
    color: var(--text-muted);
    display: none;
    line-height: 1.6;
}

/* --- Working Process Section --- */
.process-section {
    background-color: var(--bg-light);
}
.process-card {
    text-align: center;
    padding: 30px 15px;
    position: relative;
}
.process-num-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 auto 25px auto;
    position: relative;
    border: 3px solid var(--white);
    transition: var(--transition);
}
.process-num-box::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
}
.process-card:hover .process-num-box {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}
.process-card h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}
.process-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Connector Arrow between columns (desktop only) */
.process-col {
    position: relative;
}
.process-col::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 75px;
    right: -15px;
    font-size: 18px;
    color: rgba(24, 63, 114, 0.15);
    z-index: 10;
}
.process-col:last-child::after {
    display: none;
}

/* --- Our Clients Running Slider (Orange Digital Marketing Marquee style) --- */
.od-client-wall {
    padding: 90px 0;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
}
.od-client-heading {
    margin-bottom: 50px;
}
.od-client-heading h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--secondary-color);
    text-align: center;
    text-transform: capitalize;
}
.od-marquee-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}
.od-marquee-track {
    display: flex;
    gap: 25px;
    width: max-content;
    will-change: transform;
}

/* Smooth Running Animation directions */
.od-marquee-left .od-marquee-track {
    animation: odScrollLeft 35s linear infinite;
}
.od-marquee-right .od-marquee-track {
    animation: odScrollRight 35s linear infinite;
}

/* Pause scroller on hover */
.od-marquee-row:hover .od-marquee-track {
    animation-play-state: paused;
}

/* Premium Client Logo Box card styling */
.od-logo-box {
    width: 230px;
    height: 120px;
    background-color: var(--white);
    border: 2px dashed var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}
.od-logo-box:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg), 0 0 0 2px rgba(0, 161, 205, 0.1);
}
.od-logo-box svg {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition);
}
.od-logo-box:hover svg {
    transform: scale(1.05);
}

@keyframes odScrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes odScrollRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* Fade Overlay Edges of Marquee Row */
.od-marquee-row::before, .od-marquee-row::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.od-marquee-row::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}
.od-marquee-row::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

/* --- Testimonial Slider --- */
.testimonial-section {
    background-color: var(--bg-light);
}
.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    margin: 15px;
    text-align: left;
    position: relative;
}
.testimonial-stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 15px;
}
.testimonial-text {
    font-size: 15.5px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.6;
}
.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(24, 63, 114, 0.15);
    border: 2px solid var(--primary-color);
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-meta h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin: 0 0 2px 0;
}
.testimonial-meta p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}
.testimonial-quote-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 32px;
    color: rgba(0, 161, 205, 0.1);
}

/* Custom Testimonial Navigation Controls */
.testimonial-nav-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}
.testimonial-btn-control {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.testimonial-btn-control:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* --- FAQ Accordion --- */
.faq-section {
    background-color: var(--white);
}

/* --- Blog Section --- */
.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* --- Parallax Footer Reveal Animation --- */
.page-content-wrapper {
    background-color: var(--white);
    position: relative;
    z-index: 10;
    margin-bottom: 440px; /* MATCH REVEAL HEIGHT: Set desktop reveal height to 440px */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.main-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 440px; /* MATCH REVEAL HEIGHT: Set desktop reveal height to 440px */
    z-index: 1;
    overflow: hidden;
    background-color: #0b1727; /* Solid Dark Footer Background */
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 0 15px 0;
    margin-bottom: 0;
}
.footer-widget h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}
.footer-logo-box {
    margin-bottom: 25px;
}
.footer-logo-box img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.footer-desc {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-social-links {
    display: flex;
    gap: 12px;
}
.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
}
.footer-social-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}
.footer-menu {
    list-style: none;
}
.footer-menu li {
    margin-bottom: 10px;
}
.footer-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-menu a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--primary-color);
}
.footer-menu a:hover {
    color: var(--white);
    transform: translateX(4px);
}
.footer-contact-info-list {
    list-style: none;
}
.footer-contact-item-custom {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}
.footer-contact-icon-custom {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 4px;
}
.footer-contact-text-custom p {
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-contact-text-custom a:hover {
    color: var(--white);
}

/* Footer Bottom Copyright layout */
.footer-bottom {
    background-color: #060e18; /* Darker bottom bar */
    padding: 18px 0;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.5) !important;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}
.footer-bottom-links a:hover {
    color: var(--white);
}

/* --- Floating AI Chatbot Widget --- */
.webn-chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
}

/* Chat Trigger Floating Button */
.webn-chat-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    color: var(--white);
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(24, 63, 114, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.webn-chat-trigger:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 10px 28px rgba(24, 63, 114, 0.45);
}
.webn-chat-trigger:active {
    transform: scale(0.95);
}
.webn-chat-trigger svg {
    width: 28px;
    height: 28px;
    transition: all 0.25s ease;
}
.webn-chat-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.4;
    z-index: -1;
    animation: webn-pulse 2s infinite;
}
@keyframes webn-pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

.webn-chat-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff3b30;
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    padding: 2px 7px;
    box-shadow: 0 2px 5px rgba(255, 59, 48, 0.3);
    animation: webn-bounce-badge 2.5s infinite;
}
@keyframes webn-bounce-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Chat Window Box */
.webn-chat-window {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 380px;
    height: 560px;
    max-height: calc(100vh - 140px);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(24, 63, 114, 0.08);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}
.webn-chat-window.webn-active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

/* Chat Header */
.webn-chat-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    padding: 16px 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.webn-chat-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}
.webn-chat-avatar {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.webn-chat-avatar img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.webn-online-dot {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 11px;
    height: 11px;
    background: #34c759;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
}
.webn-chat-info h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--white);
}
.webn-chat-info p {
    margin: 2px 0 0 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.webn-chat-close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s ease;
    outline: none;
}
.webn-chat-close-btn:hover {
    color: var(--white);
}

/* Onboarding On-going On-site Progress */
.webn-progress-container {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    overflow: hidden;
}
.webn-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.4s ease;
}

/* Message Feed Pane */
.webn-chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}
.webn-chat-messages::-webkit-scrollbar {
    width: 4px;
}
.webn-chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* Chat Rows */
.webn-msg-row {
    display: flex;
    width: 100%;
    animation: webn-fade-up 0.3s ease forwards;
}
@keyframes webn-fade-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.webn-msg-row.chatbot {
    justify-content: flex-start;
}
.webn-msg-row.user {
    justify-content: flex-end;
}
.webn-msg-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.5;
}
.webn-msg-row.chatbot .webn-msg-bubble {
    background: var(--white);
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}
.webn-msg-row.user .webn-msg-bubble {
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    color: var(--white);
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(24, 63, 114, 0.15);
}

/* Typing Dots styling */
.webn-typing-dots {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
}
.webn-typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: webn-bounce-dots 1.4s infinite ease-in-out both;
}
.webn-typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.webn-typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes webn-bounce-dots {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

.webn-error-text {
    font-size: 11px;
    color: #ef4444;
    margin-top: 4px;
    font-weight: 600;
    text-align: right;
    animation: webn-shake 0.3s ease;
}
@keyframes webn-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Pill Option Select Buttons */
.webn-chat-options {
    background: #f8fafc;
    padding: 0 20px 15px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    animation: webn-fade-up 0.35s ease;
}
.webn-option-btn {
    background: var(--white);
    color: var(--secondary-color);
    border: 1.5px solid var(--secondary-color);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.webn-option-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-1px);
}

/* Onboarding Input Frame */
.webn-chat-input-area {
    padding: 15px 20px;
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.webn-chat-input-area input,
.webn-chat-input-area textarea {
    flex: 1;
    border: 1.5px solid #d1d5db;
    border-radius: 24px;
    padding: 10px 18px;
    font-size: 13.5px;
    outline: none;
    transition: var(--transition);
    color: var(--text-dark);
}
.webn-chat-input-area input:focus,
.webn-chat-input-area textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 161, 205, 0.1);
}
.webn-chat-input-area textarea {
    resize: none;
    height: 42px;
    border-radius: 18px;
}
.webn-chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.webn-chat-send:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}
.webn-chat-send:active {
    transform: scale(0.95);
}
.webn-chat-send svg {
    width: 18px;
    height: 18px;
    margin-right: -2px;
}
.webn-chat-send[disabled] {
    background: #e5e7eb;
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
}

/* --- Responsive CSS --- */
@media (max-width: 1199px) {
    .process-col::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 70px 0;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .nav-menu {
        display: none; /* toggled via JS */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        gap: 15px;
        align-items: flex-start;
        border-top: 1px solid var(--border-color);
        z-index: 1000;
    }
    .nav-menu.show {
        display: flex;
    }
    .header-right {
        display: none;
    }
    .hero-section {
        padding: 80px 0 100px 0;
    }
    .hero-title {
        font-size: 34px;
    }
    .callback-card {
        margin-top: 50px;
        padding: 30px;
    }
    .about-image-wrapper {
        min-height: 380px;
        margin-top: 50px;
    }
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .page-content-wrapper {
        margin-bottom: 0;
        box-shadow: none;
    }
    .main-footer {
        position: relative;
        height: auto;
        z-index: 10;
    }
}

@media (max-width: 768px) {
    .topbar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .hero-checklist {
        grid-template-columns: 1fr;
    }
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .od-logo-box {
        width: 180px;
        height: 100px;
        padding: 15px;
    }
    .od-logo-box svg {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .webn-chatbot-container {
        bottom: 20px;
        right: 20px;
    }
    .webn-chat-window {
        bottom: 90px;
        right: 20px;
        width: calc(100vw - 40px);
        height: 480px;
    }
}
