/* ============================================
   Global Styles & Typography
   ============================================ */

:root {
    --primary-color: #223F83;
    --secondary-color: #E18C26;
    --text-dark: #1D1919;
    --text-light: #666;
    --bg-light: #FFFFFF;
    --bg-cream: #FFF6EA;
    --border-color: rgba(34, 63, 131, 0.08);
    --shadow-sm: 0 4px 16px rgba(34, 63, 131, 0.08);
    --shadow-md: 0 8px 32px rgba(34, 63, 131, 0.1);
    --shadow-lg: 0 12px 48px rgba(34, 63, 131, 0.2);
    --shadow-xl: 0 16px 64px rgba(34, 63, 131, 0.3);
    /* Bootstrap Color Variables */
    --bs-primary: #223F83;
    --bs-secondary: #E18C26;
    --bs-danger: #ff6b6b;
    --bs-warning: #ffc107;
    --bs-success: #28a745;
    --bs-info: #17a2b8;
}

/* Disable animations during scroll for better performance */
html.is-scrolling * {
    animation-play-state: paused !important;
    transition: none !important;
}

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

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container-fluid {
    flex: 1;
}

/* ============================================
   Header Styles
   ============================================ */

header {
    background: linear-gradient(135deg, #223F83 0%, #1a2d5c 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(34, 63, 131, 0.15);
    transition: padding 0.2s ease, box-shadow 0.2s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(34, 63, 131, 0.25);
}


.nav-link.uhh-link:hover {
    color:#E18C26 !important;
    transition: all 0.2s ease-in-out;
}

.uhh-link.nav-link:hover::before{
    width:0px !important;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Lexend Deca', sans-serif;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon img{
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E18C26 0%, #ff9e4d 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
}

/* ============================================
   Hero Banner / Orbit Visual
   ============================================ */

.hero-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #4b1978 0%, #2b2a86 45%, #1a2d5c 100%);
    color: #fff;
}

.hero-visual {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.orbit-scene {
    position: relative;
    width: 100%;
    max-width: 680px;
    height: 480px;
    margin: 0 auto;
}

.orbit-rings {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 420px;
    height: 420px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.00) 40%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.hero-logo {
    max-width: 96px;
    height: auto;
}

.orbiter {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform-origin: center center;
    --d: 18s;
    animation: spin var(--d) linear infinite;
}

.orbiter .orbit-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(calc(var(--r, 160px)), -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(34,63,131,0.12);
    font-size: 20px;
}

/* Slight staggered reverse spin on some orbiters for visual variety */
.orbiter:nth-child(odd) { animation-direction: reverse; }

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

/* Subtle dotted radial background for visual depth */
.orbit-scene::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.6;
    pointer-events: none;
}

/* Reduce motion preference respect: simple fade-in only */
@media (prefers-reduced-motion: reduce) {
    .orbiter { animation: none !important; }
}

.hero-copy {
    padding: 30px 20px;
}

.hero-title {
    font-size: clamp(28px, 5.5vw, 56px);
    line-height: 1.03;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 28px;
}

.hero-cta {
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-visual { min-height: 380px; }
    .orbit-rings { width: 320px; height: 320px; }
}

@media (max-width: 767px) {
    .hero-banner { padding: 40px 0; }
    .hero-visual { order: -1; height: auto; min-height: 300px; }
    .orbit-scene { height: 300px; max-width: 100%; }
    .hero-copy { text-align: center; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin:auto 0px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: none;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E18C26 0%, #ff9e4d 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover, .nav-link:focus {
    color: #E18C26;
}


.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
}

/* ============================================
   Bootstrap Component Overrides
   ============================================ */

/* Custom Button Styles */

.btn-primary {
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(34, 63, 131, 0.2);
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a2d5c 0%, #3a4a7f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 63, 131, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #E18C26 0%, #ff9e4d 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(225, 140, 38, 0.2);
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #d67914 0%, #ff8c3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 140, 38, 0.3);
}

.btn-outline-primary {
    color: #223F83;
    border-color: #223F83;
}

.btn-outline-primary:hover {
    background-color: #223F83;
    border-color: #223F83;
}

/* Card Styles */
.card {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: none;
    border-radius: 12px;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card-header {
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    color: #FFFFFF;
    border: none;
}

/* Alert Styles */
.alert-primary {
    background-color: rgba(34, 63, 131, 0.1);
    border-color: #223F83;
    color: #223F83;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #28a745;
}

/* Badge Styles */
.badge-primary {
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
}

.badge-secondary {
    background: linear-gradient(135deg, #E18C26 0%, #ff9e4d 100%);
}

/* Form Controls */
.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: none;
    caret-color: transparent;
}

.form-control:focus,
.form-select:focus {
    border-color: #223F83;
    box-shadow: 0 0 0 0.2rem rgba(34, 63, 131, 0.15);
}

/* Input Group */
.input-group-text {
    background: linear-gradient(135deg, rgba(34, 63, 131, 0.05) 0%, rgba(225, 140, 38, 0.05) 100%);
    border-color: var(--border-color);
}

/* Navbar Customizations */
.navbar-brand {
    font-weight: 700;
    font-size: 20px;
}

.nav-pills .nav-link {
    color: #223F83;
    border-radius: 8px;
    transition: none;
}

.nav-pills .nav-link:hover {
    background-color: rgba(34, 63, 131, 0.1);
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
}

/* Pagination */
.pagination .page-link {
    color: #223F83;
    border-color: var(--border-color);
    transition: none;
}

.pagination .page-link:hover {
    background-color: rgba(34, 63, 131, 0.1);
    color: #223F83;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    border-color: #223F83;
}

/* Modal */
.modal-header {
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    color: #FFFFFF;
    border: none;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
}

/* Dropdown */
.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
}

.dropdown-item:hover {
    background-color: rgba(34, 63, 131, 0.05);
    color: #223F83;
}

.dropdown-item.active {
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
}

/* ============================================
   Footer Styles
   ============================================ */

footer {
    background: linear-gradient(135deg, #1a2d5c 0%, #223F83 100%);
    color: #FFFFFF;
    padding: 100px 40px 40px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    min-width: 0;
}

.footer-section:first-child {
    max-width: 350px;
}

.footer-section h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: #FFFFFF;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #E18C26 0%, #ff9e4d 100%);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1.6;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links a:hover {
    color: #E18C26;
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-description {
    font-size: 15px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, #E18C26 0%, #ff9e4d 100%);
    border-color: #E18C26;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 35px;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.8;
}

.footer-bottom a {
    color: #E18C26;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   Hero Section
   ============================================ */

 .portfolio-hero-section {
            padding: 0;
            background-image: 
                linear-gradient(135deg, rgba(34, 63, 131, 0.88) 0%, rgba(26, 45, 92, 0.78) 100%),
                url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
            height: 66.67vh;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

.portfolio-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 63, 131, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(225, 140, 38, 0.3) 0%, transparent 50%);
    z-index: 0;
}

.portfolio-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #32457c 0%, #223f8370 100%);
    opacity: 0.7;
    z-index: 0;
}

.portfolio-hero-section .container {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .portfolio-hero-section {
        background-attachment: scroll;
    }
}

.portfolio-hero-title {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 64px;
    color: #FFFFFF;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.portfolio-hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 36px;
    color: #FFFFFF;
    max-width: 100%;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Canadian Company Section
   ============================================ */

.canadian-company-section {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
}

.canadian-company-section .container {
    position: relative;
    z-index: 1;
}

.canadian-company-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.canadian-company-image {
    flex: 0 0 45%;
    position: relative;
}

.canadian-company-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(34, 63, 131, 0.15);
}

.canadian-company-content {
    flex: 1;
}

.canadian-company-header-label {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #223F83;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.canadian-company-title {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    color: #1D1919;
    margin-bottom: 30px;
}

.canadian-company-description {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #666;
    margin-bottom: 25px;
}

.canadian-company-no-offshore {
    background: linear-gradient(135deg, rgba(34, 63, 131, 0.05) 0%, rgba(225, 140, 38, 0.05) 100%);
    border-left: 4px solid #223F83;
    border-radius: 8px;
    padding: 25px 30px;
    margin: 30px 0;
}

.canadian-company-no-offshore strong {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #223F83;
    display: block;
    line-height: 30px;
    margin-bottom: 8px;
}

.canadian-company-no-offshore span {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #E18C26;
    display: block;
}

.canadian-company-beliefs-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1D1919;
    margin: 35px 0 25px 0;
}

.canadian-company-beliefs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.canadian-company-beliefs-list li {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 32px;
    color: #1D1919;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.canadian-company-beliefs-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(34, 63, 131, 0.3);
}

/* ============================================
   Technology Stack Section
   ============================================ */

.tech-stack-section {
    padding: 50px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 63, 131, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.tech-stack-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225, 140, 38, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.tech-stack-section .container {
    position: relative;
    z-index: 1;
}

.tech-carousel-wrapper {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.tech-carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(34, 63, 131, 0.1);
    border: 1px solid rgba(34, 63, 131, 0.08);
    transition: none;
    height: 180px;
}

.tech-carousel-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(34, 63, 131, 0.2);
    border-color: #223F83;
}

.tech-carousel-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.tech-carousel-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.tech-carousel-name {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1D1919;
    margin: 0;
}

/* Owl Carousel Override for Tech Stack */
.tech-stack-carousel.owl-carousel {
    position: relative;
}

.tech-stack-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.tech-stack-carousel .owl-item {
    padding: 0;
}

.tech-stack-carousel .owl-nav {
    display: none !important;
}

.tech-stack-carousel .owl-dots {
    display: none !important;
}

.tech-stack-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

/* ============================================
   Projects Section
   ============================================ */

.projects-section {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(34, 63, 131, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(225, 140, 38, 0.03) 0%, transparent 50%);
}

.projects-masonry-wrapper {
    column-count: 2;
    column-gap: 30px;
    width: 100%;
}

.project-masonry-item {
    break-inside: avoid;
    page-break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    vertical-align: top;
}

.project-masonry-item .project-card {
    margin-bottom: 0;
    height: auto;
}

@media (max-width: 991px) {
    .projects-masonry-wrapper {
        column-count: 1;
        column-gap: 0;
    }
    
    .project-masonry-item {
        margin-bottom: 30px;
    }
}

.section-title {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 52px;
    color: #223F83;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #32457c 0%, #223f8370 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #666;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Project Card */
.project-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(34, 63, 131, 0.1);
    border: 1px solid rgba(34, 63, 131, 0.08);
    transition: none;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.project-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

/* Picture element wrapper for responsive images */
.project-card-image-wrapper {
    display: block;
    width: 100%;
    line-height: 0;
}

.project-card-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

@media screen and (max-width: 768px) {
    .project-card-image-wrapper img {
        height: 300px;
        object-fit: contain;
        object-position: center;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }
}

.project-card-content {
    padding: 40px;
    flex: 1;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #32457c 0%, #223f8370 100%);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(34, 63, 131, 0.15);
}

.project-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.project-icon i {
    font-size: 32px;
    color: #FFFFFF;
}

.project-number {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #E18C26;
    margin-bottom: 15px;
    display: block;
}

.project-title {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #223F83;
    margin-bottom: 15px;
}

.project-sector {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-description {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: #1D1919;
    margin-bottom: 25px;
}

.project-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.project-features li {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
    color: #1D1919;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.project-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #223F83;
    font-weight: 700;
    font-size: 18px;
}

.project-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.project-stat {
    background: linear-gradient(360deg, #FFFFFF -11.8%, #FFF6EA 101.72%);
    border-radius: 10px;
    padding: 12px 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #223F83;
}

.project-result {
    background: linear-gradient(135deg, rgba(34, 63, 131, 0.05) 0%, rgba(225, 140, 38, 0.05) 100%);
    border-left: 4px solid #223F83;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.project-result-label {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.project-result-text {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #223F83;
    margin: 0;
}

/* Technology Badges */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tech-badge {
    background: #FFFFFF;
    border: 2px solid #223F83;
    border-radius: 8px;
    padding: 8px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #223F83;
    transition: none;
}

.tech-badge:hover {
    background: #223F83;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ============================================
   IT Services Section
   ============================================ */

.it-services-section {
    padding: 100px 0;
    background: linear-gradient(360deg, #FFFFFF -11.8%, #FFF6EA 101.72%);
    position: relative;
}

.services-table-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 50px;
        box-shadow: 0 12px 48px rgba(34, 63, 131, 0.2);
    border: 1px solid rgba(34, 63, 131, 0.08);
    margin-top: 50px;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.services-table thead {
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
}

.services-table thead th {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    padding: 20px;
    text-align: left;
}

.services-table thead th:first-child { border-top-left-radius: 12px; }
.services-table thead th:last-child { border-top-right-radius: 12px; }

.services-table thead { overflow: hidden; }

.services-table tbody tr {
    border-bottom: 1px solid rgba(34, 63, 131, 0.1);
    transition: none;
}

.services-table tbody tr:hover {
    background: linear-gradient(360deg, #FFFFFF -11.8%, #FFF6EA 101.72%);
}

.services-table tbody td {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1D1919;
    padding: 20px;
}

.services-table tbody td:first-child {
    font-weight: 700;
    color: #223F83;
}

/* ============================================
   Analytics Section
   ============================================ */

.analytics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF6EA 100%);
    position: relative;
    background-image: 
        radial-gradient(circle at 5% 10%, rgba(34, 63, 131, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 95% 90%, rgba(225, 140, 38, 0.05) 0%, transparent 40%);
}

.analytics-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 63, 131, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.analytics-section .container {
    position: relative;
    z-index: 1;
}

.analytics-card {
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 12px 48px rgba(34, 63, 131, 0.2);
    transition: none;
    height: 100%;
}

.analytics-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 64px rgba(34, 63, 131, 0.3);
}

.analytics-icon {
    font-size: 48px;
    margin-bottom: 25px;
    color: #E18C26;
}

.analytics-title {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
}

.analytics-description {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    opacity: 0.9;
}

/* ============================================
   Custom Solutions Section
   ============================================ */

.custom-solutions-section {
    padding: 100px 0;
    background: linear-gradient(360deg, #FFFFFF -11.8%, #FFF6EA 101.72%);
}

.solution-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 15px;
    box-shadow: 0 4px 16px rgba(34, 63, 131, 0.08);
    border-left: 4px solid #223F83;
    transition: none;
    display: flex;
    align-items: center;
}

.solution-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(34, 63, 131, 0.12);
}

.solution-item i {
    font-size: 24px;
    color: #223F83;
    margin-right: 20px;
}

.solution-item span {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1D1919;
}

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

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(225, 140, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 63, 131, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 52px;
    color: #FFFFFF;
    margin-bottom: 25px;
    text-align: center;
}

.cta-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.cta-partner-item {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 15px 25px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact {
    text-align: center;
}

.cta-contact-item {
    display: inline-block;
    margin: 0 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    transition: none;
}

.cta-contact-item:hover {
    color: #E18C26;
    transform: translateY(-2px);
}

.cta-contact-item i {
    margin-right: 10px;
    font-size: 20px;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .portfolio-hero-section {
        background-attachment: scroll;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .portfolio-hero-title {
        font-size: 36px;
        line-height: 44px;
    }

    .portfolio-hero-subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .section-title {
        font-size: 32px;
        line-height: 40px;
    }

    .project-card {
        padding: 30px 20px;
    }

    .services-table-card {
        padding: 30px 20px;
    }

    .services-table {
        font-size: 14px;
    }

    .services-table thead th,
    .services-table tbody td {
        padding: 15px 10px;
    }

    .cta-title {
        font-size: 32px;
        line-height: 40px;
    }

    .cta-subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .cta-contact-item {
        display: block;
        margin: 15px 0;
    }

    .canadian-company-section {
        padding: 80px 0;
    }

    .canadian-company-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .canadian-company-image {
        flex: 1;
        width: 100%;
    }

    .canadian-company-content {
        flex: 1;
    }

    .canadian-company-title {
        font-size: 32px;
        line-height: 40px;
    }

    .canadian-company-description {
        font-size: 16px;
        line-height: 28px;
    }

    .canadian-company-no-offshore {
        padding: 20px 25px;
        margin: 25px 0;
    }

    .canadian-company-no-offshore strong {
        font-size: 18px;
        line-height: 26px;
    }

    .canadian-company-no-offshore span {
        font-size: 15px;
    }

    .canadian-company-beliefs-title {
        font-size: 20px;
        margin: 30px 0 20px 0;
    }

    .canadian-company-beliefs-list li {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 12px;
    }

    .tech-carousel-item {
        padding: 20px 15px;
        height: 160px;
    }

    .tech-carousel-icon {
        width: 50px;
        height: 50px;
        font-size: 32px;
        margin-bottom: 10px;
    }

    .tech-carousel-name {
        font-size: 14px;
    }
}

/* ============================================
   Animations & Transitions
   ============================================ */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fadeInDown {
    animation: fadeInDown 0.6s ease-out forwards;
}

.fadeInLeft {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.fadeInRight {
    animation: fadeInRight 0.6s ease-out forwards;
}

.zoomIn {
    animation: zoomIn 0.6s ease-out forwards;
}

/* ============================================
   Utility Classes
   ============================================ */

.text-light {
    color: #FFFFFF;
}

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

.rounded {
    border-radius: 12px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================================
   Enhanced Button Styles
   ============================================ */

.cms-button-1,
a.cms-button-1 {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: none;
    box-shadow: 0 4px 12px rgba(34, 63, 131, 0.2);
    border: none;
    cursor: pointer;
}

.cms-button-1:hover,
a.cms-button-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 63, 131, 0.3);
    background: linear-gradient(135deg, #1a2d5c 0%, #3a4a7f 100%);
}

.cms-button-1 i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cms-button-1:hover i {
    transform: translateX(4px);
}

/* ============================================
   Enhanced Hover Effects
   ============================================ */

.project-card-content:hover {
    animation: subtle-lift 0.3s ease forwards;
}

@keyframes subtle-lift {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-4px);
    }
}

/* ============================================
   Enhanced Border Styling
   ============================================ */

.project-card {
    border-left: 3px solid transparent;
    background-clip: padding-box;
}

.project-card:hover {
    border-left-color: #223F83;
}

/* ============================================
   Text Shadow Enhancement
   ============================================ */

.portfolio-hero-title {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.project-title {
    position: relative;
}

.project-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #223F83, #E18C26);
    transition: width 0.3s ease;
}

.project-card:hover .project-title::before {
    width: 40%;
}

/* ============================================
   Enhanced Card Shadows
   ============================================ */

.analytics-card {
    position: relative;
    overflow: hidden;
}

.analytics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
    z-index: -1;
}

.analytics-card:hover::before {
    left: 100%;
}

/* ============================================
   Gradient Text Effect
   ============================================ */

.section-title {
    background: linear-gradient(135deg, #223F83 0%, #E18C26 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .section-title {
        color: #223F83;
        background: none;
    }
}

/* ============================================
   Enhanced Input & Form Elements
   ============================================ */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    border: 2px solid rgba(34, 63, 131, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Manrope', sans-serif;
    transition: none;
    caret-color: transparent;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #223F83;
    box-shadow: 0 0 0 3px rgba(34, 63, 131, 0.1);
}

/* ============================================
   Icon Animation
   ============================================ */

.project-icon {
    position: relative;
}

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

.project-card:hover .project-icon::before {
    width: 150px;
    height: 150px;
}

/* ============================================
   Enhanced List Styling
   ============================================ */

.project-features li {
    position: relative;
    transition: none;
}

.project-features li:hover {
    padding-left: 35px;
    color: #223F83;
}

.project-features li::before {
    animation: scaleIn 0.4s ease forwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* ============================================
   Badge Enhancement
   ============================================ */

.tech-badge {
    position: relative;
    overflow: hidden;
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.3s ease;
    z-index: -1;
}

.tech-badge:hover::before {
    left: 100%;
}

/* ============================================
   Table Enhancement
   ============================================ */

.services-table tbody tr {
    position: relative;
}

/* .services-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #223F83 0%, #E18C26 100%);
    transition: height 0.3s ease;
} */

.services-table tbody tr:hover::before {
    height: 100%;
}

/* ============================================
   Scroll Animation Classes
   ============================================ */

.fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.fadeInDown {
    animation: fadeInDown 0.6s ease-out forwards;
    opacity: 0;
}

.fadeInLeft {
    animation: fadeInLeft 0.6s ease-out forwards;
    opacity: 0;
}

.fadeInRight {
    animation: fadeInRight 0.6s ease-out forwards;
    opacity: 0;
}

.zoomIn {
    animation: zoomIn 0.6s ease-out forwards;
    opacity: 0;
}

/* CTA partner items - simplified (backdrop blur removed) */
.cta-partner-item {
    transition: none;
}

.cta-partner-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* ============================================
   Advanced Responsive Enhancements
   ============================================ */

@media (max-width: 1024px) {
    .canadian-company-wrapper {
        gap: 40px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .tech-carousel-item {
        height: 160px;
    }
    
    /* Footer tablet layout */
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 50px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .portfolio-hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .portfolio-hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .project-card-content {
        padding: 25px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .tech-carousel-item {
        padding: 15px 10px;
        height: 140px;
    }
    
    .project-stat {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    /* Header responsive */
    .navbar {
        padding: 0 20px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a2d5c 0%, #223F83 100%);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        display: none;
        box-shadow: 0 8px 24px rgba(34, 63, 131, 0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    footer {
        padding: 70px 30px 35px;
    }
    
    .footer-section:first-child {
        max-width: 100%;
    }
    
    .logo {
        font-size: 18px;
        gap: 8px;
    }
    
    .logo-icon img{
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-links a,
    .footer-description {
        font-size: 14px;
    }
    
    .footer-description {
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a2d5c 0%, #223F83 100%);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        display: none;
        box-shadow: 0 8px 24px rgba(34, 63, 131, 0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    /* Footer mobile layout */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section:first-child {
        grid-column: 1;
    }
    
    footer {
        padding: 60px 25px 30px;
    }
    
    .footer-section h3 {
        font-size: 17px;
    }
    
    .footer-links a,
    .footer-description {
        font-size: 14px;
    }
}

/* ============================================
   Back to Top Button
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #223F83 0%, #E18C26 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(34, 63, 131, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: none;
    z-index: 999;
    font-size: 20px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(34, 63, 131, 0.4);
}

/* ============================================
   Enhanced Design Elements
   ============================================ */

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E18C26 0%, #ff9e4d 100%);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: none;
    box-shadow: 0 6px 20px rgba(34, 63, 131, 0.25);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 63, 131, 0.35);
}

/* ============================================
   Parallax Effect
   ============================================ */

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (prefers-reduced-motion: reduce) {
    .parallax-section {
        background-attachment: scroll;
    }
}

/* ============================================
   Bootstrap Utility Extensions
   ============================================ */

/* Text Utilities */
.text-primary-gradient {
    background: linear-gradient(135deg, #223F83 0%, #E18C26 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient {
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shadow Utilities */
.shadow-sm-custom {
    box-shadow: var(--shadow-sm);
}

.shadow-md-custom {
    box-shadow: var(--shadow-md);
}

.shadow-lg-custom {
    box-shadow: var(--shadow-lg);
}

.shadow-xl-custom {
    box-shadow: var(--shadow-xl);
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #E18C26 0%, #ff9e4d 100%);
}

.bg-gradient-light {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF6EA 100%);
}

/* Hover Effects */
.hover-lift {
    transition: none;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.hover-scale {
    transition: none;
}

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

/* Border Utilities */
.border-primary-gradient {
    border-image: linear-gradient(135deg, #223F83 0%, #E18C26 100%) 1;
}

.border-rounded-lg {
    border-radius: 12px;
}

.border-rounded-xl {
    border-radius: 16px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
.proudly_canadian{
    width: auto !important;
}
 .proudly_canadian img{
                height:auto !important;
                width: 10% !important;
                margin-right: 20px;
            }
            .proudly_canadian_text{
                margin: auto 0px;
            }

            /* ============================================
               Health Hero (Concentric Rings + Labels) - Enhanced Design
               ============================================ */
            .health-hero-section {
                padding: 120px 0 100px 0;
                position: relative;
                overflow: hidden;
                /* Interactive gradient background variables */
                --mx: 50%;
                --my: 50%;
                --g1: 34,63,131; /* deep blue */
                --g2: 68,96,161; /* mid blue */
                --g3: 225,140,38; /* orange */
                /* background-image:
                    radial-gradient(800px circle at var(--mx) var(--my), rgba(var(--g1),0.25), rgba(var(--g2),0.15) 40%, rgba(255,255,255,0) 65%),
                    radial-gradient(600px circle at calc(100% - var(--mx)) calc(100% - var(--my)), rgba(var(--g3),0.15), rgba(255,255,255,0) 50%),
                    linear-gradient(180deg, rgba(255,250,248,1) 0%, rgba(255,252,250,0.98) 50%, rgba(255,250,248,1) 100%); */
                background-repeat: no-repeat;
                transition: background-position 300ms ease, background-image 400ms ease;
            }

            /* Decorative background elements */
            .health-hero-section::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -10%;
                width: 600px;
                height: 600px;
                /* background: radial-gradient(circle, rgba(225, 140, 38, 0.08) 0%, transparent 70%); */
                border-radius: 50%;
                pointer-events: none;
                animation: float 20s ease-in-out infinite;
            }

            .health-hero-section::after {
                content: '';
                position: absolute;
                bottom: -30%;
                left: -5%;
                width: 500px;
                height: 500px;
                /* background: radial-gradient(circle, rgba(34, 63, 131, 0.08) 0%, transparent 70%); */
                border-radius: 50%;
                pointer-events: none;
                animation: float 25s ease-in-out infinite reverse;
            }

            @keyframes float {
                0%, 100% { transform: translate(0, 0) scale(1); }
                50% { transform: translate(30px, -30px) scale(1.1); }
            }

            .health-hero-section .container-fluid {
                position: relative;
                z-index: 2;
            }

            .health-hero-left {
                position: relative;
                z-index: 2;
            }

            .health-hero-left .kicker-dashes {
                display: flex;
                gap: 12px;
                margin-bottom: 24px;
                align-items: center;
            }

            .health-hero-left .kicker-dashes span {
                display: block;
                width: 180px;
                height: 8px;
                margin-top: 5px;
                background: linear-gradient(90deg, #ffd8b3 0%, #E18C26 50%, #ff9e4d 100%);
                border-radius: 4px;
                box-shadow: 0 2px 8px rgba(225, 140, 38, 0.3);
                animation: shimmer 3s ease-in-out infinite;
            }

            @keyframes shimmer {
                0%, 100% { opacity: 1; transform: scaleX(1); }
                50% { opacity: 0.8; transform: scaleX(1.05); }
            }

            .health-title {
                font-size: clamp(36px, 5vw, 56px);
                line-height: 1.1;
                margin-bottom: 24px;
                font-weight: 800;
                letter-spacing: -0.5px;
            }

            .health-title .ht {
                color: #223F83;
                display: block;
                text-shadow: 0 2px 10px rgba(34, 63, 131, 0.1);
                margin-bottom: 8px;
            }

            .health-title .uhh {
                color: #E18C26;
                display: block;
                text-shadow: 0 2px 10px rgba(225, 140, 38, 0.15);
            }

            .health-desc {
                font-size: 18px;
                color: #444;
                line-height: 1.8;
                margin-bottom: 36px;
                max-width: 680px;
                font-weight: 500;
            }

            .health-cta {
                background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
                color: #fff;
                padding: 16px 32px;
                border-radius: 12px;
                display: inline-flex;
                align-items: center;
                gap: 12px;
                font-weight: 600;
                font-size: 16px;
                text-decoration: none;
                box-shadow: 0 6px 20px rgba(34, 63, 131, 0.25);
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .health-cta::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                transition: left 0.5s ease;
            }

            .health-cta:hover {
                transform: translateY(-3px);
                box-shadow: 0 10px 30px rgba(34, 63, 131, 0.35);
                background: linear-gradient(135deg, #1a2d5c 0%, #3a4a7f 100%);
            }

            .health-cta:hover::before {
                left: 100%;
            }

            .health-cta i {
                transition: transform 0.3s ease;
            }

            .health-cta:hover i {
                transform: translateX(5px);
            }

            .health-hero-right {
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 420px;
                position: relative;
            }

            .rings {
                position: relative;
                width: 480px;
                height: 480px;
            }

            .ring {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                border-radius: 50%;
                border: 2px solid transparent;
                animation: pulse-ring 4s ease-in-out infinite;
            }

            .ring:nth-child(2) {
                animation-delay: 0.5s;
            }

            .ring:nth-child(3) {
                animation-delay: 1s;
            }

            @keyframes pulse-ring {
                0%, 100% {
                    opacity: 1;
                    transform: translate(-50%, -50%) scale(1);
                }
                50% {
                    opacity: 0.7;
                    transform: translate(-50%, -50%) scale(1.02);
                }
            }

            .ring-3 {
                width: 480px;
                height: 480px;
                background: linear-gradient(135deg, rgba(65, 140, 255, 0.12) 0%, rgba(34, 63, 131, 0.08) 100%);
                border-color: rgba(34, 63, 131, 0.15);
            }

            .ring-2 {
                width: 360px;
                height: 360px;
                background: linear-gradient(135deg, rgba(65, 140, 255, 0.18) 0%, rgba(34, 63, 131, 0.12) 100%);
                border-color: rgba(34, 63, 131, 0.2);
            }

            .ring-1 {
                width: 240px;
                height: 240px;
                background: linear-gradient(135deg, rgba(65, 140, 255, 0.25) 0%, rgba(34, 63, 131, 0.18) 100%);
                border-color: rgba(34, 63, 131, 0.25);
            }

            .ring-center {
                width: 140px;
                height: 140px;
                background: linear-gradient(135deg, rgba(34, 63, 131, 0.35) 0%, rgba(68, 96, 161, 0.3) 100%);
                box-shadow: 0 12px 40px rgba(34, 63, 131, 0.2), inset 0 2px 10px rgba(255, 255, 255, 0.3);
                border: 3px solid rgba(255, 255, 255, 0.4);
                animation: center-pulse 3s ease-in-out infinite;
            }

            @keyframes center-pulse {
                0%, 100% {
                    box-shadow: 0 12px 40px rgba(34, 63, 131, 0.2), inset 0 2px 10px rgba(255, 255, 255, 0.3);
                }
                50% {
                    box-shadow: 0 16px 50px rgba(34, 63, 131, 0.3), inset 0 2px 10px rgba(255, 255, 255, 0.4);
                }
            }

            .ring-label {
                position: absolute;
                background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
                padding: 12px 18px;
                border-radius: 12px;
                box-shadow: 0 8px 26px rgba(34, 63, 131, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
                font-weight: 700;
                font-size: 13px;
                white-space: nowrap;
                color: #223F83;
                border: 1px solid rgba(34, 63, 131, 0.1);
                transition: all 0.3s ease;
                z-index: 10;
            }

            .ring-label:hover {
                /* No movement on hover - only subtle visual change */
                box-shadow: 0 8px 26px rgba(34, 63, 131, 0.2), 0 2px 8px rgba(0, 0, 0, 0.05);
                background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            }

            .ring-label.label-1 {
                right: 18%;
                top: 8%;
                animation: float-label 6s ease-in-out infinite;
            }

            .ring-label.label-2 {
                right: 8%;
                top: 30%;
                animation: float-label 7s ease-in-out infinite 0.5s;
            }

            .ring-label.label-3 {
                right: 12%;
                top: 54%;
                animation: float-label 6.5s ease-in-out infinite 1s;
            }

            .ring-label.label-4 {
                right: 26%;
                top: 72%;
                animation: float-label 7.5s ease-in-out infinite 1.5s;
            }

            .ring-label.label-5 {
                left: 18%;
                bottom: 14%;
                animation: float-label 6s ease-in-out infinite 2s;
            }

            .ring-label.label-6 {
                left: 30%;
                top: 58%;
                animation: float-label 7s ease-in-out infinite 2.5s;
            }

            .ring-label.label-7 {
                left: 8%;
                top: 32%;
                animation: float-label 6.5s ease-in-out infinite 3s;
            }

            @keyframes float-label {
                0%, 100% {
                    transform: translateY(0);
                }
                50% {
                    transform: translateY(-8px);
                }
            }

            @media (max-width: 991px) {
                .health-hero-section {
                    padding: 80px 0 60px 0;
                }

                .health-title {
                    font-size: 32px;
                }

                .health-desc {
                    font-size: 16px;
                }

                .health-cta {
                    padding: 14px 28px;
                    font-size: 15px;
                }

                .rings {
                    width: 320px;
                    height: 320px;
                }

                .ring-3 {
                    width: 320px;
                    height: 320px;
                }

                .ring-2 {
                    width: 240px;
                    height: 240px;
                }

                .ring-1 {
                    width: 160px;
                    height: 160px;
                }

                .ring-center {
                    width: 100px;
                    height: 100px;
                }

                .ring-label {
                    padding: 10px 14px;
                    font-size: 11px;
                }

                /* reduce parallax motion on small devices */
                .rings {
                    transform: none !important;
                }
            }

            @media (max-width: 576px) {
                .health-hero-section {
                    padding: 60px 0 40px 0;
                }

                .health-title {
                    font-size: 28px;
                }

                .health-desc {
                    font-size: 15px;
                    margin-bottom: 28px;
                }

                .rings {
                    width: 280px;
                    height: 280px;
                }

                .ring-3 {
                    width: 280px;
                    height: 280px;
                }

                .ring-2 {
                    width: 210px;
                    height: 210px;
                }

                .ring-1 {
                    width: 140px;
                    height: 140px;
                }

                .ring-center {
                    width: 80px;
                    height: 80px;
                }

                .ring-label {
                    padding: 8px 12px;
                    font-size: 10px;
                }
            }

/* ============================================
   IT Staffing Page Styles
   ============================================ */

/* Custom Hero Section */
.service-hero-section {
    padding: 140px 0 100px;
    background-image: 
        linear-gradient(135deg, rgba(34, 63, 131, 0.85) 0%, rgba(225, 140, 38, 0.75) 100%),
        url('../img/staffing.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.service-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 63, 131, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(225, 140, 38, 0.3) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.service-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #32457c 0%, #223f8370 100%);
    opacity: 0.7;
    z-index: 0;
}

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

@media (prefers-reduced-motion: reduce) {
    .service-hero-section {
        background-attachment: scroll;
    }
}

.service-hero-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 1.1;
}

.service-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-badge {
    display: inline-block;
    background: rgba(225, 140, 38, 0.2);
    border: 2px solid rgba(225, 140, 38, 0.4);
    color: #E18C26;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Cards - Modern Grid Layout */
.service-grid-section {
    padding: 100px 0;
    background: #F8F9FA;
}

.service-card-modern {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(34, 63, 131, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(34, 63, 131, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #223F83 0%, #E18C26 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(34, 63, 131, 0.15);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(34, 63, 131, 0.2);
}

.service-card-modern h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #223F83;
    margin-bottom: 15px;
}

.service-card-modern .service-sector {
    font-size: 13px;
    color: #E18C26;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.service-card-modern p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-modern ul {
    list-style: none;
    padding: 0;
}

.service-card-modern ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #444;
    font-size: 15px;
}

.service-card-modern ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E18C26;
    font-weight: 700;
}

/* Benefits Section - Alternating Layout */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.benefit-card {
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 12px 48px rgba(34, 63, 131, 0.25);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(225, 140, 38, 0.1) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(34, 63, 131, 0.35);
}

.benefit-card:hover::after {
    transform: rotate(45deg);
}

.benefit-icon {
    font-size: 56px;
    color: #E18C26;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* CTA Section - Different Style */
.service-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2d5c 0%, #223F83 100%);
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(225, 140, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(65, 140, 255, 0.1) 0%, transparent 50%);
}

.service-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-cta-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.service-cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.service-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: rgba(225, 140, 38, 0.3);
    border-color: #E18C26;
    transform: translateY(-3px);
}

.service-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-contact-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #E18C26 0%, #ff9e4d 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(225, 140, 38, 0.3);
    transition: all 0.3s ease;
}

.contact-us-btn a {
    text-decoration:none !important;
    color:#fff !important;
}

.service-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(225, 140, 38, 0.4);
    color: #FFFFFF;
}

.service-contact-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-contact-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .service-hero-section {
        padding: 100px 0 60px;
    }
    
    .service-hero-title {
        font-size: 32px;
    }
    
    .service-hero-subtitle {
        font-size: 18px;
    }
    
    .service-card-modern {
        padding: 30px;
    }
    
    .benefit-card {
        padding: 40px 30px;
    }
    
    .service-contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-contact-btn {
        justify-content: center;
    }
}

/* ============================================
   IT Strategy & Consulting Page Styles
   ============================================ */

/* Custom Hero Section - Different Style */
.strategy-hero-section {
    padding: 140px 0 120px;
    background-image: 
        linear-gradient(135deg, rgba(34, 63, 131, 0.85) 0%, rgba(225, 140, 38, 0.75) 100%),
        url('../img/consulting.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.strategy-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 63, 131, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(225, 140, 38, 0.3) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.strategy-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #32457c 0%, #223f8370 100%);
    opacity: 0.7;
    z-index: 0;
}

.strategy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) {
    .strategy-hero-section {
        background-attachment: scroll;
    }
}

.strategy-hero-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.1;
    text-align: center;
}

.strategy-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}

.strategy-hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.strategy-feature-item {
    text-align: center;
    flex: 0 0 auto;
}

.strategy-feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(225, 140, 38, 0.2);
    border: 2px solid rgba(225, 140, 38, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #E18C26;
}

.strategy-feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

/* Service Cards - Side by Side Layout */
.strategy-services-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.strategy-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 45px;
    height: 100%;
    box-shadow: 0 8px 32px rgba(34, 63, 131, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.strategy-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(34, 63, 131, 0.05) 0%, transparent 100%);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(34, 63, 131, 0.2);
    border-color: #223F83;
}

.strategy-card-number {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E18C26 0%, #ff9e4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(225, 140, 38, 0.3);
}

.strategy-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(34, 63, 131, 0.1) 0%, rgba(225, 140, 38, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 40px;
    color: #223F83;
    border: 2px solid rgba(34, 63, 131, 0.1);
}

.strategy-card h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #223F83;
    margin-bottom: 12px;
}

.strategy-card .strategy-sector {
    font-size: 13px;
    color: #E18C26;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.strategy-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.strategy-card ul {
    list-style: none;
    padding: 0;
}

.strategy-card ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

.strategy-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Approach Section - Timeline Style */
.approach-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.approach-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 6px 24px rgba(34, 63, 131, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border-left: 5px solid #223F83;
    position: relative;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -15px;
    width: 30px;
    height: 30px;
    background: #E18C26;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.approach-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 36px rgba(34, 63, 131, 0.15);
}

.approach-icon {
    font-size: 48px;
    color: #223F83;
    margin-bottom: 20px;
}

.approach-card h3 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #223F83;
    margin-bottom: 15px;
}

.approach-card p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* CTA Section - Different Style */
.strategy-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #223F83 0%, #1a2d5c 100%);
    position: relative;
    overflow: hidden;
}

.strategy-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 140, 38, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.strategy-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 140, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.strategy-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.strategy-cta-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.strategy-cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.7;
}

.strategy-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.strategy-cta-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 16px;
    color: #FFFFFF;
    text-align: center;
    transition: all 0.3s ease;
}

.strategy-cta-item:hover {
    background: rgba(225, 140, 38, 0.2);
    border-color: #E18C26;
    transform: translateY(-5px);
}

.strategy-cta-item i {
    font-size: 32px;
    color: #E18C26;
    margin-bottom: 10px;
}

.strategy-cta-item span {
    display: block;
    font-weight: 600;
    font-size: 15px;
}

.strategy-contact-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.strategy-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #E18C26 0%, #ff9e4d 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 17px;
    box-shadow: 0 8px 24px rgba(225, 140, 38, 0.3);
    transition: all 0.3s ease;
}

.strategy-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(225, 140, 38, 0.4);
    color: #FFFFFF;
}

.strategy-contact-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.strategy-contact-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .strategy-hero-section {
        padding: 100px 0 60px;
    }
    
    .strategy-hero-title {
        font-size: 32px;
    }
    
    .strategy-hero-subtitle {
        font-size: 18px;
    }
    
    .strategy-hero-features {
        gap: 20px;
    }
    
    .strategy-card {
        padding: 35px;
    }
    
    .strategy-cta-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-contact-wrapper {
        flex-direction: column;
    }
    
    .strategy-contact-btn {
        justify-content: center;
    }
            }
            
            
            
            
              /* Enhanced Hero Section Styles */
        .portfolio-hero-section {
            /*padding: 180px 0 150px;*/
            background-image: 
                linear-gradient(135deg, rgba(34, 63, 131, 0.88) 0%, rgba(26, 45, 92, 0.78) 100%),
                url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        
        .portfolio-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(135deg, rgba(34, 63, 131, 0.92) 0%, rgba(26, 45, 92, 0.82) 50%, rgba(225, 140, 38, 0.25) 100%),
                radial-gradient(circle at 20% 30%, rgba(225, 140, 38, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(34, 63, 131, 0.2) 0%, transparent 60%);
            z-index: 0;
        }
        
        .hero-container-wide {
            width: 100%;
            /*max-width: 1400px;*/
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }
        
        .hero-content-wrapper {
            position: relative;
            z-index: 2;
        }
        
        .hero-content-wrapper.text-left {
            text-align: left;
        }
        
        .portfolio-hero-title {
            font-family: 'Lexend Deca', sans-serif;
            font-weight: 800;
            font-size: 60px;
            line-height: 1.15;
            color: #FFFFFF;
            margin-bottom: 30px;
            text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
            text-align: left;
            letter-spacing: -0.5px;
        }
        
        .hero-punchline {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(22px, 3.2vw, 32px);
            font-weight: 400;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.98);
            margin-bottom: 50px;
            max-width: 95%;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
            text-align: left;
        }
        
        .hero-cta-buttons {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: flex-start;
            margin-top: 40px;
        }
        
        /* Services Grid Styles */
        .hero-services-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            padding-left: 20px;
        }
        
        .hero-services-grid .service-card-modern {
            background: rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 24px;
            padding: 25px 25px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        
        .hero-services-grid .service-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(225, 140, 38, 0.1) 0%, rgba(34, 63, 131, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .hero-services-grid .service-card-modern:hover {
            background: rgba(255, 255, 255, 0.22);
            border-color: rgba(225, 140, 38, 0.5);
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
        }
        
        .hero-services-grid .service-card-modern:hover::before {
            opacity: 1;
        }
        
        .hero-services-grid .service-card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #E18C26 0%, #ff9e4d 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: #FFFFFF;
            margin-bottom: 24px;
            box-shadow: 0 10px 30px rgba(225, 140, 38, 0.45);
            position: relative;
            z-index: 1;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .hero-services-grid .service-card-modern:hover .service-card-icon {
            transform: scale(1.15) rotate(8deg);
            box-shadow: 0 15px 45px rgba(225, 140, 38, 0.6);
        }
        
        .hero-services-grid .service-card-modern h3 {
            font-family: 'Lexend Deca', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        
        .hero-services-grid .service-card-modern p {
            font-family: 'Manrope', sans-serif;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.65;
            position: relative;
            z-index: 1;
        }
        
        .btn-hero-primary,
        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            font-family: 'Lexend Deca', sans-serif;
            font-size: 17px;
            font-weight: 700;
            border-radius: 14px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
        }
        
        .btn-hero-primary {
            background: linear-gradient(135deg, #E18C26 0%, #ff9e4d 100%);
            color: #FFFFFF;
        }
        
        .btn-hero-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 40px rgba(225, 140, 38, 0.5);
            color: #FFFFFF;
        }
        
        .btn-hero-secondary {
            background: rgba(255, 255, 255, 0.18);
            color: #FFFFFF;
            border: 2px solid rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(15px);
        }
        
        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.28);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
            color: #FFFFFF;
        }
        
        
        @media (max-width: 1200px) {
            .hero-container-wide {
                max-width: 100%;
                padding: 0 30px;
            }
        }
        
        @media (max-width: 991px) {
            .portfolio-hero-section {
                padding: 140px 0 120px;
                min-height: auto;
            }
            
            .hero-container-wide {
                padding: 0 20px;
            }
            
            .hero-services-grid {
                margin-top: 50px;
                padding-left: 0;
            }
        }
        
        @media (max-width: 768px) {
            .portfolio-hero-section {
                padding: 120px 0 100px;
                background-attachment: scroll;
            }
            
            .hero-container-wide {
                padding: 0 15px;
            }
            
            .hero-content-wrapper.text-left {
                text-align: center;
            }
            
            .portfolio-hero-title,
            .hero-punchline {
                text-align: center;
            }
            
            .hero-cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                max-width: 320px;
                justify-content: center;
            }
            
            .hero-services-grid {
                grid-template-columns: 1fr;
                gap: 18px;
                padding-left: 0;
            }
            
            .hero-services-grid .service-card-modern {
                padding: 30px 25px;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            .portfolio-hero-section {
                background-attachment: scroll;
            }
        }



/*About us page style start*/
  /* IT Team simple grid */
         .it-team-section {
            padding: 70px 0 40px;
            background: #ffffff;
        }

        .it-team-title {
            font-size: 32px;
            font-weight: 700;
            color: #1c1c1c;
            text-align: center;
            margin-bottom: 40px;
        }

        .it-team-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .it-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .it-team-card {
            background: white;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .it-team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #073da1 0%, #E18C26 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .it-team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(7, 61, 161, 0.15);
        }

        .it-team-card:hover::before {
            transform: scaleX(1);
        }

        .it-team-card-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 20px;
        }

        .it-team-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: linear-gradient(135deg, #073da1 0%, #223F83 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(7, 61, 161, 0.2);
        }

        .it-team-icon-wrapper i {
            font-size: 28px;
            color: white;
        }

        .it-team-card-header-content {
            flex: 1;
        }

        .it-team-name {
            font-family: 'Lexend Deca', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #073da1;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .it-team-role {
            font-family: 'Manrope', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #E18C26;
            line-height: 1.4;
            margin-bottom: 0;
        }

        .it-team-card .cms-content {
            font-family: 'Manrope', sans-serif;
            font-size: 15px;
            line-height: 1.7;
            color: #555;
            margin-top: 0;
            flex-grow: 1;
        }

        .it-team-card-footer {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .it-team-expertise {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .it-expertise-badge {
            background: #f0f4ff;
            color: #073da1;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            font-family: 'Manrope', sans-serif;
        }

        /* Role-specific icon colors */
        .it-team-card:nth-child(1) .it-team-icon-wrapper {
            background: linear-gradient(135deg, #073da1 0%, #223F83 100%);
        }

        .it-team-card:nth-child(2) .it-team-icon-wrapper {
            background: linear-gradient(135deg, #E18C26 0%, #FFA94D 100%);
        }

        .it-team-card:nth-child(3) .it-team-icon-wrapper {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        }

        .it-team-card:nth-child(4) .it-team-icon-wrapper {
            background: linear-gradient(135deg, #6f42c1 0%, #9d5cd9 100%);
        }

        .it-team-card:nth-child(5) .it-team-icon-wrapper {
            background: linear-gradient(135deg, #dc3545 0%, #ff6b7a 100%);
        }

        @media (max-width: 992px) {
            .it-team-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .it-team-section {
                padding: 60px 0;
            }

            .it-team-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 30px;
            }

            .it-team-card {
                padding: 25px 20px;
            }

            .it-team-name {
                font-size: 20px;
            }

            .it-team-icon-wrapper {
                width: 50px;
                height: 50px;
            }

            .it-team-icon-wrapper i {
                font-size: 24px;
            }
        }
        
        /* About Inner Banner Styles */
        .about-inner-banner {
            padding: 120px 0 80px;
            background-image: 
                linear-gradient(135deg, rgba(34, 63, 131, 0.88) 0%, rgba(26, 45, 92, 0.78) 100%),
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
        }
        
        .about-inner-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(225, 140, 38, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(34, 63, 131, 0.2) 0%, transparent 60%);
            z-index: 0;
        }
        
        .about-banner-content {
            position: relative;
            z-index: 2;
        }
        
        .about-banner-title {
            font-family: 'Lexend Deca', sans-serif;
            font-weight: 800;
            font-size: clamp(36px, 5vw, 56px);
            line-height: 1.2;
            color: #FFFFFF;
            margin-bottom: 20px;
            text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
        }
        
        .about-banner-subtitle {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(18px, 2.5vw, 24px);
            font-weight: 400;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
        }
        
        @media (max-width: 768px) {
            .about-inner-banner {
                padding: 100px 0 60px;
                background-attachment: scroll;
            }
            
            .about-banner-title {
                font-size: clamp(28px, 6vw, 40px);
                margin-bottom: 15px;
            }
            
            .about-banner-subtitle {
                font-size: clamp(16px, 3vw, 20px);
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            .about-inner-banner {
                background-attachment: scroll;
            }
        }
        
        /* Company Overview Section Styles */
        .company-overview-section {
            padding: 100px 0;
            background: #FFFFFF;
        }
        
        .overview-title {
            font-family: 'Lexend Deca', sans-serif;
            font-size: clamp(42px, 6vw, 64px);
            font-weight: 800;
            color: #223F83;
            margin-bottom: 20px;
            line-height: 1.2;
            -webkit-text-stroke: 1px rgba(34, 63, 131, 0.2);
        }
        
        .overview-subtitle {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(20px, 2.5vw, 24px);
            font-weight: 600;
            color: #4A5568;
            margin-bottom: 25px;
            line-height: 1.5;
        }
        
        .overview-text {
            font-family: 'Manrope', sans-serif;
            font-size: 17px;
            line-height: 1.8;
            color: #4A5568;
            margin-bottom: 20px;
        }
        
        .overview-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }
        
        .overview-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .overview-image-wrapper:hover .overview-image {
            transform: scale(1.05);
        }
        
        .btn-overview-primary {
            display: inline-block;
            padding: 18px 40px;
            font-family: 'Lexend Deca', sans-serif;
            font-size: 18px;
            font-weight: 700;
            background: #E18C26;
            color: #FFFFFF;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .btn-overview-primary:hover {
            background: #d17a1a;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(225, 140, 38, 0.4);
            color: #FFFFFF;
        }
        
        /* Local Company Section Styles */
        .local-company-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #223F83 0%, #1a2d5c 100%);
            color: #FFFFFF;
        }
        
        .local-title {
            font-family: 'Lexend Deca', sans-serif;
            font-size: clamp(36px, 5vw, 48px);
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 25px;
        }
        
        .local-text {
            font-family: 'Manrope', sans-serif;
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }
        
        .local-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }
        
        .local-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .local-image-wrapper:hover .local-image {
            transform: scale(1.05);
        }
        
        .btn-local-primary {
            display: inline-block;
            padding: 18px 40px;
            font-family: 'Lexend Deca', sans-serif;
            font-size: 18px;
            font-weight: 700;
            background: #E18C26;
            color: #FFFFFF;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .btn-local-primary:hover {
            background: #d17a1a;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(225, 140, 38, 0.4);
            color: #FFFFFF;
        }
        
        /* Mission & Vision Section Styles */
        .mission-vision-section {
            padding: 100px 0;
            background: #FFFFFF;
        }
        
        .mv-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }
        
        .mv-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .mv-image-wrapper:hover .mv-image {
            transform: scale(1.05);
        }
        
        .mv-content {
            padding-left: 40px;
        }
        
        .mv-main-title {
            font-family: 'Lexend Deca', sans-serif;
            font-size: clamp(32px, 4vw, 42px);
            font-weight: 800;
            color: #223F83;
            margin-bottom: 40px;
            letter-spacing: 2px;
        }
        
        .mv-item {
            margin-bottom: 35px;
        }
        
        .mv-title {
            font-family: 'Lexend Deca', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #223F83;
            margin-bottom: 15px;
        }
        
        .mv-description {
            font-family: 'Manrope', sans-serif;
            font-size: 16px;
            line-height: 1.8;
            color: #4A5568;
            margin: 0;
        }
        
        /* Value Proposition Section Styles */
        .value-proposition-section {
            padding: 100px 0;
            background: #FFFFFF;
        }
        
        .value-title {
            font-family: 'Lexend Deca', sans-serif;
            font-size: clamp(42px, 6vw, 64px);
            font-weight: 800;
            color: #223F83;
            margin-bottom: 30px;
            line-height: 1.2;
            -webkit-text-stroke: 1px rgba(34, 63, 131, 0.2);
        }
        
        .value-text {
            font-family: 'Manrope', sans-serif;
            font-size: 17px;
            line-height: 1.8;
            color: #4A5568;
            margin-bottom: 20px;
        }
        
        .value-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }
        
        .value-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .value-image-wrapper:hover .value-image {
            transform: scale(1.05);
        }
        
        /* Process & Capabilities Section Styles */
        .process-capabilities-section {
            padding: 100px 0;
            background: #FFFFFF;
        }
        
        .process-title {
            font-family: 'Lexend Deca', sans-serif;
            font-size: clamp(42px, 6vw, 64px);
            font-weight: 800;
            color: #223F83;
            margin-bottom: 30px;
            line-height: 1.2;
            -webkit-text-stroke: 1px rgba(34, 63, 131, 0.2);
        }
        
        .process-text {
            font-family: 'Manrope', sans-serif;
            font-size: 17px;
            line-height: 1.8;
            color: #4A5568;
            margin-bottom: 20px;
        }
        
        .process-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }
        
        .process-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .process-image-wrapper:hover .process-image {
            transform: scale(1.05);
        }
        
        /* Technologies Section Styles */
        .technologies-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
        }
        
        .tech-item-card {
            background: #FFFFFF;
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .tech-item-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(34, 63, 131, 0.15);
            border-color: #E18C26;
        }
        
        .tech-item-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(34, 63, 131, 0.1) 0%, rgba(225, 140, 38, 0.1) 100%);
            border-radius: 16px;
            transition: all 0.3s ease;
        }
        
        .tech-item-card:hover .tech-item-icon {
            background: linear-gradient(135deg, #223F83 0%, #E18C26 100%);
            transform: scale(1.1);
        }
        
        .tech-item-icon i {
            font-size: 36px;
            color: #223F83;
            transition: all 0.3s ease;
        }
        
        .tech-item-card:hover .tech-item-icon i {
            color: #FFFFFF;
        }
        
        .tech-item-name {
            font-family: 'Lexend Deca', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #223F83;
            margin: 0;
        }
        
        @media (max-width: 991px) {
            .company-overview-section,
            .local-company-section,
            .mission-vision-section,
            .value-proposition-section,
            .process-capabilities-section {
                padding: 80px 0;
            }
            
            .mv-content {
                padding-left: 0;
                margin-top: 40px;
            }
            
            .technologies-section {
                padding: 80px 0;
            }
        }
        
        @media (max-width: 768px) {
            .company-overview-section,
            .local-company-section,
            .mission-vision-section,
            .value-proposition-section,
            .process-capabilities-section {
                padding: 60px 0;
            }
            
            .overview-title,
            .value-title,
            .process-title {
                font-size: clamp(32px, 6vw, 48px);
            }
            
            .local-title {
                font-size: clamp(28px, 5vw, 40px);
            }
            
            .mv-main-title {
                font-size: clamp(28px, 4vw, 36px);
            }
            
            .overview-text,
            .local-text,
            .value-text,
            .process-text,
            .mv-description {
                font-size: 16px;
            }
            
            .mv-content {
                padding-left: 0;
                margin-top: 30px;
            }
            
            .technologies-section {
                padding: 60px 0;
            }
            
            .tech-item-card {
                padding: 30px 20px;
            }
            
            .tech-item-icon {
                width: 60px;
                height: 60px;
            }
            
            .tech-item-icon i {
                font-size: 30px;
            }
            
            .tech-item-name {
                font-size: 16px;
            }
        }
        
        /* About Contact Section Styles */
        .about-contact-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
            position: relative;
            overflow: hidden;
        }
        
        .about-contact-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(34, 63, 131, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .about-contact-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(225, 140, 38, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .about-contact-content {
            position: relative;
            z-index: 2;
        }
        
        .contact-icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #223F83 0%, #4460a1cf 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(34, 63, 131, 0.3);
        }
        
        .contact-icon-wrapper i {
            font-size: 36px;
            color: #FFFFFF;
        }
        
        .about-contact-title {
            font-family: 'Lexend Deca', sans-serif;
            font-size: clamp(32px, 4vw, 42px);
            font-weight: 700;
            color: #223F83;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .about-contact-description {
            font-family: 'Manrope', sans-serif;
            font-size: 18px;
            line-height: 1.7;
            color: #4A5568;
            margin-bottom: 35px;
        }
        
        .contact-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Manrope', sans-serif;
            font-size: 16px;
            color: #223F83;
            font-weight: 600;
        }
        
        .contact-feature-item i {
            color: #E18C26;
            font-size: 20px;
        }
        
        .about-contact-cards {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-card-item {
            background: #FFFFFF;
            border-radius: 16px;
            padding: 25px 30px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .contact-card-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 30px rgba(34, 63, 131, 0.15);
            border-left-color: #E18C26;
        }
        
        .contact-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(34, 63, 131, 0.1) 0%, rgba(225, 140, 38, 0.1) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-card-icon i {
            font-size: 24px;
            color: #223F83;
        }
        
        .contact-card-content {
            flex: 1;
        }
        
        .contact-card-content h4 {
            font-family: 'Lexend Deca', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #223F83;
            margin-bottom: 8px;
        }
        
        .contact-card-content a {
            font-family: 'Manrope', sans-serif;
            font-size: 16px;
            color: #4A5568;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-card-content a:hover {
            color: #E18C26;
        }
        
        .contact-card-content p {
            font-family: 'Manrope', sans-serif;
            font-size: 15px;
            color: #4A5568;
            margin: 0;
            line-height: 1.6;
        }
        
        .contact-card-cta {
            margin-top: 10px;
        }
        
        .btn-contact-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            font-family: 'Lexend Deca', sans-serif;
            font-size: 18px;
            font-weight: 700;
            background: linear-gradient(135deg, #E18C26 0%, #ff9e4d 100%);
            color: #FFFFFF;
            border-radius: 14px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(225, 140, 38, 0.35);
            width: 100%;
            justify-content: center;
        }
        
        .btn-contact-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 40px rgba(225, 140, 38, 0.5);
            color: #FFFFFF;
        }
        
        @media (max-width: 991px) {
            .about-contact-section {
                padding: 80px 0;
            }
            
            .about-contact-cards {
                margin-top: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .about-contact-section {
                padding: 60px 0;
            }
            
            .contact-icon-wrapper {
                width: 70px;
                height: 70px;
                margin-bottom: 25px;
            }
            
            .contact-icon-wrapper i {
                font-size: 30px;
            }
            
            .about-contact-title {
                font-size: clamp(28px, 5vw, 36px);
            }
            
            .about-contact-description {
                font-size: 16px;
            }
            
            .contact-card-item {
                padding: 20px;
                flex-direction: column;
                text-align: center;
            }
            
            .contact-card-item:hover {
                transform: translateY(-5px);
            }
            
            .contact-card-icon {
                width: 50px;
                height: 50px;
            }
            
            .contact-card-icon i {
                font-size: 20px;
            }
        }
/*About us page style end*/