/* ==========================================================================
   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 --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

* {
    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);
}
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color) !important;
    box-shadow: none;
}
.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white) !important;
}
.btn-google-review {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #4285F4;
    color: var(--white) !important;
    font-weight: 700;
    font-size: 11px;
    padding: 8px 16px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.2;
    box-shadow: 0 2px 5px rgba(66, 133, 244, 0.2);
}
.btn-google-review:hover {
    background-color: #3367d6;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(66, 133, 244, 0.3);
}
.btn-google-review .google-stars {
    color: #fbbc05;
    font-size: 9px;
    margin-top: 2px;
    display: flex;
    gap: 1px;
}


/* --- 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: sticky;
    top: 0;
    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 {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

/* 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: 80px 0 100px 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;
}

.col-form-width {
    flex: 0 0 420px;
    max-width: 420px;
    width: 100%;
}

/* 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: 700;
    color: var(--secondary-color);
    transition: var(--transition);
}
.form-input-custom::placeholder {
    color: #374151;
    font-weight: 700;
    opacity: 0.9;
}
.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%;
    aspect-ratio: 1 / 1;
    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%;
    aspect-ratio: 1 / 1;
    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 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--secondary-color);
    transition: var(--transition);
}
.accordion-icon-custom i {
    transition: transform 0.3s ease;
}
.accordion-header-custom.active .accordion-icon-custom {
    background-color: var(--primary-color);
    color: var(--white);
}
.accordion-header-custom.active .accordion-icon-custom i {
    transform: rotate(180deg);
}
.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);
}
.od-logo-box img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition);
}
.od-logo-box:hover img {
    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-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

/* --- 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: 90px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(24, 63, 114, 0.1);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 5px;
}
.testimonial-avatar svg {
    max-width: 100%;
    max-height: 100%;
}
.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;
    }
    .col-form-width {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .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: 991px) {
    /* Stack flex rows vertically on tablet & mobile */
    #home .row-flex,
    #about .container > div[style*="display: flex"],
    #benefits .container > div[style*="display: flex"],
    #faq .container > div[style*="display: flex"],
    #contact .container > div[style*="display: flex"],
    #mission-vision .container > div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 35px !important;
    }

    /* Reset width/min-width constraints for columns */
    #home .row-flex > div,
    #about .container > div[style*="display: flex"] > div,
    #benefits .container > div[style*="display: flex"] > div,
    #faq .container > div[style*="display: flex"] > div,
    #contact .container > div[style*="display: flex"] > div,
    #mission-vision .container > div[style*="display: flex"] > div {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .section-title-large {
        font-size: 30px !important;
    }
    .topbar-header {
        font-size: 12px;
        padding: 8px 0;
    }
    .topbar-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .topbar-left {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        width: 100%;
    }
    .topbar-social {
        justify-content: center;
        margin-top: 4px;
    }
    .callback-card {
        margin-top: 30px;
        padding: 24px 20px;
    }
    .callback-card h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    .callback-card p {
        font-size: 13.5px;
        margin-bottom: 16px;
    }
    .form-group-custom {
        margin-bottom: 14px;
    }
    .form-input-custom {
        height: 42px;
        font-size: 13.5px;
        padding: 0 12px;
    }
    .callback-card .btn-premium {
        padding: 10px 20px;
        font-size: 13px;
    }
    .testimonial-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 30px;
    }
    .about-text {
        text-align: justify;
    }
    .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) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .callback-card {
        padding: 25px 20px;
    }
    .webn-chatbot-container {
        bottom: 20px;
        right: 20px;
    }
    .webn-chat-window {
        bottom: 90px;
        right: 20px;
        width: calc(100vw - 40px);
        height: 480px;
    }
    .hero-title {
        font-size: 28px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .hero-desc {
        font-size: 14px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .google-review-badge {
        padding: 10px 14px !important;
    }
    .google-review-badge div[style*="font-size: 36px"] {
        font-size: 28px !important;
    }
    .section-title-large {
        font-size: 24px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    /* Accordion padding override for small screens */
    .accordion-header-custom {
        padding: 15px 18px !important;
        font-size: 14.5px !important;
    }
    .accordion-body-custom {
        padding: 15px 18px !important;
        font-size: 13.5px !important;
    }
    /* General overflow prevention */
    .container {
        overflow-x: hidden;
    }
}

/* --- Book Free Consultation Modal --- */
.consult-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 63, 114, 0.4);
    backdrop-filter: blur(8px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.consult-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.consult-modal-box {
    background-color: var(--white);
    max-width: 600px;
    width: 92%;
    padding: 35px 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 50px rgba(24, 63, 114, 0.2);
    transform: scale(0.85);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 5px solid var(--primary-color);
    max-height: 90vh;
    overflow-y: auto;
}
.consult-modal-overlay.active .consult-modal-box {
    transform: scale(1);
}
.consult-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}
.consult-modal-close:hover {
    color: #ef4444;
    transform: rotate(90deg);
}
.consult-modal-header {
    margin-bottom: 20px;
    text-align: left;
}
.consult-modal-header h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 4px;
    font-weight: 700;
}
.consult-modal-header p {
    font-size: 14px;
    color: var(--text-muted);
}
.form-input-custom {
    width: 100%;
    padding: 12px 15px;
    background-color: #f3f4f6;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--secondary-color);
    font-weight: 600;
    outline: none;
    transition: var(--transition);
}
.form-input-custom:focus {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 161, 205, 0.15);
}
.form-input-custom::placeholder {
    color: #6b7280;
    font-weight: 500;
}
select.form-input-custom {
    color: var(--secondary-color);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23183f72%22%20stroke-width%3D%222.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px auto;
    padding-right: 40px;
    cursor: pointer;
}
.btn-modal-submit {
    background-color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(0, 161, 205, 0.25) !important;
    border: none;
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    border-radius: 6px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-modal-submit:hover {
    background-color: var(--tertiary-color) !important;
    box-shadow: 0 8px 20px rgba(2, 129, 215, 0.35) !important;
    transform: translateY(-1px);
}
@media (max-width: 576px) {
    .consult-modal-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- Achievements Section --- */
.achievements-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e4f8a 100%);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}
.achievement-item {
    padding: 20px;
    transition: var(--transition);
}
.achievement-item:hover {
    transform: translateY(-5px);
}
.achievement-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.achievement-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}
.achievement-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* --- Navbar Services Dropdown Styles --- */
.nav-menu li {
    position: relative;
}
.mobile-toggle-btn {
    display: none;
}
@media (min-width: 992px) {
    .nav-dropdown > .nav-link::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 9px;
        margin-left: 5px;
        display: inline-block;
        transition: transform 0.2s ease;
    }
    .nav-dropdown:hover > .nav-link::after {
        transform: rotate(180deg);
    }
}
.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(24, 63, 114, 0.15);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 260px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    list-style: none;
    border-top: 3px solid var(--primary-color);
    margin: 0;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu li {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}
.dropdown-category {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 10px 20px 5px 20px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--secondary-color);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-align: left;
}
.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile responsive dropdown override */
@media (max-width: 991px) {
    .nav-dropdown {
        display: block !important;
        width: 100% !important;
        position: relative !important;
    }
    .nav-dropdown > .nav-link {
        display: inline-block !important;
        border-bottom: none !important;
        padding: 10px 0 !important;
        vertical-align: middle !important;
    }
    .mobile-toggle-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        cursor: pointer;
        color: var(--secondary-color);
        vertical-align: middle !important;
        margin-left: 5px;
        z-index: 10;
    }
    .mobile-toggle-btn i {
        font-size: 11px;
        transition: transform 0.3s ease;
    }
    .nav-dropdown.active-mobile > .mobile-toggle-btn i {
        transform: rotate(180deg);
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none !important;
        box-shadow: none;
        border-top: none;
        padding: 5px 0 5px 15px;
        background: rgba(0, 161, 205, 0.04);
        border-radius: 8px;
        margin: 8px 0;
        display: none;
        min-width: 100%;
    }
    .nav-dropdown.active-mobile .dropdown-menu {
        display: block;
    }
    .dropdown-category {
        color: var(--primary-color) !important;
        font-size: 11px;
        padding: 8px 12px 4px 12px !important;
        font-weight: 800;
        text-transform: uppercase;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
        display: block;
    }
    .dropdown-menu li a {
        color: var(--secondary-color) !important;
        font-size: 13.5px;
        padding: 8px 12px !important;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    }
    .dropdown-menu li:last-child a {
        border-bottom: none;
    }
    .dropdown-menu li a:hover {
        color: var(--primary-color) !important;
        background-color: transparent;
    }
}

/* ==========================================================================
   ABOUT US PAGE LAYOUTS & COMPONENT SPECIFIC STYLING
   ========================================================================== */

/* --- Inner Page Banner --- */
.inner-page-banner {
    background-color: var(--secondary-color);
    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;
    padding: 85px 0;
    color: var(--white);
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}
.inner-page-banner h1 {
    color: var(--white);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}
.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}
.breadcrumbs a {
    color: var(--white);
    transition: var(--transition);
}
.breadcrumbs a:hover {
    color: var(--primary-color);
}

/* --- Mission & Vision Cards --- */
.mv-card-wrapper {
    display: flex;
}
.mv-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.mv-card-wrapper:last-child .mv-card::before {
    background-color: var(--secondary-color);
}
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}
.mv-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius);
    background-color: rgba(0, 161, 205, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}
.mv-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}
.mv-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Why Choose Us (8 Grid Cards) --- */
.about-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.about-why-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}
.about-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-color);
}
.about-why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.about-why-card:hover .about-why-icon {
    background-color: var(--primary-color);
    color: var(--white);
}
.about-why-card h3 {
    font-size: 18.5px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 700;
}
.about-why-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Visual Timeline Process --- */
.about-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}
.about-timeline::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--border-color);
}
.timeline-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px;
}
.timeline-step:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: var(--transition);
}
.timeline-step:hover .timeline-dot {
    background-color: var(--primary-color);
    transform: scale(1.1);
}
.timeline-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    flex-grow: 1;
    transition: var(--transition);
}
.timeline-step:hover .timeline-content {
    transform: translateX(5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-color);
}
.timeline-content h3 {
    font-size: 19.5px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
}
.timeline-content p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 575px) {
    .about-footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    .about-call-box {
        justify-content: center;
    }
    .about-timeline::before {
        left: 20px;
    }
    .timeline-step {
        gap: 15px;
    }
    .timeline-dot {
        width: 44px;
        height: 44px;
        font-size: 15px;
        border-width: 3px;
    }
    .timeline-content {
        padding: 15px 20px;
    }
    .timeline-content h3 {
        font-size: 16px;
    }
    .timeline-content p {
        font-size: 13.5px;
    }
}

/* Fix section scroll alignment with sticky header */
section[id], footer[id] {
    scroll-margin-top: 100px;
}

@media (max-width: 575px) {
    #contact form div[style*="grid-template-columns"],
    .callback-card form div[style*="grid-template-columns"],
    .modal-form form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC STYLING
   ========================================================================== */

/* --- Info Section Grid --- */
.contact-info-section {
    padding: 85px 0 45px 0;
    background-color: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-color);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(0, 161, 205, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: var(--transition);
    border: 1px solid rgba(0, 161, 205, 0.15);
}

.contact-info-card:hover .contact-info-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.contact-info-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.contact-info-detail {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    word-break: break-all;
}

.contact-info-detail a {
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-info-detail a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-info-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- Contact Details Section (Map & Form) --- */
.contact-details-section {
    padding: 85px 0;
    background-color: var(--bg-light);
}

.contact-details-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-map-box {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--white);
    padding: 10px;
    border: 1px solid var(--border-color);
    height: 520px;
}

.contact-map-box iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    border: 0;
}

.contact-form-box .callback-card {
    margin: 0;
    box-shadow: var(--shadow);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .contact-details-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-map-box {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-card {
        padding: 30px 20px;
    }
    .grid-col-2 {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}
/* ==========================================================================
   Founder & CEO Page Styles
   ========================================================================== */

/* --- Infinite Scrolling Marquee --- */
.founder-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background: var(--secondary-color);
    padding: 18px 0;
    position: relative;
    border-bottom: 3px solid var(--primary-color);
}
.founder-marquee-container::before,
.founder-marquee-container::after {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    content: "";
    z-index: 2;
}
.founder-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--secondary-color), transparent);
}
.founder-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--secondary-color), transparent);
}
.founder-marquee-content {
    display: inline-block;
    animation: founder-marquee-scroll 30s linear infinite;
}
.founder-marquee-content span {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    padding: 0 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.founder-marquee-content span.separator {
    color: var(--primary-color);
    padding: 0;
}
@keyframes founder-marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* --- About Me / Intro Section --- */
.founder-intro-grid {
    display: grid;
    grid-template-columns: 0.90fr 1.10fr;
    gap: 50px;
    align-items: center;
}
.founder-photo-box {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    aspect-ratio: 3 / 4;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}
.founder-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}
.founder-photo-box:hover img {
    transform: scale(1.05);
}
.founder-bio h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}
.founder-bio h2 {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 800;
}
.founder-bio p {
    font-size: 15.5px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* --- Grid Cards for Expertise & Why Work With Me --- */
.founder-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.founder-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.founder-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.founder-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}
.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: transparent;
}
.founder-card:hover::after {
    opacity: 1;
}
.founder-card-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}
.founder-card h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}
.founder-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- Experience Timeline/Block --- */
.experience-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}
.experience-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* --- Consultation CTA Section --- */
.founder-cta-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e4f88 100%);
    border-radius: var(--border-radius-lg);
    padding: 60px 50px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}
.founder-cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 161, 205, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.founder-cta-card h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 800;
}
.founder-cta-card p {
    font-size: 17px;
    max-width: 800px;
    margin: 0 auto 35px auto;
    opacity: 0.9;
    line-height: 1.7;
}

/* --- Responsive Rules --- */
@media (max-width: 991px) {
    .founder-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .founder-photo-box {
        max-width: 450px;
        margin: 0 auto;
        aspect-ratio: 1/1.1;
    }
    .founder-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .founder-grid-3, .founder-grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .founder-cta-card {
        padding: 40px 25px;
    }
    .founder-cta-card h2 {
        font-size: 28px;
    }
    .founder-bio h2 {
        font-size: 28px;
    }
}

/* --- Founder Portfolio Grid --- */
.founder-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.portfolio-card-custom {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.portfolio-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}
.portfolio-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.portfolio-card-custom:hover .portfolio-card-image img {
    transform: scale(1.05);
}
.portfolio-card-info {
    padding: 30px;
}
.portfolio-card-info span {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.portfolio-card-info h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 10px 0 15px 0;
    font-weight: 700;
}
.portfolio-card-info p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 767px) {
    .founder-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- Dedicated Interactive Portfolio Page Styles --- */
.portfolio-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #00a1cd 100%);
    padding: 90px 0 70px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 161, 205, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.portfolio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #38bdf8;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.portfolio-showcase-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 161, 205, 0.18);
    border-color: var(--primary-color);
}

.browser-mockup-header {
    background: #1e293b;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.browser-dot.red { background: #ff5f56; }
.browser-dot.yellow { background: #ffbd2e; }
.browser-dot.green { background: #27c93f; }

.browser-address-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: monospace;
}

.portfolio-scroll-window {
    height: 380px;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
    cursor: pointer;
}

.portfolio-scroll-window img {
    width: 100%;
    height: auto;
    min-height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
}

.hover-scroll-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 5;
}

.portfolio-scroll-window:hover .hover-scroll-hint,
.portfolio-showcase-card:hover .hover-scroll-hint {
    opacity: 0;
    transform: translateY(10px);
}

.portfolio-card-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

.portfolio-card-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.portfolio-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.portfolio-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.portfolio-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.btn-visit-site {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-visit-site:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 161, 205, 0.3);
}

@media (max-width: 1024px) {
    .portfolio-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .portfolio-grid-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .portfolio-scroll-window {
        height: 300px;
    }
}

/* ==========================================
   ORGANIC SEO PORTFOLIO MARQUEE SECTION
   ========================================== */
.seo-portfolio-section {
    padding: 70px 0 90px 0;
    background: #f8fafc;
    color: #0f172a;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.seo-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    text-align: center;
}

.seo-section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Marquee Outer Container */
.seo-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

.seo-marquee-wrapper::before,
.seo-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.seo-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}

.seo-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}

/* Marquee Running Track */
.seo-marquee-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: seoMarqueeScroll 55s linear infinite;
    will-change: transform;
}

.seo-marquee-wrapper:hover .seo-marquee-track {
    animation-play-state: paused;
}

@keyframes seoMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Individual SEO Portfolio Card */
.seo-marquee-card {
    width: 580px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.seo-marquee-card:hover {
    border-color: #00a1cd;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 161, 205, 0.15);
}

.seo-logo-box-centered {
    height: 95px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 10px 15px;
    background: transparent;
    overflow: hidden;
    position: relative;
}

.seo-logo-box-centered img {
    max-height: 75px;
    max-width: 260px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.seo-client-title-centered {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 22px;
    font-family: inherit;
}

/* Keyword Ranking Table */
.seo-table-container {
    width: 100%;
}

.seo-ranking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
}

.seo-ranking-table th {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    background: #f1f5f9;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
}

.seo-ranking-table td {
    padding: 11px 16px;
    border: 1px solid #e2e8f0;
    color: #334155;
    background: #ffffff;
    vertical-align: middle;
}

.seo-ranking-table tr:nth-child(even) td {
    background: #fafafa;
}

.kw-title-cell {
    font-weight: 500;
    color: #1e293b;
    line-height: 1.4;
}

.rank-number-cell {
    font-weight: 700;
    color: #0f172a;
    font-size: 14px;
}

.google-verify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.google-verify-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   PORTFOLIO PAGE - SINGLE LINE CLIENT LOGOS TICKER
   ========================================== */
.portfolio-clients-section {
    padding: 60px 0 80px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

.portfolio-client-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 25px 0;
}

.portfolio-client-marquee-wrapper::before,
.portfolio-client-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.portfolio-client-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.portfolio-client-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.portfolio-client-marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: clientMarqueeScroll 40s linear infinite;
    will-change: transform;
}

.portfolio-client-marquee-wrapper:hover .portfolio-client-marquee-track {
    animation-play-state: paused;
}

@keyframes clientMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.portfolio-client-logo-box {
    width: 220px;
    height: 110px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.portfolio-client-logo-box:hover {
    border-color: #00a1cd;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 161, 205, 0.15);
}

.portfolio-client-logo-box img {
    max-height: 75px;
    max-width: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* ==========================================
   OUR TEAM & HOME PAGE TEAM STYLES
   ========================================== */
.team-hero {
    background: linear-gradient(135deg, #051937 0%, #004d7a 50%, #00879e 100%);
    padding: 110px 0 70px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.team-hero-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.team-hero-title span {
    color: #00e5ff;
}

.team-hero-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.team-breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-breadcrumb-pill a {
    color: #00e5ff;
    text-decoration: none;
    font-weight: 600;
}

/* Page Section Background */
.team-section-bg {
    padding: 70px 0;
    background-color: #f4f8fa;
}

.team-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e0f2fe;
    color: #0284c7;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-section-title-wrap {
    text-align: center;
    margin-bottom: 45px;
}

.team-section-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
}

.team-section-title span {
    color: #00a1cd;
}

/* Grids */
.team-grid-top-center {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.team-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.team-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 930px;
    margin: 0 auto 60px auto;
}

.team-grid-2-centered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 620px;
    margin: 0 auto;
}

/* Leadership Split Card */
.leadership-card-split {
    display: flex;
    max-width: 900px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 161, 205, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.35s ease;
}

.leadership-card-split:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 161, 205, 0.15);
    border-color: rgba(0, 161, 205, 0.4);
}

.leadership-img-col {
    flex: 0 0 340px;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.leadership-img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.5s ease;
}

.leadership-card-split:hover .leadership-img {
    transform: scale(1.04);
}

.leadership-content-col {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    flex: 1;
}

.leadership-bio {
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
}

.btn-founder-story {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00a1cd;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-founder-story:hover {
    background: #00779a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 161, 205, 0.3);
}

/* Card Styling Matching Screenshots */
.team-card-v2 {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.team-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 161, 205, 0.12);
    border-color: #00a1cd;
}

.team-card-v2-img-box {
    width: 100%;
    height: 280px;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-v2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.5s ease;
}

.team-card-v2:hover .team-card-v2-img {
    transform: scale(1.05);
}

/* Photo Coming Soon Placeholder */
.team-coming-soon-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    color: #0284c7;
    padding: 20px;
    text-align: center;
}

.team-coming-soon-box i {
    font-size: 54px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.team-coming-soon-box span {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0369a1;
}

.team-card-v2-body {
    padding: 20px 15px;
    background: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-card-v2-name {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.team-card-v2-role {
    font-size: 13px;
    font-weight: 700;
    color: #00a1cd;
}

/* Bottom Achievements Grid */
.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 65px;
    text-align: center;
}

.team-stat-item {
    background: #ffffff;
    padding: 30px 15px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.team-stat-item:hover {
    transform: translateY(-4px);
    border-color: #00a1cd;
}

.team-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
}

.team-stat-label {
    font-size: 11.5px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Media Queries */
@media (max-width: 991px) {
    .team-grid-4,
    .team-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .leadership-card-split {
        flex-direction: column;
    }
    .leadership-img-col {
        flex: 0 0 300px;
    }
    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .team-grid-4,
    .team-grid-3,
    .team-grid-2-centered {
        grid-template-columns: 1fr;
    }
    .team-stats-grid {
        grid-template-columns: 1fr;
    }
    .team-hero-title {
        font-size: 28px;
    }
}

/* ==========================================
   FOUNDER PAGE RUNNING WORK & PORTFOLIO MARQUEE
   ========================================== */
.founder-work-marquee-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f4f9fc 100%);
    overflow: hidden;
    position: relative;
}
.work-marquee-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
    margin-bottom: 25px;
}
.work-marquee-row::before,
.work-marquee-row::after {
    content: '';
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}
.work-marquee-row::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), transparent);
}
.work-marquee-row::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95), transparent);
}
.work-marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}
.work-marquee-track.left {
    animation: workMarqueeLeft 45s linear infinite;
}
.work-marquee-track.right {
    animation: workMarqueeRight 45s linear infinite;
}
.work-marquee-row:hover .work-marquee-track {
    animation-play-state: paused;
}
@keyframes workMarqueeLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes workMarqueeRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
.work-project-card {
    width: 380px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(24, 63, 114, 0.08);
    border: 1px solid rgba(24, 63, 114, 0.1);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.work-project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 161, 205, 0.22);
    border-color: var(--primary-color);
}
.work-card-img-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f8fafc;
}
.work-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.work-project-card:hover .work-card-img-wrap img {
    transform: scale(1.06);
}
.work-card-content {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    background: #ffffff;
}
.work-card-category {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}
.work-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.3;
}






