/* ========================================
   BlueHippo.io Custom Styles - Bootstrap 5
   ======================================== */

/* Color Variables */
:root {
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --primary-light: #3388dd;
    --cyan-color: #06b6d4;
    --cyan-dark: #0891b2;
    --blue-gradient-start: #1d4ed8;
    --blue-gradient-end: #1e40af;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
	
	
            --primary-purple: #6E2AE7;
            --primary-indigo: #4732D9;
            --primary-fuchsia: #AB1DDD;
            --purple-50: #faf5ff;
            --purple-100: #f3e8ff;
            --purple-600: #7c3aed;
            --indigo-600: #6366f1;
            --indigo-700: #4338ca;
            --fuchsia-6000: #d946ef;
	
	  --background: #ffffff;
      --foreground: #1e293b;
      --primary: #0066cc;
	  --primary-foreground: #ffffff;
	  --muted: #f1f5f9;
	  --muted-foreground: #64748b;
	  --border: #e2e8f0;
	  --card: #ffffff;
	  --input-background: #f8fafc;
	
	
	  --blue-primary: #2563eb;
      --blue-secondary: #1d4ed8;
      --blue-dark: #1e3a8a;
      --gray-light: #f8f9fa;
      --text-dark: #1f2937;
      --text-muted: #6b7280;
	
	   --purple-700: #7e22ce;
       --violet-600: #7c3aed;
       --fuchsia-600: #c026d3;
       --pink-400: #f472b6;
       --pink-100: #fbcfe8;
       --blue-600: #2563eb;
       --blue-700: #1d4ed8;
       --cyan-400: #22d3ee;
       --cyan-500: #06b6d4;
	
	--primary-greenii: #76EFCA;
    --primary-indigo-blue: #0065F1;
    --primary-fuchsia: #AB1DDD;
	 --navy-dark1: #0a1628;
     --navy-medium11: #0f2847;
     --blue-primary: #3b82f6;
	--blue-light: #60a5fa;
    --cyan-primary: #06b6d4;
}

  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--foreground);
            background: var(--background);
            line-height: 1.5;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        /* Smooth transitions */
        * {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none;
        }

a { text-decoration: none;}




/*new fonts start*/

/*new fonts end*/
/* ========================================
   Navigation Styles
   ======================================== */
.navbar {
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
	padding: 12px;
}

.navbar-brand img {
    transition: var(--transition-fast);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    transition: var(--transition-fast);
    font-weight: 500;
    color: #334155 !important;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-item .active {
    color: var(--primary-color) !important;
}
.nav-item .active::after {
    width: 80%;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, #1559F7 0%, #1d4ed8 50%, #0833a7 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-decoration::before,
.hero-bg-decoration::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.hero-bg-decoration::before {
    width: 600px;
    height: 600px;
    background: #60a5fa;
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.hero-bg-decoration::after {
    width: 800px;
    height: 800px;
    background: #3b82f6;
    bottom: -300px;
    left: -300px;
    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);
    }
}

/* Badge Pill */
.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    color: #e0f2fe;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out;
}

.badge-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Text Colors for Hero */
.text-white-subtle {
    color: #e0f2fe !important;
}

/* Gradient Cyan Button */
.btn-gradient-cyan {
    background: linear-gradient(135deg, #00cfef 0%, #44bdda 100%);
    color: white;
    border: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-gradient-cyan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-gradient-cyan:hover {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.5);
    color: white;
}

.btn-gradient-cyan:hover::before {
    left: 100%;
}

/* Glass Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    color: white;
}

/* Abstract Design */
.abstract-design {
    animation: fadeInRight 0.8s ease-out;
}

.abstract-design svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ========================================
   Stats Section
   ======================================== */
.stat-card {
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

.stat-card h3 {
    transition: var(--transition-fast);
	font-size: 3rem;
}

.stat-card:hover h3 {
    transform: scale(1.1);
}

.stat-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-weight: 600;
}

/* Gradient Badges */
.bg-gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.bg-gradient-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.bg-gradient-indigo {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.bg-gradient-violet {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Shadow Hover */
.shadow-hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.shadow-hover:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
	background: #F2FAFC;
}
.display-5, .display-4 { font-weight: 400 !important;}

/* ========================================
   Feature Section
   ======================================== */
.feature-icon-box {
    transition: var(--transition-smooth);
}

.feature-icon-box:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    transition: var(--transition-smooth);
    width: fit-content;
}

.feature-icon-box:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Floating Badge */
.floating-badge {
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   Client Logos
   ======================================== */
.client-logo-box {
    transition: var(--transition-smooth);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-box img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.client-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.grayscale {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.client-logo-box:hover .grayscale {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonial-card {
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
}

/* ========================================
   CTA Section
   ======================================== */
.bg-whitete{ background:#fff !important;}
.bg-gradient-primary {
    background: linear-gradient(135deg, #1459F8 0%, #1459F8 50%, #2563eb 100%) !important;
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

/* ========================================
   Background Gradients
   ======================================== */
.bg-gradient-light {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* ========================================
   Footer
   ======================================== */
.hover-link {
    transition: var(--transition-fast);
}

.hover-link:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.hover-icon {
    transition: var(--transition-smooth);
    display: inline-block;
}

.hover-icon:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px) scale(1.1);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   Utility Classes
   ======================================== */
.tracking-wide {
    letter-spacing: 0.1em;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .display-2 {
        font-size: 3rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .display-2 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

/* ========================================
   Bootstrap Button Overrides
   ======================================== */
.btn {
    transition: var(--transition-smooth);
    font-weight: 600;
	text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ========================================
   Loading States
   ======================================== */
.btn i {
    transition: var(--transition-fast);
}

.btn:hover i {
    transform: translateX(3px);
}

/* ========================================
   Card Enhancements
   ======================================== */
.card {
    border-radius: 1rem;
    overflow: hidden;
}

/* ========================================
   Additional Section Styles
   ======================================== */

/* Blue Light Background */
.bg-blue-light {
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.bg-blue-subtle {
    background: #eff6ff;
}

/* Benefit Box */
.benefit-box {
    transition: var(--transition-smooth);
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-color) !important;
}

.icon-sm {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specialization Cards */
.spec-card {
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.spec-card:hover {
    transform: translateY(-10px);
}

.spec-card .spec-icon {
    transition: var(--transition-smooth);
}

.spec-card:hover .spec-icon {
    transform: scale(1.1) rotate(5deg);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.bg-gradient-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.bg-gradient-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

/* Industry Cards */
.industry-card {
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color) !important;
}

.industry-icon {
    transition: var(--transition-smooth);
    width: fit-content;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Mission Section Background */
.mission-bg-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.1;
}

.mission-bg-decoration::before,
.mission-bg-decoration::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.mission-bg-decoration::before {
    width: 400px;
    height: 400px;
    background: white;
    top: 80px;
    right: 80px;
}

.mission-bg-decoration::after {
    width: 400px;
    height: 400px;
    background: #60a5fa;
    bottom: 80px;
    left: 80px;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

.icon-wrapper-white {
    width: fit-content;
}

/* CTA Cards */
.cta-card1 {
    transition: var(--transition-smooth);
}

.cta-card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
	
}

.cta-bg-circle,
.cta-bg-circle-white {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    transition: var(--transition-smooth);
}

.cta-bg-circle {
    background: #eff6ff;
    top: -100px;
    right: -100px;
}

.cta-bg-circle-white {
    background: rgba(255, 255, 255, 0.1);
    top: -100px;
    right: -100px;
}

.cta-card1:hover .cta-bg-circle,
.cta-card1:hover .cta-bg-circle-white {
    transform: scale(1.5);
}

.icon-lg {
    width: fit-content;
}

/* Purple Background Utility */
.bg-purple {
    background: #9333ea;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


/*Lakshman new css start*/
.snbx button{text-decoration: none; font-size: 14px;}
.newmanin-menu li a{font-size: 15px; font-weight: 500;}
.hero-section h1 {font-weight: 400 !important; color: #fff}
.hero-section h2{font-weight: 400 !important; font-size: 42px; color: #dbeafe} 
.hero-section p { font-weight: 400 !important; font-size: 20px; line-height: 34px;padding: 0 0px 0 0 ;}
.hero-section button { padding: 11px 27px !important; font-size: 16px;}
.border-less-bx h2 {font-weight: 400 !important;font-size: 46px}
.latet {font-weight: 400; padding: 11px 16px !important; border-radius: 16px !important; font-size: 14px; background: #e2e8f0;}
.border-less-bx p {font-size: 20px; font-weight: 400; color: #64748b !important;}
.contbx span {padding: 9px 18px; border-radius: 16px; font-size: 12px;}
.contbx p {font-size: 14px; }
.border-less-bx h3 {font-weight: 400;}
.workwithbx{ background: #F9FBFD !important;}
.workwithbx h2 {font-weight: 400 !important; font-size: 51px;}
.workwithbx p { font-size: 19px; font-weight: 400; color: #64748b !important;}
.workwithbx .icon-wrapper {padding: 5px 10px !important;font-size: 14px !important;}
.workwithbx h5 {font-size: 16px;}
.workwithbx .feature-icon-box p{font-size: 16px !important;}
.workwithbx .feature-icon-box i{font-size: 24px !important;}
.latet {font-weight: 500; padding: 11px 16px !important; border-radius: 16px !important; font-size: 14px;  background: #0d6efd1a !important;}
.workwithbx button {padding: 7px 25px !important; font-size: 16px; border-radius: 5px;}
.your-skils h2 {font-weight: 400 !important; font-size: 52px;}
.your-skils h5 { font-size: 15px;}
.your-skils .benefit-box p { font-size: 14px !important;}
.your-skils p { font-size: 19px; font-weight: 400; color: #64748b !important;}
.your-skils .benefit-box i{font-size: 24px !important;}
.your-skils .bg-blue-subtle {background: #dbeafe;}
.your-skils button {padding: 7px 21px !important; font-size: 16px; border-radius: 5px;}
.your-skils{background: #eff6ff;}
.expertise-bx{ background: #F9FBFD !important;}
.expertise-bx h2 {font-weight: 400 !important; font-size: 51px;}
.expertise-bx p {font-size: 19px;font-weight: 400; color: #64748b !important;}

.expertise-bx .spec-card .spec-icon { transition: var(--transition-smooth); width: 60px;
    text-align: center; height: 60px; line-height: 25px;}
.expertise-bx h5 {font-size: 15px;}
.expertise-bx .spec-card p {font-size: 15px !important;}

.empowering-bx h2 {font-weight: 400 !important; font-size: 51px;}
.empowering-bx p { font-size: 19px; font-weight: 400; color: #64748b !important;}
.empowering-bx .industry-card h5{font-size: 15px; margin-bottom:10px !important;}
.empowering-bx .industry-card p { font-size: 14px !important;}
.empowering-bx .industry-card .bg-blue-subtle {background: #eff6ff;  width: 60px !important; height: 60px;  line-height: 30px;}
.expertise-bx .purple-box:hover{ background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);}
.purple-box:hover h5, .purple-box:hover p{ color:#fff !important; }
.expertise-bx .blue-box:hover{ background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);}
.blue-box:hover h5, .blue-box:hover p{ color:#fff !important; }
.expertise-bx .green-box:hover{ background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);}
.green-box:hover h5, .green-box:hover p{ color:#fff !important; }
.expertise-bx .green-box1:hover{ background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);}
.green-box1:hover h5, .green-box1:hover p{ color:#fff !important; }

.expertise-bx .ornage-box:hover{ background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);}
.ornage-box:hover h5, .ornage-box:hover p{ color:#fff !important; }
.expertise-bx .red-box:hover{ background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);}
.red-box:hover h5, .red-box:hover p{ color:#fff !important; }
.expertise-bx .blue1-box:hover{ background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);}
.blue1-box:hover h5, .blue1-box:hover p{ color:#fff !important; }
.expertise-bx .green-box-2:hover{ background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);}
.green-box-2:hover h5, .green-box-2:hover p{ color:#fff !important; }


.bg-gradient-purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.bg-gradient-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.bg-gradient-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.modern-bx h2 {font-weight: 400 !important; font-size: 51px;}
.modern-bx p {font-size: 19px;font-weight: 400; color: #fff !important;}
.modern-bx .icon-wrapper-white {width: 55px; height: 55px; line-height: 21px; text-align: center;}
.modern-bx .card h4{font-size: 20px;}
.modern-bx .consults h6 {font-size: 52px; font-weight: 400 !important;}
.modern-bx .consults p{font-size: 15px;}
.casestud{background: #eff6ff;}
.casestud h2 {font-weight: 400 !important; font-size: 51px;}
.casestud p {font-size: 19px;font-weight: 400; color: #64748b !important;}
.casestud .testimonial-card p{color: #1e293b !important; font-size: 17px;}
.casestud p.text-muted.small.mb-0 {font-size: 14px;}
/*Lakshman new css end*/


/*Post a project page Start*/
 /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #0066cc 0%, #1d4ed8 50%, #1e40af 100%);
            position: relative;
            overflow: hidden;
           
        }

   .hero-section-postproject {
            position: relative;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-indigo) 50%, var(--primary-fuchsia) 100%);
            padding: 5rem 0 7rem;
            overflow: hidden;
            color: white;
        }

        .hero-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .hero-blur-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: pulse 4s ease-in-out infinite;
        }

        .hero-blur-1 {
            top: 10%;
            left: 5%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.2);
        }

        .hero-blur-2 {
            bottom: 10%;
            right: 5%;
            width: 400px;
            height: 400px;
            background: rgba(217, 70, 239, 0.2);
            animation-delay: 1s;
        }

        .hero-blur-3 {
            top: 50%;
            left: 33%;
            width: 350px;
            height: 350px;
            background: rgba(99, 102, 241, 0.2);
            animation-delay: 0.5s;
        }

        .hero-geometric {
            position: absolute;
            opacity: 0.05;
        }

        .hero-geometric.triangle {
            top: 20%;
            right: 10%;
            width: 0;
            height: 0;
            border-left: 60px solid transparent;
            border-right: 60px solid transparent;
            border-bottom: 100px solid white;
            animation: float 6s ease-in-out infinite;
        }

        .hero-geometric.circle {
            bottom: 20%;
            left: 10%;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: white;
            animation: float-delayed 8s ease-in-out infinite;
        }

        .hero-geometric.square {
            top: 40%;
            left: 30%;
            width: 100px;
            height: 100px;
            background: white;
            transform: rotate(45deg);
            animation: float 6s ease-in-out infinite;
        }

        .hero-grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        
       


p.scale {
    font-size: 30px;
    font-weight: 500 !important;
}
.postwhyschoose h3 {
    font-size: 20px;
     
}

.howtwork .step-number {
    position: absolute;
    top: -16px;
    right: -7px;

}
.howtwork .card{overflow: inherit !important;}
.howtwork .card h3{font-weight: 400 !important;}
.hero-section-seeker{padding: 4rem 0rem}
        .hero-bg-decoration {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.2;
        }
        
        .hero-bg-1 {
            width: 320px;
            height: 320px;
            background: #60a5fa;
            top: -160px;
            right: -160px;
        }
        
        .hero-bg-2 {
            width: 384px;
            height: 384px;
            background: #93c5fd;
            top: 50%;
            left: -160px;
        }
        
        .hero-bg-3 {
            width: 256px;
            height: 256px;
            background: #3b82f6;
            bottom: 0;
            right: 25%;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            color: rgba(239, 246, 255, 0.9);
            font-size: 0.875rem;
            margin-bottom: 2rem;
        }
        
        .hero-title {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 600;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: #bfdbfe;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-description {
            font-size: 1.125rem;
            color: rgba(239, 246, 255, 0.9);
            margin-bottom: 3rem;
            line-height: 1.7;
        }
        
        .trust-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(239, 246, 255, 0.9);
            font-size: 0.875rem;
        }
        
        /* Card Styles */
        .card {
            border: 1px solid var(--border);
            border-radius: 1rem;
            background: white;
            transition: all 0.3s ease;
        }
        
        .card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            transform: translateY(-2px);
        }
        
        .card-body {
            padding: 2rem;
        }
        
        /* Icon boxes */
        .icon-box {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .icon-box i {
            font-size: 1.75rem;
        }
        
        /* Gradient backgrounds */
        .bg-gradient-blue {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        }
        
        .bg-gradient-cyan {
            background: linear-gradient(135deg, #06b6d4, #0891b2);
        }
        
        .bg-gradient-sky {
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
        }
        
        .bg-gradient-indigo {
            background: linear-gradient(135deg, #6366f1, #4f46e5);
        }
        
        .bg-gradient-purple {
            background: linear-gradient(135deg, #a855f7, #9333ea);
        }
        
        /* Section spacing */
        .section {
            padding: 5rem 0;
        }
        
        .section-lg {
            padding: 7rem 0;
        }
        
        /* Section backgrounds */
        .bg-gradient-subtle {
            background: linear-gradient(135deg, #eff6ff 0%, #f1f5f9 100%);
        }
        
        .bg-blue-subtle {
            background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
        }
        
        /* Step number badge */
        .step-number {
            position: absolute;
            top: 2rem;
            right: 1rem;
            width: 3rem;
            height: 3rem;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 600;
            box-shadow: 0 4px 6px rgba(0, 102, 204, 0.3);
        }
        
        /* Category badge */
        .category-badge {
            padding: 0.35rem 0.75rem;
            border-radius: 50px;
            font-size: 0.875rem;
            color: white;
			margin-top:10px
        }
        
        /* Testimonial card */
        .testimonial-card {
            position: relative;
            height: 100%;
        }
        
        .quote-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            opacity: 0.1;
            font-size: 4rem;
        }
        
        /* Star rating */
        .star-rating {
            color: #fbbf24;
        }
        
        /* Pricing card */
        .pricing-card {
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.highlighted {
            background: linear-gradient(135deg, #0066cc, #1d4ed8);
            color: white;
            border: none;
            transform: scale(1.05);
            box-shadow: 0 20px 25px -5px rgba(0, 102, 204, 0.3);
        }
        
        .check-icon {
            width: 1.25rem;
            height: 1.25rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        /* Accordion */
        .accordion-item {
            background: white;
            border: 1px solid var(--border);
            border-radius: 0.5rem !important;
            margin-bottom: 1rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .accordion-item:hover {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .accordion-button {
            background: white;
            color: var(--foreground);
            font-weight: 500;
            padding: 1.5rem;
        }
        
        .accordion-button:not(.collapsed) {
            background: white;
            color: var(--primary);
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--border);
        }
        
        .accordion-body {
            color: var(--muted-foreground);
            line-height: 1.7;
            padding: 0 1.5rem 1.5rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #0066cc 0%, #1d4ed8 50%, #1e40af 100%);
            position: relative;
            overflow: hidden;
        }
        
        .cta-bg-decoration {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
        }
        
        .cta-bg-1 {
            width: 320px;
            height: 320px;
            background: rgba(96, 165, 250, 0.2);
            top: 0;
            left: 25%;
        }
        
        .cta-bg-2 {
            width: 384px;
            height: 384px;
            background: rgba(147, 197, 253, 0.2);
            bottom: 0;
            right: 25%;
        }
        
        /* Contact Section */
        .contact-card {
            border: none;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .contact-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .form-label {
            font-weight: 500;
            color: var(--foreground);
            margin-bottom: 0.5rem;
        }
        
        .form-control, .form-select {
            background: var(--input-background);
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            padding: 0.75rem;
            font-size: 1rem;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }
        
      
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .section-lg {
                padding: 4rem 0;
            }
			.hero-section h2{font-weight: 400 !important; font-size: 30px; color: #dbeafe} 
			.border-less-bx h2 {font-weight: 400 !important;font-size: 36px}
			.workwithbx h2, .your-skils h2, .expertise-bx h2, .empowering-bx h2, .modern-bx h2, .modern-bx .consults h6, .casestud h2 { font-size: 36px;}
			.hero-section-postproject{ padding: 3rem 0 3rem}
			
        }


/*Post a project page End*/



/*Find project page Start*/

.btn-outline-primary {
            border: 1px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }
        
        .btn-outline-primary:hover {
            background: var(--primary);
            color: white;
        }
        
        .btn-lg {
            padding: 0.875rem 2rem;
            font-size: 1rem;
        }
        
        .btn-cyan {
            background: linear-gradient(135deg, #22d3ee, #06b6d4);
            color: white;
            border: none;
            box-shadow: 0 4px 12px rgba(34, 211, 238, 0.5);
        }
        
        .btn-cyan:hover {
            background: linear-gradient(135deg, #06b6d4, #0891b2);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 20px rgba(34, 211, 238, 0.6);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #0066cc 0%, #1d4ed8 50%, #1e40af 100%);
            position: relative;
            overflow: hidden;
            
        }

		 .hero-section-seeker{
           position: relative;
            background: linear-gradient(135deg, var(--primary-greenii) 0%, var(--primary-indigo-blue) 50%, var(--primary-fuchsia) 100%);
            padding: 5rem 0 7rem;
            overflow: hidden;
            color: white;
        }
        
        .hero-bg-decoration {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.2;
        }
        
        .hero-bg-1 {
            width: 320px;
            height: 320px;
            background: #60a5fa;
            top: -160px;
            right: -160px;
        }
        
        .hero-bg-2 {
            width: 384px;
            height: 384px;
            background: #93c5fd;
            top: 50%;
            left: -160px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            color: rgba(239, 246, 255, 0.9);
            font-size: 0.875rem;
            margin-bottom: 2rem;
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 7vw, 4.5rem);
            font-weight: 600;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            color: rgba(239, 246, 255, 0.9);
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
        }
        
        /* Section spacing */
        .section {
            padding: 4rem 0;
        }
        
        .section-lg {
            padding: 7rem 0;
        }
        
        /* Card Styles */
        .card {
            border: 1px solid var(--border);
            border-radius: 1rem;
            background: white;
            transition: all 0.3s ease;
        }
        
        .card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            transform: translateY(-4px);
        }
        
        /* Progress Bar */
        .progress-container {
            position: relative;
            margin-bottom: 4rem;
        }
        
        .progress-line {
            position: absolute;
            top: 2rem;
            left: 0;
            right: 0;
            height: 4px;
            background: #e5e7eb;
            border-radius: 50px;
        }
        
        .step-indicator {
            position: relative;
            width: 4rem;
            height: 4rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .step-indicator:hover {
            transform: scale(1.1);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
        }
        
        .step-indicator.active {
            transform: scale(1.1);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
        }
        
        .step-number-badge {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.125rem;
            font-weight: 600;
        }
        
        /* Gradient backgrounds */
        .bg-gradient-blue {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        }
        
        .bg-gradient-cyan {
            background: linear-gradient(135deg, #06b6d4, #0891b2);
        }
        
        .bg-gradient-indigo {
            background: linear-gradient(135deg, #6366f1, #4f46e5);
        }
        
        .bg-gradient-violet {
            background: linear-gradient(135deg, #a855f7, #9333ea);
        }
        
        /* How to Get Started Section */
        .step-card {
            background: white;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            border: 2px solid transparent;
            position: relative;
        }
        
        .step-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: #a5f3fc;
            z-index: 10;
        }
        
        .step-card.active {
            transform: scale(1.05);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: #a5f3fc;
            z-index: 10;
        }
        
        .step-header-bar {
            height: 0.5rem;
            transition: height 0.5s ease;
        }
        
        .step-card:hover .step-header-bar,
        .step-card.active .step-header-bar {
            height: 0.75rem;
        }
        
        .step-icon-box {
            width: 4rem;
            height: 4rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .step-card:hover .step-icon-box,
        .step-card.active .step-icon-box {
            transform: scale(1.1) rotate(6deg);
        }
        
        /* Badge */
        .custom-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.75rem;
            border: 1px solid currentColor;
            border-opacity: 0.2;
            transition: all 0.3s ease;
        }
        
        .custom-badge:hover {
            transform: scale(1.05);
            border-opacity: 0.4;
        }
        
        
        /* Icon boxes */
        .icon-box {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }
        
        .card:hover .icon-box {
            transform: scale(1.1);
        }
        
        .icon-box i {
            font-size: 1.75rem;
        }
		.howtogetsection{ padding: 4rem 0; background: linear-gradient(180deg, #ffffff 0%, rgba(239, 246, 255, 0.3) 50%, #ffffff 100%); position: relative; overflow: hidden;}
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes ping {
            75%, 100% {
                transform: scale(2);
                opacity: 0;
            }
        }
        
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        
        .animate-ping {
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
        }
        
		.finset { min-height: 340px;}
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            
            .section {
                padding: 2rem 0;
            }
            
            .section-lg {
                padding: 4rem 0;
            }
            
            .progress-line {
                display: none;
            }
			.statuscount {
             background: #F2FAFC;}
			.spec-card{ text-align: center;}
			.spec-card .spec-icon{ margin: 0 auto;}
			.howtogetsection{ padding: 2rem 0;}
        }

/*Find project page End*/


/*Case Studies Start*/
    
        /* Hero Section with Animated Background */
        .hero-section-cs {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e3a8a 100%);
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Animated Background Elements */
        .hero-section-cs .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
        }

       .hero-section-cs .hero-orb-1 {
            top: -10%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(147, 197, 253, 0.3);
            animation: float-slow 20s ease-in-out infinite;
        }

       .hero-section-cs .hero-orb-2 {
            top: 50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: rgba(191, 219, 254, 0.25);
            animation: float-slower 25s ease-in-out infinite;
        }

       .hero-section-cs .hero-orb-3 {
            bottom: 0;
            right: 25%;
            width: 350px;
            height: 350px;
            background: rgba(59, 130, 246, 0.2);
            animation: pulse-gentle 8s ease-in-out infinite;
        }

       .hero-section-cs .hero-accent-1 {
            position: absolute;
            top: 5rem;
            left: 25%;
            width: 160px;
            height: 160px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(30px);
            animation: pulse-slow 4s ease-in-out infinite;
        }

       .hero-section-cs .hero-accent-2 {
            position: absolute;
            top: 10rem;
            right: 33%;
            width: 128px;
            height: 128px;
            background: rgba(191, 219, 254, 0.2);
            border-radius: 50%;
            filter: blur(20px);
            animation: pulse-slower 5s ease-in-out infinite;
        }

       .hero-section-cs .hero-accent-3 {
            position: absolute;
            bottom: 8rem;
            left: 33%;
            width: 144px;
            height: 144px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            filter: blur(30px);
            animation: pulse-slow 4s ease-in-out infinite;
            animation-delay: 1s;
        }

       .hero-section-cs .hero-accent-4 {
            position: absolute;
            bottom: 5rem;
            right: 25%;
            width: 112px;
            height: 112px;
            background: rgba(191, 219, 254, 0.15);
            border-radius: 50%;
            filter: blur(20px);
            animation: pulse-slower 5s ease-in-out infinite;
            animation-delay: 2s;
        }

        /* Floating Particles */
        .floating-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            animation: float-particle 8s ease-in-out infinite;
        }

        .particle-1 {
            top: 33%;
            right: 33%;
            animation-delay: 0s;
        }

        .particle-2 {
            top: 50%;
            right: 25%;
            animation-delay: 1s;
        }

        .particle-3 {
            bottom: 33%;
            left: 25%;
            animation-delay: 2s;
        }

        .particle-4 {
            top: 66%;
            right: 66%;
            animation-delay: 0.5s;
        }

        .particle-5 {
            bottom: 25%;
            left: 50%;
            animation-delay: 1.5s;
        }

        .particle-6 {
            top: 25%;
            left: 33%;
            animation-delay: 2.5s;
        }

        /* Keyframe Animations */
        @keyframes float-slow {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(-30px, -30px) scale(1.1);
            }
        }

        @keyframes float-slower {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(40px, -25px) scale(1.15);
            }
        }

        @keyframes pulse-gentle {
            0%, 100% {
                opacity: 0.2;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.05);
            }
        }

        @keyframes pulse-slow {
            0%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 0.6;
                transform: scale(1.2);
            }
        }

        @keyframes pulse-slower {
            0%, 100% {
                opacity: 0.2;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.15);
            }
        }

        @keyframes float-particle {
            0%, 100% {
                transform: translateY(0px) translateX(0px);
                opacity: 0.4;
            }
            50% {
                transform: translateY(-30px) translateX(10px);
                opacity: 0.8;
            }
        }

        @keyframes spin-very-slow {
            from {
                transform: rotate(12deg);
            }
            to {
                transform: rotate(372deg);
            }
        }

        @keyframes spin-reverse-slow {
            from {
                transform: rotate(-12deg);
            }
            to {
                transform: rotate(-372deg);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        @keyframes float-delayed {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) rotate(-5deg);
            }
        }

        @keyframes shimmer {
            0%, 100% {
                opacity: 0.1;
            }
            50% {
                opacity: 0.5;
            }
        }

        @keyframes shimmer-horizontal {
            0%, 100% {
                opacity: 0.1;
            }
            50% {
                opacity: 0.4;
            }
        }

        /* Animation Classes */
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        .animate-float-delayed {
            animation: float-delayed 8s ease-in-out infinite;
        }

        .animate-spin-very-slow {
            animation: spin-very-slow 60s linear infinite;
        }

        .animate-spin-reverse-slow {
            animation: spin-reverse-slow 45s linear infinite;
        }

        .animate-shimmer {
            animation: shimmer 3s ease-in-out infinite;
        }

        .animate-shimmer-horizontal {
            animation: shimmer-horizontal 3.5s ease-in-out infinite;
        }

        .hero-casestudies {
            position: relative;
            z-index: 10;
        }

        .hero-casestudies .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1.25rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

       .hero-casestudies .hero-title {
            font-size: 4rem;
            font-weight: 500;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .hero-casestudies .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        }

        /* Case Study Cards */
        .case-study-card {
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            background: white;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .case-study-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .case-study-image-wrapper {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .case-study-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .case-study-card:hover .case-study-image {
            transform: scale(1.05);
        }

        .case-study-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
        }

        .case-study-overlay-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            z-index: 10;
        }

        .case-study-company {
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.5rem;
        }

        .case-study-title {
            font-size: 1rem;
            color: white;
            line-height: 1.5;
            margin: 0;
        }

        .case-study-body {
            padding: 1.5rem;
        }

        .case-study-description {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
			font-weight: 500;
        }

        .case-study-link {
            color: var(--blue-primary);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .case-study-link:hover {
            color: var(--blue-secondary);
        }

        .case-study-link i {
            transition: transform 0.3s ease;
        }

        .case-study-link:hover i {
            transform: translateX(4px);
        }

        /* CTA Section */
        .cta-section1 {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e3a8a 100%);
            position: relative;
            overflow: hidden;
            padding: 5rem 0;
        }

       .cta-section1 .cta-icon-wrapper {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

      .cta-section1  .btn-cta-primary {
            background-color: white;
            color: var(--blue-primary);
            padding: 0.875rem 2rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

       .cta-section1 .btn-cta-primary:hover {
            background-color: #f3f4f6;
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

       .cta-section1 .btn-cta-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 0.875rem 2rem;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 8px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

       .cta-section1  .btn-cta-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.6);
            transform: scale(1.05);
            color: white;
        }


	        /* Hero Section */
        .case-study-hero {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e3a8a 100%);
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .btn-back {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .btn-back:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .hero-title1 {
            font-size: 4rem;
            font-weight: 500;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .hero-subtitle1 {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        }

        /* Content Sections */
        .content-section {
            padding: 3rem 0rem 0rem 0rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .section-text {
            font-size: 1.125rem;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* Key Challenges Cards */
        .challenge-card {
            background: var(--gray-light);
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 1.5rem;
            height: 100%;
            transition: all 0.3s ease;
        }

        .challenge-card:hover {
            border-color: rgba(37, 99, 235, 0.3);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .challenge-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--blue-primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .challenge-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .challenge-description {
            font-size: 0.875rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* BlueHippo Solution Section */
        .solution-section {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e3a8a 100%);
            border-radius: 16px;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
            margin-bottom: 4rem;
        }

        /* Decorative Background for Solution */
        .solution-bg-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.03;
        }

        .solution-geometric-1 {
            position: absolute;
            top: -40px;
            right: -40px;
            width: 160px;
            height: 160px;
            opacity: 0.1;
        }

        .solution-geometric-2 {
            position: absolute;
            bottom: -32px;
            left: -32px;
            width: 128px;
            height: 128px;
            opacity: 0.07;
        }

        .solution-content {
            position: relative;
            z-index: 10;
        }

        .solution-title {
            font-size: 2rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1.5rem;
        }

        .solution-intro {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.75;
            margin-bottom: 2rem;
        }

        .solution-point {
            display: flex;
            gap: 1.25rem;
            margin-bottom: 2rem;
        }

        .solution-point:last-child {
            margin-bottom: 0;
        }

        .solution-check-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            color: white;
            font-size: 1.75rem;
            margin-top: 4px;
        }

        .solution-point-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.75rem;
        }

        .solution-point-description {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.75;
        }

        /* CTA Section */
        .cta-card {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e3a8a 100%);
            border-radius: 16px;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-text {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta {
            background-color: white;
            color: var(--blue-primary);
            padding: 0.875rem 2rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
        }

        .btn-cta:hover {
            background-color: #f3f4f6;
            color: var(--blue-primary);
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

       
        @media (max-width: 768px) {
          .hero-casestudies .hero-title {
                font-size: 2.5rem;
            }
           .hero-casestudies .hero-subtitle {
                font-size: 1.125rem;
            }
        }

 @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.25rem;
            }
            .section-title {
                font-size: 1.75rem;
            }
            .solution-section {
                padding: 2rem 1.5rem;
            }
	 	.hero-section-cs{min-height: 290px;}
	 .hero-casestudies .hero-subtitle{ margin: 0 auto 0rem}
        }

/*Case Studies End*/


/*About Us Start*/

        /* ========== HERO SECTION ========== */
        .hero-section-about {
            background: linear-gradient(135deg, var(--purple-700), var(--violet-600), var(--fuchsia-600));
            position: relative;
            overflow: hidden;
            min-height: 450px;
            padding: 100px 0;
        }
        
        .hero-section-about .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
            background-size: 50px 50px;
        }
        
        .hero-section-about .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: pulse-animation 4s ease-in-out infinite;
        }
        
        .hero-section-about .hero-orb-1 {
            top: -10rem;
            right: -10rem;
            width: 24rem;
            height: 24rem;
            background: rgba(244, 114, 182, 0.25);
            animation-delay: 0s;
        }
        
        .hero-section-about .hero-orb-2 {
            top: 50%;
            left: -10rem;
            width: 31rem;
            height: 31rem;
            background: rgba(167, 139, 250, 0.2);
            animation-delay: 1s;
        }
        
        .hero-section-about .hero-orb-3 {
            bottom: 2.5rem;
            right: 33%;
            width: 20rem;
            height: 20rem;
            background: rgba(232, 121, 249, 0.2);
            animation-delay: 2s;
        }
        
        .hero-section-about .hero-orb-4 {
            top: 25%;
            left: 33%;
            width: 18rem;
            height: 18rem;
            background: rgba(196, 181, 253, 0.15);
            animation-delay: 3s;
        }
        
        @keyframes pulse-animation {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }
        
        .hero-section-about .hero-shape {
            position: absolute;
            border: 2px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2;
        }
        
        .hero-section-about .badge-custom {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(236, 72, 153, 0.2);
            border: 1px solid rgba(244, 114, 182, 0.3);
            border-radius: 50px;
            backdrop-filter: blur(10px);
        }
        
        /* ========== STORY SECTION ========== */
        .ourstory-section {
            background: linear-gradient(135deg, #ffffff, rgba(239, 246, 255, 0.4), rgba(207, 250, 254, 0.3));
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }
        
       .ourstory-section .story-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
        }
        
        .ourstory-section .story-orb-1 {
            top: 5rem;
            left: -5rem;
            width: 24rem;
            height: 24rem;
            background: rgba(191, 219, 254, 0.5);
            animation: pulse-animation 4s ease-in-out infinite;
        }
        
        .ourstory-section .story-orb-2 {
            bottom: 5rem;
            right: -5rem;
            width: 31rem;
            height: 31rem;
            background: rgba(165, 243, 252, 0.4);
            animation: pulse-animation 5s ease-in-out infinite;
            animation-delay: 1s;
        }
        
         .ourstory-section .story-orb-3 {
            top: 50%;
            left: 50%;
            width: 16rem;
            height: 16rem;
            background: rgba(147, 197, 253, 0.3);
            animation: pulse-animation 6s ease-in-out infinite;
            animation-delay: 2s;
        }
        
         .ourstory-section .badge-blue {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(239, 246, 255, 1);
            color: #1d4ed8;
            border-radius: 50px;
            font-size: 0.875rem;
        }
        
        /* ========== INTERFACE SCREEN ========== */
        .ourstory-section .interface-screen {
            background: linear-gradient(135deg, #0f172a, #1e3a8a, #0f172a);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }
        
         .ourstory-section .candidate-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0.75rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
         .ourstory-section .candidate-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: scale(1.02);
            border-color: rgba(96, 165, 250, 0.5);
        }
        
        .scan-line {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.05), transparent);
            height: 20%;
            animation: scan 4s linear infinite;
            pointer-events: none;
        }
        
        @keyframes scan {
            0% {
                transform: translateY(-100%);
            }
            100% {
                transform: translateY(600%);
            }
        }
        
        /* ========== VALUES SECTION ========== */
        .values-section {
            background: linear-gradient(135deg, rgba(239, 246, 255, 1), rgba(207, 250, 254, 0.4), #ffffff);
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }
        
        .values-section .values-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
        }
        
        .values-section .value-card {
            background: white;
            border: 1px solid rgba(59, 130, 246, 0.1);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
       .values-section .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--blue-600), var(--cyan-400));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
       .values-section .value-card:hover {
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
            transform: translateY(-0.5rem);
            border-color: var(--cyan-400);
        }
        
       .values-section .value-card:hover::before {
            opacity: 1;
        }
        
       .values-section .value-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.08));
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 1rem;
        }
        
        .values-section .value-card:hover::after {
            opacity: 1;
        }
        
       .values-section .value-icon {
            width: 4rem;
            height: 4rem;
            background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
        }
        
       .values-section .value-card:hover .value-icon {
            transform: scale(1.1) rotate(3deg);
        }
        
        /* ========== IMPACT SECTION ========== */
        .impact-section {
            background: linear-gradient(135deg, var(--blue-600), var(--blue-700), #1e40af);
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }
        
       .impact-section .impact-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
        }
        
       .impact-section .grid-overlay {
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background-image: linear-gradient(to right, white 1px, transparent 1px), 
                              linear-gradient(to bottom, white 1px, transparent 1px);
            background-size: 60px 60px;
        }
        
       .impact-section .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
       .impact-section .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--cyan-400), #3b82f6);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
       .impact-section .stat-card:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(34, 211, 238, 0.5);
            transform: translateY(-0.75rem);
            box-shadow: 0 20px 40px rgba(34, 211, 238, 0.3);
        }
        
       .impact-section .stat-card:hover::before {
            opacity: 1;
        }
        
        .stat-icon {
            width: 6rem;
            height: 6rem;
            background: linear-gradient(135deg, #22d3ee, #3b82f6);
            border-radius: 1.25rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            border: 2px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 20px 40px rgba(34, 211, 238, 0.6), 
                        0 0 60px rgba(34, 211, 238, 0.4), 
                        inset 0 -4px 20px rgba(59, 130, 246, 0.5);
            position: relative;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .stat-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 1.25rem;
            background: linear-gradient(135deg, rgba(34, 211, 238, 0.7), rgba(59, 130, 246, 0.5));
            opacity: 0.7;
            filter: blur(10px);
            animation: pulse-glow 2s ease-in-out infinite;
        }
        
        @keyframes pulse-glow {
            0%, 100% {
                opacity: 0.7;
                filter: blur(10px);
            }
            50% {
                opacity: 1;
                filter: blur(15px);
            }
        }
        
        .stat-card:hover .stat-icon {
            transform: scale(1.35) rotate(8deg);
        }
        
        /* ========== CTA SECTION ========== */
        .cta-section-about {
            background: linear-gradient(135deg, rgba(239, 246, 255, 1), rgba(207, 250, 254, 0.3), #ffffff);
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }
        
        .cta-section-about .cta-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: pulse-animation 6s ease-in-out infinite;
        }
        
        /* ========== BUTTONS ========== */
     .cta-section-about .btn-primary-gradient {
            background: linear-gradient(to right, var(--blue-600), var(--blue-700));
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }
        
     .cta-section-about .btn-primary-gradient:hover {
            background: linear-gradient(to right, var(--blue-700), #1e40af);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
            color: white;
        }
        
        .btn-outline-custom {
            border: 2px solid var(--blue-600);
            color: var(--blue-600);
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-weight: 500;
            background: transparent;
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background: rgba(239, 246, 255, 1);
            color: var(--blue-700);
            border-color: var(--blue-700);
        }
        
       
        /* ========== UTILITY CLASSES ========== */
        .text-foreground {
            color: #1e293b;
        }
        
        .text-foreground-70 {
            color: rgba(30, 41, 59, 0.7);
        }
        
        .badge-blue-100 {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(219, 234, 254, 1);
            color: #1d4ed8;
            border-radius: 50px;
            font-size: 0.875rem;
        }
/*About Us End*/

/*Careers Start*/
/* Hero Section */
        .hero-section-career {
            background: linear-gradient(to bottom, var(--navy-dark1) 0%, var(--navy-medium11) 50%, var(--navy-dark1) 100%);
            min-height: 500px;
            position: relative;
            overflow: hidden;
            padding: 80px 0 80px;
        }
        
        .hero-section-career::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(to right, #1e40af 1px, transparent 1px), linear-gradient(to bottom, #1e40af 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.05;
        }
        
        .hero-section-career::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(30, 64, 175, 0.2) 0%, transparent 70%);
        }
		.hero-section-career h1{ font-weight: 500 !important;}
        .section-padding-position {
            padding: 3rem 0;
        }
        
        .section-title {
            font-size: clamp(1.5rem, 5vw, 3rem);
            font-weight: 500;
            margin-bottom: 24px;
            color: #1e293b;
        }
        
        .section-subtitle {
            font-size: 1.125rem;
            color: #64748b;
            margin-bottom: 64px;
        }
        
        .career-positions .card-hover {
            transition: all 0.3s ease;
        }
        
        .career-positions .card-hover:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
        .icon-box {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: transform 0.3s ease;
        }
        
        .career-positions .card-hover:hover .icon-box {
            transform: scale(1.1);
        }
        
        .position-card {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 32px;
            background: white;
            transition: all 0.3s ease;
        }
        
        .position-card:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
        .career-positions .skill-badge {
            display: inline-block;
            padding: 6px 12px;
            background: #eff6ff;
            color: #1e40af;
            border-radius: 50px;
            font-size: 0.875rem;
            margin: 4px;
        }

/*Careers End*/

/Privacy policy start/
.pcontent h4 {font-size: 19px;font-weight: 700;}
.pcontent p {margin-bottom: 20px;}
.pcontent strong {margin-bottom: 10px;}
.pcontent ul {line-height: 30px;}
.privacy-ban{min-height:240px;}
.maincontent1 h4{font-size:1.3rem;}


/Privacy policy end/

@media (max-width: 767px) {
	
	.expertise-bx h2, .empowering-bx h2, .modern-bx h2, .modern-bx .consults h6, .casestud h2, .your-skils h2, .workwithbx h2, .border-less-bx h2 { font-size: 36px; font-weight: 500;} 
	.hero-section .display-2{font-size: 3.5rem; font-weight: 500;}
	.hero-section p { padding: 0px;}
	.hero-section-postproject{padding: 3rem 0 3rem;}
	.hero-section-cs{min-height: auto; padding: 3rem 0rem;}
	.hero-casestudies .hero-subtitle{ margin: 0;}
	.cta-section1{ padding: 3rem 0rem;}
	.case-study-hero h1{font-size:3rem;}
	.hero-section-about, .ourstory-section, .values-section, .impact-section, .cta-section-about{ padding: 3.5rem 0; min-height: auto: ;}
	.privacy-ban {min-height: 110px;}
	 .privacy-ban h1{font-size: 30px !important; margin-bottom: 0 !important;line-height: 38px !important;}
	.privacy-ban .hero-casestudies .hero-title { font-size: 3.0rem;}
	.maincontent1 h4{font-size:1.1rem;}
	
	}