/* Page specific styles */
    .page-header {
background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
      padding: 160px 0 80px;
      position: relative;
      overflow: hidden;
}

.page-header:before {
content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234361ee' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
font-size: 48px;
      font-weight: 800;
      color: #1e293b;
      margin-bottom: 20px;
}

.breadcrumb {
background: transparent;
      padding: 0;
}

.breadcrumb-item,
    .breadcrumb-item a {
color: #64748b;
      font-weight: 500;
}

.breadcrumb-item.active {
color: #4361ee;
}

/* About section */
    .about-image {
border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.about-image img {
transition: transform 0.6s;
}

.about-image:hover img {
transform: scale(1.05);
}

.content h3 {
font-size: 32px;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 20px;
}

.content ul {
list-style: none;
      padding: 0;
}

.content ul li {
margin-bottom: 20px;
      color: #475569;
      line-height: 1.7;
}

.content ul li i {
color: #4361ee;
      font-size: 24px;
      margin-right: 15px;
      float: left;
}

/* Values section */
    .value-card {
background: white;
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      border: 1px solid #eef2f6;
      height: 100%;
      text-align: center;
}

.value-card:hover {
transform: translateY(-8px);
      box-shadow: 0 30px 50px rgba(67, 97, 238, 0.15);
      border-color: transparent;
}

.value-icon {
width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(76, 201, 240, 0.1) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
}

.value-icon i {
font-size: 40px;
      color: #4361ee;
}

.value-card h4 {
font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #1e293b;
}

.value-card p {
color: #64748b;
      line-height: 1.6;
}

/* Team section */
    .team-card {
background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      border: 1px solid #eef2f6;
      height: 100%;
}

.team-card:hover {
transform: translateY(-8px);
      box-shadow: 0 30px 50px rgba(67, 97, 238, 0.15);
      border-color: transparent;
}

.team-image {
height: 300px;
      background-size: cover;
      background-position: center;
}

.team-info {
padding: 25px;
      text-align: center;
}

.team-info h4 {
font-size: 22px;
      font-weight: 700;
      margin-bottom: 5px;
      color: #1e293b;
}

.team-info .position {
color: #4361ee;
      font-weight: 500;
      margin-bottom: 15px;
}

.team-info p {
color: #64748b;
      line-height: 1.6;
      margin-bottom: 20px;
}

.team-social {
display: flex;
      gap: 15px;
      justify-content: center;
}

.team-social a {
width: 40px;
      height: 40px;
      background: #f8fafc;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #4361ee;
      transition: all 0.3s;
      text-decoration: none;
}

.team-social a:hover {
background: #4361ee;
      color: white;
      transform: translateY(-3px);
}

/* Partner / Client Cards */
    .partner-card {
background: white;
      border-radius: 20px;
      padding: 30px 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      border: 1px solid #eef2f6;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
}

.partner-card:hover {
transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(67, 97, 238, 0.1);
      border-color: transparent;
}

.partner-logo {
max-width: 150px;
      max-height: 80px;
      object-fit: contain;
      filter: grayscale(0.3);
      opacity: 0.8;
      transition: all 0.3s;
}

.partner-card:hover .partner-logo {
filter: grayscale(0);
      opacity: 1;
      transform: scale(1.05);
}

.client-name {
font-weight: 600;
      color: #1e293b;
      margin-top: 15px;
      font-size: 16px;
}

/* Stats section */
    .stats-wrapper {
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      border-radius: 40px;
      padding: 60px 40px;
      margin: 40px 0;
}

.stat-block {
text-align: center;
}

.stat-number {
font-size: 48px;
      font-weight: 800;
      color: #4361ee;
      line-height: 1.2;
      margin-bottom: 10px;
}

.stat-label {
font-size: 16px;
      color: #475569;
      font-weight: 500;
}

/* CTA Section */
    .cta-section {
background: linear-gradient(135deg, #4361ee, #3a0ca3);
      padding: 80px 0;
      border-radius: 40px;
      margin: 40px 0;
      color: white;
}

.cta-section h2,
    .cta-section p {
color: white;
}

.cta-section .btn-primary {
background: white;
      color: #4361ee;
      border: none;
      padding: 15px 40px;
      font-weight: 600;
}

.cta-section .btn-primary:hover {
background: #f8fafc;
      transform: translateY(-2px);
}

@media (max-width: 768px) {
.page-header h1 {
        font-size: 36px;
}

}

    /* Page specific styles */
    .page-header {
background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
      padding: 160px 0 80px;
      position: relative;
      overflow: hidden;
}

.page-header .breadcrumb {
background: transparent;
      padding: 0;
}

.page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
color: #64748b;
      font-weight: 500;
}

.page-header .breadcrumb-item.active {
color: #4361ee;
}

.page-header .breadcrumb-item+.breadcrumb-item:before {
color: #94a3b8;
}

.feature-icon-large {
width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(76, 201, 240, 0.1) 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
}

.feature-icon-large i {
font-size: 40px;
      background: linear-gradient(135deg, #4361ee, #4cc9f0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
}

.service-card {
background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      border: 1px solid #eef2f6;
      height: 100%;
}

.service-card:hover {
transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(67, 97, 238, 0.1);
      border-color: transparent;
}

.service-features {
list-style: none;
      padding: 0;
      margin-top: 20px;
}

.service-features li {
margin-bottom: 10px;
      color: #475569;
      font-size: 14px;
}

.service-features li i {
color: #4361ee;
      margin-right: 8px;
      font-size: 16px;
}

.ai-capability-card {
background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      border: 1px solid #eef2f6;
      height: 100%;
      position: relative;
      overflow: hidden;
}

.ai-capability-card:hover {
transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
}

.ai-capability-card:before {
content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 150px;
      height: 150px;
      background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(76, 201, 240, 0.03));
      border-radius: 50%;
}

.capability-icon {
width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #4361ee, #4cc9f0);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      position: relative;
      z-index: 2;
}

.capability-icon i {
font-size: 35px;
      color: white;
}

.industry-card {
background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      border: 1px solid #eef2f6;
      height: 100%;
}

.industry-card:hover {
transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(67, 97, 238, 0.1);
      border-color: transparent;
}

.industry-icon {
width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #4361ee, #4cc9f0);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
}

.industry-icon i {
font-size: 30px;
      color: white;
}

.methodology-step {
position: relative;
      padding-left: 80px;
      margin-bottom: 40px;
}

.step-number-badge {
position: absolute;
      left: 0;
      top: 0;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #4361ee, #4cc9f0);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 24px;
}

.case-study-card {
background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      height: 100%;
}

.case-study-card:hover {
transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
}

.case-study-image {
height: 200px;
      background-size: cover;
      background-position: center;
      position: relative;
}

.case-study-tag {
position: absolute;
      top: 20px;
      right: 20px;
      background: white;
      padding: 8px 16px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 14px;
      color: #4361ee;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.case-study-content {
padding: 25px;
}

.case-study-content h3 {
font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
}

.case-study-stats {
display: flex;
      gap: 20px;
      margin: 20px 0;
}

.stat {
text-align: center;
}

.stat .value {
font-size: 24px;
      font-weight: 700;
      color: #4361ee;
      display: block;
}

.stat .label {
font-size: 13px;
      color: #6c757d;
}

.tool-card {
background: white;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0,0,0,0.03);
      border: 1px solid #eef2f6;
      transition: all 0.3s;
      height: 100%;
}

.tool-card:hover {
transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(67, 97, 238, 0.1);
      border-color: transparent;
}

.tool-logo {
height: 50px;
      margin-bottom: 15px;
      object-fit: contain;
}

.cta-section {
background: linear-gradient(135deg, #4361ee, #3a0ca3);
      padding: 80px 0;
      border-radius: 40px;
      margin: 40px 0;
      color: white;
}

.cta-section .btn-primary {
background: white;
      color: #4361ee;
      border: none;
}

.faq-item {
border-bottom: 1px solid #eef2f6;
      padding: 20px 0;
}

.faq-question {
font-weight: 600;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
}

.faq-answer {
padding-top: 15px;
      color: #64748b;
      display: none;
}

.faq-item.active .faq-answer {
display: block;
}

.faq-item.active .faq-question i {
transform: rotate(180deg);
}

.bg-light-custom {
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero-shape-1 {
position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(67,97,238,0.1) 0%, rgba(76,201,240,0.1) 100%);
      border-radius: 50%;
      top: -50px;
      right: -50px;
      z-index: -1;
}

.float-animation {
animation: float 6s ease-in-out infinite;
}

@keyframes float {
0% { transform: translateY(0px);
}

50% {
transform: translateY(-20px);
}

100% {
transform: translateY(0px);
}

}

    .rotate-slow {
animation: rotate 20s linear infinite;
}

@keyframes rotate {
from { transform: rotate(0deg);
}

to {
transform: rotate(360deg);
}

}

    .ai-badge {
background: linear-gradient(135deg, #4361ee, #4cc9f0);
      color: white;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 15px;
}

.tech-stack-item {
display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px;
      background: white;
      border-radius: 12px;
      border: 1px solid #eef2f6;
      margin-bottom: 10px;
}

.tech-stack-item i {
font-size: 24px;
      color: #4361ee;
}



     /* Page specific styles - consistent with other service pages */
    .page-header {
background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
      padding: 160px 0 80px;
      position: relative;
      overflow: hidden;
}



    @media (max-width: 768px) {
.page-header h1 {
        font-size: 36px;
}

/* Featured Post */
    .featured-post {
background: white;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0,0,0,0.08);
      margin-bottom: 60px;
      border: 1px solid #eef2f6;
      transition: all 0.3s;
}

.featured-post:hover {
transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(67, 97, 238, 0.15);
}

.featured-image {
height: 400px;
      background-size: cover;
      background-position: center;
}

.featured-content {
padding: 40px;
}

.featured-category {
background: #4361ee;
      color: white;
      padding: 5px 15px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
}

.featured-title {
font-size: 32px;
      font-weight: 800;
      color: #1e293b;
      margin-bottom: 20px;
      line-height: 1.3;
}

.featured-excerpt {
font-size: 18px;
      color: #475569;
      margin-bottom: 25px;
      line-height: 1.7;
}

.post-meta {
display: flex;
      gap: 25px;
      margin-bottom: 25px;
      color: #64748b;
      font-size: 15px;
}

.post-meta i {
margin-right: 8px;
      color: #4361ee;
}

.read-more-btn {
background: #4361ee;
      color: white;
      padding: 12px 30px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s;
}

.read-more-btn i {
margin-left: 8px;
      transition: transform 0.3s;
}

.read-more-btn:hover {
background: #3a0ca3;
      color: white;
      transform: translateY(-2px);
}

.read-more-btn:hover i {
transform: translateX(5px);
}

/* Blog Cards */
    .blog-card {
background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      height: 100%;
      border: 1px solid #eef2f6;
      display: flex;
      flex-direction: column;
}

.blog-card:hover {
transform: translateY(-8px);
      box-shadow: 0 30px 50px rgba(67, 97, 238, 0.15);
      border-color: transparent;
}

.blog-image {
height: 220px;
      background-size: cover;
      background-position: center;
      position: relative;
}

.blog-category {
position: absolute;
      top: 20px;
      right: 20px;
      background: white;
      padding: 6px 15px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 13px;
      color: #4361ee;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      z-index: 2;
}

.blog-content {
padding: 25px;
      flex: 1;
      display: flex;
      flex-direction: column;
}

.blog-meta {
display: flex;
      gap: 15px;
      margin-bottom: 15px;
      font-size: 13px;
      color: #64748b;
}

.blog-meta i {
margin-right: 5px;
      color: #4361ee;
}

.blog-content h3 {
font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.4;
}

.blog-content p {
color: #64748b;
      margin-bottom: 20px;
      line-height: 1.6;
      flex: 1;
}

.blog-footer {
display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 15px;
      border-top: 1px solid #eef2f6;
}

.author {
display: flex;
      align-items: center;
}

.author-image {
width: 35px;
      height: 35px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      margin-right: 10px;
}

.author-name {
font-size: 14px;
      font-weight: 600;
      color: #1e293b;
}

.read-link {
color: #4361ee;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
}

.read-link i {
margin-left: 5px;
      transition: transform 0.3s;
}

.read-link:hover {
color: #3a0ca3;
}

.read-link:hover i {
transform: translateX(5px);
}

/* Sidebar */
    .sidebar-widget {
background: white;
      border-radius: 24px;
      padding: 30px;
      border: 1px solid #eef2f6;
      margin-bottom: 30px;
}

.widget-title {
font-size: 20px;
      font-weight: 700;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 15px;
}

.widget-title:after {
content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: #4361ee;
      border-radius: 3px;
}

.search-form {
position: relative;
}

.search-form input {
width: 100%;
      padding: 15px 50px 15px 20px;
      border: 1px solid #eef2f6;
      border-radius: 50px;
      font-size: 15px;
      transition: all 0.3s;
}

.search-form input:focus {
outline: none;
      border-color: #4361ee;
      box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.search-form button {
position: absolute;
      right: 5px;
      top: 5px;
      background: #4361ee;
      border: none;
      color: white;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
}

.search-form button:hover {
background: #3a0ca3;
}

.category-list {
list-style: none;
      padding: 0;
      margin: 0;
}

.category-list li {
margin-bottom: 12px;
      border-bottom: 1px solid #eef2f6;
      padding-bottom: 12px;
}

.category-list li:last-child {
border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
}

.category-list a {
color: #475569;
      text-decoration: none;
      display: flex;
      justify-content: space-between;
      transition: all 0.3s;
}

.category-list a:hover {
color: #4361ee;
      padding-left: 5px;
}

.category-list span {
color: #64748b;
      font-size: 14px;
}

.popular-post {
display: flex;
      gap: 15px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #eef2f6;
}

.popular-post:last-child {
border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
}

.popular-image {
width: 80px;
      height: 80px;
      border-radius: 16px;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
}

.popular-content h4 {
font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
      line-height: 1.4;
}

.popular-content a {
color: #1e293b;
      text-decoration: none;
      transition: color 0.3s;
}

.popular-content a:hover {
color: #4361ee;
}

.popular-date {
font-size: 13px;
      color: #64748b;
}

.tag-cloud {
display: flex;
      flex-wrap: wrap;
      gap: 10px;
}

.tag {
background: #f8fafc;
      color: #475569;
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.3s;
      border: 1px solid #eef2f6;
}

.tag:hover {
background: #4361ee;
      color: white;
      border-color: #4361ee;
      transform: translateY(-2px);
}

/* Pagination */
    .pagination {
margin-top: 50px;
      justify-content: center;
}

.page-link {
color: #475569;
      border: 1px solid #eef2f6;
      margin: 0 5px;
      border-radius: 12px !important;
      padding: 10px 18px;
      font-weight: 500;
      transition: all 0.3s;
}

.page-link:hover,
    .page-item.active .page-link {
background: #4361ee;
      color: white;
      border-color: #4361ee;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

/* Newsletter */
    .newsletter-widget {
background: linear-gradient(135deg, #4361ee, #3a0ca3);
      color: white;
}

.newsletter-widget .widget-title {
color: white;
}

.newsletter-widget .widget-title:after {
background: white;
}

.newsletter-widget p {
color: rgba(255,255,255,0.8);
      margin-bottom: 20px;
}

.newsletter-input {
width: 100%;
      padding: 12px 20px;
      border: none;
      border-radius: 50px;
      margin-bottom: 10px;
}

.newsletter-btn {
width: 100%;
      background: white;
      color: #4361ee;
      border: none;
      padding: 12px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s;
}

.newsletter-btn:hover {
background: #f8fafc;
      transform: translateY(-2px);
}

.featured-title {
font-size: 24px;
}

}

    /* Page specific styles - consistent with predictive-analytics page */
    .page-header {
background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
      padding: 160px 0 80px;
      position: relative;
      overflow: hidden;
}




    /* Page specific styles */
    .page-header {
background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
      padding: 160px 0 80px;
      position: relative;
      overflow: hidden;
}

/* Culture Cards */
    .culture-card {
background: white;
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      border: 1px solid #eef2f6;
      height: 100%;
      text-align: center;
}

.culture-card:hover {
transform: translateY(-8px);
      box-shadow: 0 30px 50px rgba(67, 97, 238, 0.15);
      border-color: transparent;
}

.culture-icon {
width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(76, 201, 240, 0.1) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
}

.culture-icon i {
font-size: 40px;
      color: #4361ee;
}

.culture-card h4 {
font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #1e293b;
}

.culture-card p {
color: #64748b;
      line-height: 1.6;
}

/* Job Cards */
    .job-card {
background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      border: 1px solid #eef2f6;
      height: 100%;
      display: flex;
      flex-direction: column;
}

.job-card:hover {
transform: translateY(-5px);
      box-shadow: 0 25px 40px rgba(67, 97, 238, 0.12);
      border-color: transparent;
}

.job-type {
display: inline-block;
      padding: 4px 12px;
      background: rgba(67, 97, 238, 0.1);
      color: #4361ee;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 15px;
}

.job-card h3 {
font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #1e293b;
}

.job-location {
display: flex;
      align-items: center;
      color: #64748b;
      font-size: 14px;
      margin-bottom: 10px;
}

.job-location i {
color: #4361ee;
      margin-right: 8px;
      font-size: 16px;
}

.job-desc {
color: #64748b;
      margin-bottom: 20px;
      line-height: 1.6;
      flex: 1;
}

.job-tags {
display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
}

.job-tag {
background: #f8fafc;
      color: #475569;
      padding: 4px 10px;
      border-radius: 30px;
      font-size: 12px;
      border: 1px solid #eef2f6;
}

.apply-btn {
background: none;
      border: 2px solid #4361ee;
      color: #4361ee;
      padding: 10px 20px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: auto;
}

.apply-btn i {
margin-left: 8px;
      transition: transform 0.3s;
}

.apply-btn:hover {
background: #4361ee;
      color: white;
}

.apply-btn:hover i {
transform: translateX(5px);
}

/* Benefits Section */
    .benefit-item {
display: flex;
      align-items: center;
      margin-bottom: 20px;
}

.benefit-icon {
width: 50px;
      height: 50px;
      background: rgba(67, 97, 238, 0.1);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
}

.benefit-icon i {
font-size: 24px;
      color: #4361ee;
}

.benefit-content h5 {
font-size: 18px;
      font-weight: 600;
      margin-bottom: 5px;
      color: #1e293b;
}

.benefit-content p {
color: #64748b;
      margin-bottom: 0;
      font-size: 14px;
}

/* Filter buttons */
    .filter-container {
margin-bottom: 40px;
}

.filter-btn {
background: white;
      border: 1px solid #eef2f6;
      color: #475569;
      padding: 8px 24px;
      border-radius: 40px;
      font-weight: 500;
      transition: all 0.3s;
      margin: 0 5px 10px;
}

.filter-btn:hover,
    .filter-btn.active {
background: #4361ee;
      color: white;
      border-color: #4361ee;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

/* Case Study Cards */
    .case-study-main-card {
background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      height: 100%;
      border: 1px solid #eef2f6;
}

.case-study-main-card:hover {
transform: translateY(-8px);
      box-shadow: 0 30px 50px rgba(67, 97, 238, 0.15);
      border-color: transparent;
}

.case-study-image {
height: 240px;
      background-size: cover;
      background-position: center;
      position: relative;
}

.case-study-category {
position: absolute;
      top: 20px;
      right: 20px;
      background: white;
      padding: 8px 16px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 14px;
      color: #4361ee;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      z-index: 2;
}

.case-study-content {
padding: 30px;
}

.case-study-content h3 {
font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.4;
}

.case-study-content p {
color: #64748b;
      margin-bottom: 20px;
      line-height: 1.7;
}

.case-study-results {
display: flex;
      gap: 20px;
      margin: 25px 0;
      padding: 20px 0;
      border-top: 1px solid #eef2f6;
      border-bottom: 1px solid #eef2f6;
}

.result-item {
flex: 1;
      text-align: center;
}

.result-value {
font-size: 24px;
      font-weight: 700;
      color: #4361ee;
      display: block;
      line-height: 1.2;
}

.result-label {
font-size: 13px;
      color: #64748b;
}

.read-more-link {
color: #4361ee;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s;
}

.read-more-link i {
margin-left: 8px;
      transition: transform 0.3s;
}

.read-more-link:hover {
color: #3a0ca3;
}

.read-more-link:hover i {
transform: translateX(5px);
}

/* Stats Section */
    .stats-wrapper {
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      border-radius: 40px;
      padding: 60px 40px;
      margin: 40px 0;
}

/* Testimonial */
    .testimonial-card {
background: white;
      border-radius: 24px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      border: 1px solid #eef2f6;
}

.testimonial-quote {
font-size: 18px;
      color: #1e293b;
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
}

.testimonial-author {
display: flex;
      align-items: center;
}

.author-image {
width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
}

.author-name {
font-weight: 700;
      color: #1e293b;
      margin-bottom: 5px;
}

.author-title {
font-size: 14px;
      color: #64748b;
}



    /* Page specific styles - consistent with other service pages */
    .page-header {
background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
      padding: 160px 0 80px;
      position: relative;
      overflow: hidden;
}

/* Contact Cards */
    .contact-card {
background: white;
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      border: 1px solid #eef2f6;
      height: 40%;
}

.contact-card:hover {
transform: translateY(-5px);
      box-shadow: 0 30px 50px rgba(67, 97, 238, 0.15);
      border-color: transparent;
}

.office-badge {
background: #4361ee;
      color: white;
      padding: 5px 15px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
}

.info-item {
display: flex;
      margin-bottom: 20px;
}

.info-item i {
font-size: 20px;
      color: #4361ee;
      margin-right: 15px;
      margin-top: 3px;
}

.info-item h4 {
font-size: 18px;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 5px;
}

.info-item p {
color: #64748b;
      margin-bottom: 0;
      line-height: 1.6;
}

/* Contact Form */
    .contact-form-wrapper {
background: white;
      border-radius: 30px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      border: 1px solid #eef2f6;
}

.form-control {
border: 1px solid #eef2f6;
      border-radius: 16px;
      padding: 12px 20px;
      font-size: 15px;
      transition: all 0.3s;
}

.form-control:focus {
border-color: #4361ee;
      box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
      outline: none;
}

.btn-submit {
background: #4361ee;
      color: white;
      border: none;
      padding: 14px 40px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s;
}

.btn-submit:hover {
background: #3a0ca3;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

/* Social links */
    .social-links-contact {
display: flex;
      gap: 15px;
      margin-top: 20px;
}

.social-links-contact a {
width: 45px;
      height: 45px;
      background: #f8fafc;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #4361ee;
      transition: all 0.3s;
      text-decoration: none;
      border: 1px solid #eef2f6;
}

.social-links-contact a:hover {
background: #4361ee;
      color: white;
      transform: translateY(-3px);
}



    /* Additional floating animations */
    .float-animation {
animation: float 6s ease-in-out infinite;
}


    
    .pulse-animation {
animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
0% { opacity: 0.6;
}

50% {
opacity: 1;
}

100% {
opacity: 0.6;
}

}
    
    .glow-animation {
animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
0% { box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.3);
}

50% {
box-shadow: 0 0 30px 10px rgba(67, 97, 238, 0.2);
}

100% {
box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.3);
}

}
    
    .rotate-slow {
animation: rotate 20s linear infinite;
}



    /* Mobile Menu Fixes */
    @media (max-width: 991px) {
.navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
        padding: 80px 20px 30px;
        overflow-y: auto;
        z-index: 999;
}

.navbar.navbar-mobile {
right: 0;
}

.navbar .mobile-nav-toggle {
position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        font-size: 28px;
        cursor: pointer;
        color: #1e293b;
        background: white;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .mobile-nav-toggle.bi-list {
display: block;
}

.navbar .mobile-nav-toggle.bi-x {
display: none;
}

.navbar.navbar-mobile .mobile-nav-toggle.bi-list {
display: none;
}

.navbar.navbar-mobile .mobile-nav-toggle.bi-x {
display: flex;
}

.navbar ul {
display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
        list-style: none;
}

.navbar li {
position: relative;
        padding: 0;
        margin: 0;
        width: 100%;
}

.navbar > ul > li {
margin-bottom: 10px;
        border-bottom: 1px solid #eef2f6;
        padding-bottom: 10px;
}

.navbar a,
      .navbar a:focus {
display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
        font-size: 15px;
        font-weight: 500;
        color: #1e293b;
        white-space: nowrap;
        transition: 0.3s;
        text-decoration: none;
}

.navbar a i,
      .navbar a:focus i {
font-size: 12px;
        line-height: 0;
        margin-left: 5px;
}

.navbar a:hover,
      .navbar .active,
      .navbar .active:focus {
color: #4361ee;
}

.navbar .dropdown ul {
position: static;
        display: none;
        padding: 10px 0 10px 20px;
        margin: 0;
        background: transparent;
        box-shadow: none;
        border: none;
}

.navbar .dropdown ul li {
border-bottom: none;
        margin-bottom: 5px;
}

.navbar .dropdown ul a {
padding: 8px 0;
        font-size: 14px;
        color: #475569;
}

.navbar .dropdown ul a:hover {
color: #4361ee;
}

.navbar .dropdown > .dropdown-indicator {
transition: transform 0.3s;
}

.navbar .dropdown.active > .dropdown-indicator {
transform: rotate(180deg);
}

.navbar .dropdown.active ul {
display: block;
}

.navbar .get-started-btn {
margin: 20px 0 0;
        text-align: center;
        display: inline-block;
        width: 100%;
        padding: 12px 30px;
        background: #4361ee;
        color: white;
        border-radius: 50px;
}

.navbar .get-started-btn:hover {
background: #3a0ca3;
}

/* Overlay */
      .mobile-nav-overlay {
position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
}

.mobile-nav-overlay.active {
opacity: 1;
        visibility: visible;
}

}

    /* Ensure dropdown menus are visible */
    .navbar .dropdown ul {
background: white;
      border-radius: 8px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* Page specific styles - consistent with overall design */
    .page-header {
background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
      padding: 160px 0 80px;
      position: relative;
      overflow: hidden;
}

.section-header {
text-align: center;
      margin-bottom: 60px;
}

.section-header h2 {
font-size: 32px;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 10px;
}

.section-header p {
font-size: 16px;
      color: #64748b;
      max-width: 700px;
      margin: 0 auto;
}

.industry-card {
background: white;
      border-radius: 24px;
      padding: 2rem;
      box-shadow: 0 8px 28px rgba(0,0,0,0.02);
      border: 1px solid #f0f3fa;
      transition: all 0.25s ease;
      height: 100%;
}

.industry-card:hover {
transform: translateY(-6px);
      box-shadow: 0 25px 40px -10px rgba(37, 99, 235, 0.12);
      border-color: transparent;
}

.industry-icon-large {
width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(76, 201, 240, 0.1) 100%);
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
}

.industry-icon-large i {
font-size: 40px;
      background: linear-gradient(135deg, #4361ee, #4cc9f0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
}

.solution-badge {
background: #e0e9ff;
      color: #1d3eb0;
      padding: 0.3rem 1rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.8rem;
      display: inline-block;
      margin-right: 0.5rem;
      margin-bottom: 0.5rem;
}

.industry-section {
scroll-margin-top: 100px;
      padding: 80px 0;
      border-bottom: 1px solid #eef2f6;
}

.industry-section:last-of-type {
border-bottom: none;
}

.industry-section:nth-child(even) {
background: #fafcff;
}

.stat-highlight {
font-size: 2.5rem;
      font-weight: 700;
      color: #1d3eb0;
      line-height: 1.2;
}

.quick-nav {
background: white;
      padding: 1rem 0;
      border-bottom: 1px solid #eef2f6;
      position: sticky;
      top: 80px;
      z-index: 99;
      backdrop-filter: blur(10px);
      background-color: rgba(255, 255, 255, 0.9);
}

.quick-nav .nav-link {
color: #475569;
      font-weight: 500;
      padding: 0.5rem 1rem;
      transition: all 0.2s;
}

.quick-nav .nav-link:hover {
color: #4361ee;
}

.quick-nav .nav-link i {
margin-right: 0.5rem;
}

.quick-nav .nav-link span {
display: none;
}

.quick-nav .nav-link i {
margin-right: 0;
        font-size: 1.2rem;
}

.algorithm-card {
background: white;
      border-radius: 16px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      border: 1px solid #eef2f6;
      height: 100%;
      text-align: center;
}

.algorithm-card:hover {
transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(67, 97, 238, 0.1);
      border-color: transparent;
}

.algorithm-icon {
width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #4361ee, #4cc9f0);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
}

.algorithm-icon i {
font-size: 30px;
      color: white;
}



    .comparison-table {
background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      border: 1px solid #eef2f6;
}

.comparison-table th {
background: linear-gradient(135deg, #f8fafc, #eef2f6);
      padding: 20px;
      font-weight: 700;
      color: #1e293b;
}

.comparison-table td {
padding: 15px 20px;
      border-bottom: 1px solid #eef2f6;
}

.comparison-table tr:last-child td {
border-bottom: none;
}

.badge-ml {
background: linear-gradient(135deg, #4361ee, #4cc9f0);
      color: white;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
}

/* Policy Content */
    .policy-content {
background: white;
      border-radius: 30px;
      padding: 50px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      border: 1px solid #eef2f6;
}

.policy-content h2 {
font-size: 28px;
      font-weight: 700;
      color: #1e293b;
      margin-top: 40px;
      margin-bottom: 20px;
}

.policy-content h2:first-of-type {
margin-top: 0;
}

.policy-content h3 {
font-size: 22px;
      font-weight: 600;
      color: #1e293b;
      margin-top: 30px;
      margin-bottom: 15px;
}

.policy-content p {
color: #475569;
      line-height: 1.8;
      margin-bottom: 20px;
}

.policy-content ul, .policy-content ol {
color: #475569;
      line-height: 1.8;
      margin-bottom: 20px;
      padding-left: 20px;
}

.policy-content li {
margin-bottom: 10px;
}

.policy-content strong {
color: #1e293b;
}

.policy-content hr {
margin: 40px 0;
      opacity: 0.2;
}

.last-updated {
font-size: 14px;
      color: #64748b;
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 1px solid #eef2f6;
}

.table-of-contents {
background: #f8fafc;
      border-radius: 20px;
      padding: 25px;
      margin-bottom: 40px;
      border: 1px solid #eef2f6;
}

.table-of-contents h4 {
font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #1e293b;
}

.table-of-contents ul {
list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 10px 20px;
}

.table-of-contents li {
margin-bottom: 0;
}

.table-of-contents a {
color: #4361ee;
      text-decoration: none;
      font-size: 14px;
      transition: all 0.3s;
}

.table-of-contents a:hover {
color: #3a0ca3;
      text-decoration: underline;
}

.policy-content {
padding: 30px;
}



     /* Page specific styles */
    .page-header {
background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
      padding: 160px 0 80px;
      position: relative;
      overflow: hidden;
}

/* Team Cards */
    .team-card {
background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      border: 1px solid #eef2f6;
      height: 100%;
}

.team-card:hover {
transform: translateY(-10px);
      box-shadow: 0 30px 50px rgba(67, 97, 238, 0.15);
      border-color: transparent;
}

.team-image {
height: 320px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
}

.team-image::after {
content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 30%;
      background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
      opacity: 0;
      transition: opacity 0.3s;
}

.team-card:hover .team-image::after {
opacity: 1;
}

.team-social {
position: absolute;
      bottom: 20px;
      left: 0;
      width: 100%;
      display: flex;
      gap: 15px;
      justify-content: center;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s;
      z-index: 2;
}

.team-card:hover .team-social {
opacity: 1;
      transform: translateY(0);
}

.team-social a {
width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #4361ee;
      transition: all 0.3s;
      text-decoration: none;
}

.team-info .position {
color: #4361ee;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 15px;
      display: inline-block;
      padding: 4px 12px;
      background: rgba(67, 97, 238, 0.1);
      border-radius: 30px;
}

.team-info p {
color: #64748b;
      line-height: 1.6;
      margin-bottom: 0;
      font-size: 14px;
}

/* Expertise badges */
    .expertise-badge {
background: #f8fafc;
      color: #475569;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 500;
      margin-right: 5px;
      margin-bottom: 5px;
      display: inline-block;
      border: 1px solid #eef2f6;
}

/* Leadership section */
    .leadership-quote {
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      border-radius: 40px;
      padding: 60px;
      margin: 60px 0;
      border: 1px solid #eef2f6;
}

.quote-icon {
font-size: 60px;
      color: #4361ee;
      opacity: 0.3;
      margin-bottom: 20px;
}

.leadership-quote p {
font-size: 24px;
      font-weight: 500;
      color: #1e293b;
      line-height: 1.5;
      margin-bottom: 30px;
}

.quote-author {
font-size: 18px;
      font-weight: 700;
      color: #4361ee;
}

.quote-title {
color: #64748b;
      font-size: 14px;
}

.leadership-quote {
padding: 30px;
}

.leadership-quote p {
font-size: 18px;
}

/* Tabs */
    .webinar-tabs {
border-bottom: 1px solid #eef2f6;
      margin-bottom: 40px;
      display: flex;
      gap: 20px;
}

.tab-btn {
background: none;
      border: none;
      padding: 12px 24px;
      font-weight: 600;
      color: #64748b;
      position: relative;
      transition: all 0.3s;
}

.tab-btn:hover {
color: #4361ee;
}

.tab-btn.active {
color: #4361ee;
}

.tab-btn.active:after {
content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 2px;
      background: #4361ee;
}

/* Webinar Cards */
    .webinar-card {
background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      height: 100%;
      border: 1px solid #eef2f6;
      display: flex;
      flex-direction: column;
}

.webinar-card:hover {
transform: translateY(-8px);
      box-shadow: 0 30px 50px rgba(67, 97, 238, 0.15);
      border-color: transparent;
}

.webinar-image {
height: 180px;
      background-size: cover;
      background-position: center;
      position: relative;
}

.webinar-badge {
position: absolute;
      top: 15px;
      right: 15px;
      padding: 5px 15px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 600;
      z-index: 2;
}

.badge-live {
background: #ff4444;
      color: white;
}

.badge-on-demand {
background: #4361ee;
      color: white;
}

.badge-upcoming {
background: #ffbb33;
      color: #1e293b;
}

.webinar-content {
padding: 25px;
      flex: 1;
      display: flex;
      flex-direction: column;
}

.webinar-meta {
display: flex;
      gap: 15px;
      margin-bottom: 15px;
      font-size: 14px;
      color: #64748b;
}

.webinar-meta i {
margin-right: 5px;
      color: #4361ee;
}

.webinar-content h3 {
font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.4;
}

.webinar-content p {
color: #64748b;
      margin-bottom: 20px;
      line-height: 1.6;
      flex: 1;
}

.webinar-speaker {
display: flex;
      align-items: center;
      margin-bottom: 20px;
      padding: 15px 0;
      border-top: 1px solid #eef2f6;
      border-bottom: 1px solid #eef2f6;
}

.speaker-image {
width: 50px;
      height: 50px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      margin-right: 15px;
}

.speaker-info h5 {
font-size: 16px;
      font-weight: 600;
      margin-bottom: 5px;
}

.speaker-info p {
font-size: 13px;
      color: #64748b;
      margin: 0;
}

.webinar-footer {
display: flex;
      justify-content: space-between;
      align-items: center;
}

.webinar-price {
font-weight: 600;
      color: #4361ee;
}

.webinar-price.free {
color: #10b981;
}

.register-btn {
background: #4361ee;
      color: white;
      padding: 8px 20px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.3s;
      border: none;
}

.register-btn:hover {
background: #3a0ca3;
      color: white;
      transform: translateY(-2px);
}

.watch-btn {
background: none;
      border: 2px solid #4361ee;
      color: #4361ee;
      padding: 8px 20px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.3s;
}

.watch-btn:hover {
background: #4361ee;
      color: white;
}

/* Featured Webinar */
    .featured-webinar {
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      border-radius: 30px;
      padding: 40px;
      margin-bottom: 50px;
      border: 1px solid #eef2f6;
}

.featured-label {
background: #4361ee;
      color: white;
      padding: 5px 15px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
}

.countdown-timer {
display: flex;
      gap: 15px;
      margin: 25px 0;
}

.countdown-block {
text-align: center;
      background: white;
      border-radius: 12px;
      padding: 15px;
      min-width: 80px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.countdown-number {
font-size: 32px;
      font-weight: 800;
      color: #4361ee;
      line-height: 1;
}

.countdown-label {
font-size: 12px;
      color: #64748b;
      margin-top: 5px;
}

/* Host Section */
    .host-card {
background: white;
      border-radius: 16px;
      padding: 30px;
      text-align: center;
      border: 1px solid #eef2f6;
      height: 100%;
      transition: all 0.3s;
}

.host-card:hover {
transform: translateY(-5px);
      box-shadow: 0 20px 30px rgba(67, 97, 238, 0.1);
}

.host-image {
width: 100px;
      height: 100px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      margin: 0 auto 20px;
      border: 3px solid #4361ee;
}

.host-card h4 {
font-size: 18px;
      font-weight: 700;
      margin-bottom: 5px;
}

.host-title {
color: #4361ee;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 15px;
}

.host-bio {
color: #64748b;
      font-size: 14px;
}

.countdown-timer {
flex-wrap: wrap;
}

/* Filter Section */
    .filter-container {
margin-bottom: 40px;
}

/* Whitepaper Cards */
    .whitepaper-card {
background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s;
      height: 100%;
      border: 1px solid #eef2f6;
      display: flex;
      flex-direction: column;
}

.whitepaper-card:hover {
transform: translateY(-8px);
      box-shadow: 0 30px 50px rgba(67, 97, 238, 0.15);
      border-color: transparent;
}

.whitepaper-image {
height: 200px;
      background-size: cover;
      background-position: center;
      position: relative;
      background-color: #f1f5f9;
      display: flex;
      align-items: center;
      justify-content: center;
}

.whitepaper-image i {
font-size: 60px;
      color: #4361ee;
      opacity: 0.3;
}

.whitepaper-category {
position: absolute;
      top: 20px;
      right: 20px;
      background: white;
      padding: 8px 16px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 14px;
      color: #4361ee;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      z-index: 2;
}

.whitepaper-content {
padding: 25px;
      flex: 1;
      display: flex;
      flex-direction: column;
}

.whitepaper-meta {
display: flex;
      gap: 20px;
      margin-bottom: 15px;
      font-size: 14px;
      color: #64748b;
}

.whitepaper-meta i {
margin-right: 5px;
      color: #4361ee;
}

.whitepaper-content h3 {
font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.4;
}

.whitepaper-content p {
color: #64748b;
      margin-bottom: 20px;
      line-height: 1.6;
      flex: 1;
}

.whitepaper-footer {
display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
      border-top: 1px solid #eef2f6;
}

.pages {
font-size: 14px;
      color: #64748b;
}

.download-btn {
background: none;
      border: none;
      color: #4361ee;
      font-weight: 600;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
}

.download-btn i {
margin-left: 8px;
      transition: transform 0.3s;
}

.download-btn:hover {
color: #3a0ca3;
}

.download-btn:hover i {
transform: translateY(3px);
}

/* Featured Whitepaper */
    .featured-card {
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      border-radius: 30px;
      padding: 50px;
      margin-bottom: 60px;
      border: 1px solid #eef2f6;
}

.featured-title {
font-size: 36px;
      font-weight: 800;
      color: #1e293b;
      margin-bottom: 20px;
}

.featured-description {
font-size: 18px;
      color: #475569;
      margin-bottom: 30px;
}

.featured-meta {
display: flex;
      gap: 30px;
      margin-bottom: 30px;
}

.featured-meta-item {
display: flex;
      align-items: center;
}

.featured-meta-item i {
font-size: 24px;
      color: #4361ee;
      margin-right: 10px;
}

.featured-download-btn {
background: #4361ee;
      color: white;
      padding: 15px 40px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s;
      border: none;
}

.featured-download-btn i {
margin-left: 10px;
}

.featured-download-btn:hover {
background: #3a0ca3;
      transform: translateY(-2px);
      color: white;
}

/* Topics Section */
    .topic-card {
background: white;
      border-radius: 16px;
      padding: 25px;
      text-align: center;
      border: 1px solid #eef2f6;
      transition: all 0.3s;
      height: 100%;
}

.topic-card:hover {
transform: translateY(-5px);
      box-shadow: 0 20px 30px rgba(67, 97, 238, 0.1);
      border-color: transparent;
}

.topic-icon {
width: 70px;
      height: 70px;
      background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(76, 201, 240, 0.1) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
}

.topic-icon i {
font-size: 30px;
      color: #4361ee;
}

.topic-card h4 {
font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
}

.topic-card p {
color: #64748b;
      font-size: 14px;
      margin-bottom: 15px;
}

.topic-count {
color: #4361ee;
      font-weight: 600;
      font-size: 14px;
}

.featured-title {
font-size: 28px;
}
