/* Base Styles */
:root {
    --primary-color: #6c5ce7;
    --primary-dark: #5649c0;
    --secondary-color: #00cec9;
    --dark-color: #2d3436;
    --light-color: #f5f6fa;
    --gray-color: #636e72;
    --light-gray: #dfe6e9;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #d63031;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 5px 15px rgba(108, 92, 231, 0.3);
}
.btn:hover{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}
.support-icon i{
    color: var(--primary-color)!important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-highlight {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}
.btn:first-child:active{
    background-color: var(--primary-color);
    color: var(--light-color);
}
.btn-3p, .btn-3p:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    /* box-shadow: var(--shadow-primary); */
}
:not(.btn-check)+.btn:active{
    background-color: var(--primary-dark);
    color: var(--light-color);
    transform: translateY(-3px);
}
.btn-3p:active, .btn-common:active{
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    /* box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4); */
}

.btn-common {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-common:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--dark-color);
}

.section-header {
    text-align: center;
    margin: 60px 0;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.cube-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    perspective: 800px;
}

.cube-folding {
    width: 100px;
    height: 100px;
    position: relative;
    transform: rotateX(0) rotateY(0) rotateZ(0);
    transform-origin: 50px 50px 0;
    transform-style: preserve-3d;
    animation: cubeFold 2.5s infinite linear both;
}

.cube-folding span {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) inset;
    transform-origin: 50% 50% 0;
}

.leaf1 {
    transform: rotateX(90deg) rotateY(0) rotateZ(0);
    animation: foldAnimation 2.5s infinite ease both;
    animation-delay: 0.12s;
    background-color: var(--secondary-color) !important;
}

.leaf2 {
    transform: rotateX(180deg) rotateY(0) rotateZ(0);
    animation: foldAnimation 2.5s infinite ease both;
    animation-delay: 0.24s;
    background-color: var(--primary-dark) !important;
}

.leaf3 {
    transform: rotateX(270deg) rotateY(0) rotateZ(0);
    animation: foldAnimation 2.5s infinite ease both;
    animation-delay: 0.36s;
    background-color: var(--success-color) !important;
}

.leaf4 {
    transform: rotateX(360deg) rotateY(0) rotateZ(0);
    animation: foldAnimation 2.5s infinite ease both;
    animation-delay: 0.48s;
    background-color: var(--warning-color) !important;
}

.loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 80px);
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #fff;
    width: 100%;
    text-align: center;
}

@keyframes cubeFold {
    0%, 10% {
        transform: rotateX(0) rotateY(0) rotateZ(0);
    }
    25%, 35% {
        transform: rotateX(0) rotateY(-90deg) rotateZ(0);
    }
    50%, 60% {
        transform: rotateX(-90deg) rotateY(-90deg) rotateZ(0);
    }
    75%, 85% {
        transform: rotateX(-90deg) rotateY(-180deg) rotateZ(0);
    }
    100% {
        transform: rotateX(0) rotateY(-180deg) rotateZ(0);
    }
}

@keyframes foldAnimation {
    0%, 10% {
        opacity: 1;
        transform: rotateX(90deg) rotateY(0) rotateZ(0);
    }
    25%, 35% {
        opacity: 1;
        transform: rotateX(0) rotateY(0) rotateZ(0);
    }
    50%, 60% {
        opacity: 1;
        transform: rotateX(0) rotateY(90deg) rotateZ(0);
    }
    75%, 85% {
        opacity: 1;
        transform: rotateX(0) rotateY(180deg) rotateZ(0);
    }
    100% {
        opacity: 1;
        transform: rotateX(0) rotateY(0) rotateZ(0);
    }
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary-color);
    top: -100px;
    left: -100px;
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background-color: var(--secondary-color);
    bottom: -150px;
    right: -150px;
    animation: float 18s infinite ease-in-out reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background-color: var(--warning-color);
    top: 30%;
    right: 20%;
    animation: float 12s infinite ease-in-out;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background-color: var(--danger-color);
    bottom: 20%;
    left: 15%;
    animation: float 10s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, 50px);
    }
    50% {
        transform: translate(0, 100px);
    }
    75% {
        transform: translate(-50px, 50px);
    }
}

/* Navigation */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(45, 52, 54, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    margin-right: 10px;
}

.logo-text {
    color: #fff;
}

.logo-3d {
    color: var(--secondary-color);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
    width: calc(100% - 30px);
}

#demo-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}
/* .navbar-collapse.collapse.show{
    height: 100vh;
} */
/* Active Nav Item Styling */
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
    position: relative;
}

/* .navbar-dark .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #00cec9;
    transition: all 0.3s ease;
} */

/* Dropdown active state */
.navbar-dark .navbar-nav .dropdown-item.active {
    background-color: #6c5ce7;
    color: #fff !important;
}

/* Keep dropdown parent highlighted when on services page */
.navbar-dark .navbar-nav .dropdown.show > .nav-link {
    color: #fff;
}
/* Dropdown Menu Styling */
.navbar .dropdown-menu {
    background: rgba(45, 52, 54, 0.95);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: #6c5ce7;
    color: #fff;
    padding-left: 25px;
}

.navbar .dropdown-divider {
    border-color: rgba(108, 92, 231, 0.3);
    margin: 8px 0;
}

/* Arrow indicator */
.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.navbar .dropdown-toggle.show::after {
    transform: rotate(180deg);
}
/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1e272e 100%);
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero.webp') center/cover no-repeat;
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-visual {
    position: relative;
}

.hero-3d-container {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1000px;
}

.scene {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateScene 30s infinite linear;
}

@keyframes rotateScene {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 4px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollIndicator 2s infinite;
}

@keyframes scrollIndicator {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.client-logo {
    opacity: 0.6;
    transition: var(--transition);
    /* filter: grayscale(100%); */
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

.client-logo img {
    max-height: 80px;
    width: auto;
}

/* Services Section */
.services-section {
    padding: 50px 0;
    background-color: #fff;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.service-card:hover .service-link {
    color: #fff;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--gray-color);
    transition: var(--transition);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    margin-bottom: 25px;
    padding-left: 1rem;
}

.service-features li {
    position: relative;
    /* padding-left: 25px; */
    margin-bottom: 8px;
    color: var(--gray-color);
    transition: var(--transition);
}

.service-card:hover .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features li i {
    padding-right: 5px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-features li i {
    color: #fff;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Portfolio Pagination */
.portfolio-pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.portfolio-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  color: #2d3436;
  font-weight: 600;
  transition: all 0.3s ease;
}

.portfolio-pagination .page-link:hover,
.portfolio-pagination .page-link.active {
  background: #6c5ce7;
  color: #fff;
  border-color: #6c5ce7;
  transform: translateY(-3px);
}

.portfolio-pagination .page-link.next,
.portfolio-pagination .page-link.prev {
  width: auto;
  padding: 0 20px;
}

/* Fix for Bootstrap conflicts */
.portfolio-pagination .page-item {
  margin: 0;
  list-style: none;
}
/* Portfolio Section */
.portfolio-section {
    padding: 50px 0;
    background-color: var(--light-color);
}
.portfolio-preview, .featured-services {
    padding: 50px 0;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
}

.filter-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid var(--light-gray);
    border-radius: 50px;
    font-weight: 600;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}
.portfolio-item.filtered-out {
    opacity: 0;
    transform: translateY(20px);
    height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    overflow: hidden;
    display: none !important;
}
.portfolio-item:hover {
    transform: translateY(-10px);
    /* box-shadow: var(--shadow-lg); */
}
.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.9);
    height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    overflow: hidden;
}
.portfolio-img {
    width: 100%;
    border-radius: 10px;
    /* height: 250px; */
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to top, rgba(45, 52, 54, 0.9) 0%, transparent 100%); */
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: var(--transition);
}

.portfolio-overlay h3{
    color: var(--light-color);
}
.portfolio-overlay p{
    color: var(--light-color);
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.portfolio-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Process Section */
.process-section {
    padding: 50px 0;
    background-color: #fff;
    position: relative;
}

.process-steps {
    position: relative;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-gray);
    z-index: 1;
}

.process-card {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: rgba(108, 92, 231, 0.1);
    margin-bottom: 15px;
    line-height: 1;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-card p {
    color: var(--gray-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 50px 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.testimonial-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(108, 92, 231, 0.1);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    padding: 50px 0;
    background-color: #fff;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: translateY(-20px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-color);
}

.pricing-header p {
    color: var(--gray-color);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.pricing-features li i.fa-check {
    color: var(--success-color);
}

.pricing-features li i.fa-times {
    color: var(--danger-color);
}

.pricing-custom {
    text-align: center;
    font-size: 1.1rem;
}

.pricing-custom a {
    color: var(--primary-color);
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 50px 0;
    background-color: var(--light-color);
}

.about-image {
    position: relative;
    height: 100%;
}

.about-img-main {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: auto;
    display: block;
}

.about-img-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.badge-content {
    text-align: center;
    color: #fff;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-text {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Tech Stack Section */
.tech-section {
    padding: 50px 0;
    background-color: #fff;
}

.tech-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    opacity: 0.7;
}

.tech-item:hover {
    opacity: 1;
    transform: translateY(-10px);
}

.tech-item img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    /* filter: grayscale(100%); */
    transition: var(--transition);
}

.tech-item:hover img {
    filter: grayscale(0);
}

.tech-item span {
    font-weight: 600;
    color: var(--gray-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/about-team.webp') center/cover no-repeat;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.contact-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    padding: 10px 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(108, 92, 231, 0.25);
}

textarea.form-control {
    height: auto;
    min-height: 150px;
}

.upload-label {
    display: block;
    cursor: pointer;
}

.upload-input {
    display: none;
}

.upload-text {
    display: inline-flex;
    align-items: center;
    color: var(--gray-color);
    transition: var(--transition);
}

.upload-text i {
    margin-right: 8px;
    color: var(--primary-color);
}

.upload-text:hover {
    color: var(--primary-color);
}

.contact-info {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.info-content
.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-content p,
.info-content a {
    color: var(--gray-color);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 5px;
}

.info-content a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 80px 0 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-newsletter h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    border: none;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-primary);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

button.navbar-toggler{
    margin-right: 10px;
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .navbar-dark .navbar-nav .nav-link{
        padding: 7px;
    }
}
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px 0;
        background-color: rgba(45, 52, 54, 1);
    }
    nav.navbar.navbar-expand-lg.navbar-dark.fixed-top{
        max-height: 100vh;
        overflow-y: auto;
    }
    .hero {
        padding: 150px 0 80px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 50px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .process-line {
        display: none;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    .about-img-badge{
        right: 0;
    }
    
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .client-logos {
        gap: 15px;
    }
    
    .client-logo img {
        max-height: 30px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .about-img-badge {
        width: 100px;
        height: 100px;
        right: -10px;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
    
    .footer-links {
        margin-bottom: 30px;
    }
    .navbar-collapse.collapse {
        max-height: 80vh; 
        overflow-y: auto;
    }
    
    .navbar-collapse.collapse.show {
        padding-bottom: 20px;
    }
}

/* 
.tech-stack-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tech-stack-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tech-category {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.category-title {
  color: #6c5ce7;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  position: relative;
  padding-left: 1rem;
}

.category-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 4px;
  background: #6c5ce7;
  border-radius: 2px;
}

.tech-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1.5rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px);
}

.tech-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: grayscale(100%) opacity(80%);
  transition: all 0.3s ease;
}

.tech-item:hover img {
  filter: grayscale(0) opacity(100%);
}

.tech-item span {
  font-size: 0.9rem;
  text-align: center;
  color: #495057;
} */

/* About Page Start */
/* ===== About Page Specific Styles ===== */
.page-hero {
  /* position: relative;
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden; */
  background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    color: white;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
  /* content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 52, 54, 0.7); */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/about-team.webp) center / cover no-repeat;
    opacity: 0.05;
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
}

/* Our Story Section */
.our-story {
  padding: 30px 0 80px;
  background-color: #fff;
}

.our-story .section-header {
  margin: 40px;
}

.our-story img {
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.our-story img:hover {
  transform: scale(1.02);
}

/* Our Team Section */
.our-team {
  padding: 30px 0 80px;
  background-color: #f8f9fa;
}

.team-member {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(108, 92, 231, 0.2);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.team-member:hover img {
  filter: grayscale(0);
}

.team-info {
  padding: 20px;
  background: #fff;
  text-align: center;
}

.team-info h4 {
  margin-bottom: 5px;
  color: #2d3436;
}

.team-info p {
  color: #636e72;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social a {
  width: 36px;
  height: 36px;
  background: #f1f1f1;
  color: #6c5ce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #6c5ce7;
  color: #fff;
  transform: translateY(-3px);
}

/* Values Section */
.our-values {
  padding: 30px 0 100px;
  background: #fff;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(108, 92, 231, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: rgba(108, 92, 231, 0.1);
  color: #6c5ce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: #6c5ce7;
  color: #fff;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2d3436;
}

.value-card p {
  color: #636e72;
}

/* Awards Section */
.our-awards {
  padding: 100px 0;
  background: #f8f9fa;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.award-item {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.award-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(108, 92, 231, 0.2);
}

.award-item img {
  height: 100px;
  width: auto;
  margin: 0 auto 20px;
  object-fit: contain;
}

.award-item h4 {
  margin-bottom: 10px;
  color: #2d3436;
}

.award-item p {
  color: #636e72;
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/career.webp') center/cover no-repeat;
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-light {
  background: #fff;
  color: #6c5ce7;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background: #f1f1f1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .page-hero {
    padding: 120px 0 60px;
    text-align: center;
  }
  
  .page-hero h1 {
    font-size: 2.5rem;
  }
  
  .our-story, .our-team, .our-values, .our-awards {
    padding: 60px 0;
  }
  
  .team-member img {
    height: 250px;
  }
}

@media (max-width: 767.98px) {
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .awards-grid {
    grid-template-columns: 1fr;
  }
  
  .team-member {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* About Page end */

/* Career Page Start */
.careers-hero {
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    color: white;
    padding: 120px 0 100px;
    text-align: center;
}
.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/about-team.webp) center / cover no-repeat;
    opacity: 0.05;
}
.job-card {
    border-left: 4px solid #6c5ce7;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.job-card:hover {
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.2);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.careers-cta{
    margin: 15px 0;
}
/* Career Page End */

/* Privacy page start */
.legal-hero {
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    color: white;
    padding: 120px 0 100px;
    text-align: center;
}
.legal-content {
    padding: 80px 0;
}
.legal-section {
    margin-bottom: 50px;
}
.legal-section h2 {
    color: #6c5ce7;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f1f1;
}
.legal-sidebar {
    position: sticky;
    top: 120px;
}
.legal-sidebar .nav-link {
    color: #2d3436;
    padding: 10px 15px;
    border-left: 3px solid transparent;
}
.legal-sidebar .nav-link.active {
    border-left: 3px solid #6c5ce7;
    background-color: #f8f9fa;
    font-weight: 600;
}
.legal-sidebar .nav-link:hover:not(.active) {
    border-left: 3px solid #00cec9;
}
/* Privacy page end */

/* Terms Page Start */

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #6c5ce7;
    padding: 20px;
    margin: 20px 0;
}
/* Terms Page End */
/* Cookies Page Start */
 .cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.cookie-table th, .cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}
.cookie-table th {
    background-color: #f8f9fa;
}
.cookie-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
/* Terms Page End */

/* Contact Page Start */
.contact-main {
    padding: 60px 0;
}
.team-cta{
    margin: 30px 0;
}

@media (min-width: 576px) and (max-width: 992px) {
    .contact-info-wrapper{
        margin-top: 30px;
    }
    
}
@media (max-width: 576px) {
    .contact-info-wrapper{
        margin-top: 30px;
    }
    
}
@media ( max-width: 1024px) {
    .contact-map iframe{
        width: 100%;
    }
}

/* Price Page Start */
/* ===== Pricing Page Styles ===== */
.pricing-hero {
  background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
  color: white;
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/about-team.webp) center / cover no-repeat;
    opacity: 0.05;
}

.pricing-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.pricing-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  gap: 10px;
}

.pricing-tab {
  padding: 10px 25px;
  background: transparent;
  border: 2px solid #6c5ce7;
  color: #6c5ce7;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-tab.active,
.pricing-tab:hover {
  background: #6c5ce7;
  color: white;
}

.pricing-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.pricing-content.active {
  display: block;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(108, 92, 231, 0.2);
}

.pricing-card.featured {
  border: 2px solid #6c5ce7;
  transform: translateY(-20px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #6c5ce7;
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2d3436;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6c5ce7;
  margin-bottom: 10px;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #636e72;
}

.pricing-features {
  margin-bottom: 30px;
  padding-left: 10px;
}

.pricing-features li {
  margin-bottom: 15px;
  /* padding-left: 25px; */
  position: relative;
  color: #636e72;
}

/* .pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00b894;
  font-weight: bold;
} */

/* .pricing-features li.disabled:before {
  content: "✕";
  color: #d63031;
} */

.pricing-custom {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1rem;
}

.pricing-custom a {
  color: #6c5ce7;
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .pricing-hero {
    padding: 100px 0 60px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .pricing-hero h1 {
    font-size: 2.2rem;
  }
  
  .pricing-tabs {
    flex-wrap: wrap;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.pricing-faq{
    margin: 30px 0px;
}
.pricing-faq h2{
    margin-top: 25px;
    margin-bottom: 15px;
}
/* Price Page End */
/* FAQ Page Start */

.faq-hero {
  background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.faq-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Search Box */
.faq-search {
  padding: 40px 0;
  background: #f8f9fa;
}

.search-box {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 15px 25px;
  border-radius: 50px;
  border: 2px solid #dfe6e9;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-box input:focus {
  border-color: #6c5ce7;
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
}

.search-box button {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #6c5ce7;
  color: white;
  border: none;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-box button:hover {
  background: #5649c0;
}

/* Category Tabs */
.faq-categories {
  padding: 20px 0;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.category-tab {
  padding: 8px 20px;
  background: transparent;
  border: 2px solid #dfe6e9;
  border-radius: 50px;
  font-weight: 600;
  color: #636e72;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
  background: #6c5ce7;
  border-color: #6c5ce7;
  color: white;
}

/* FAQ Content */
.faq-content {
  padding: 60px 0;
}

.faq-category {
  display: none;
}

.faq-category.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* .accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #dfe6e9;
}

.accordion-header {
  background: white;
}

.accordion-button {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: white;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2d3436;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-button:hover {
  background: #f8f9fa;
}

.accordion-button:after {
  content: '+';
  font-size: 1.5rem;
  color: #6c5ce7;
  transition: all 0.3s ease;
}

.accordion-button.active:after {
  content: '-';
  transform: rotate(0deg);
}

.accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.accordion-body.show {
  padding: 20px;
  max-height: 500px;
}

.accordion-body p {
  color: #636e72;
  line-height: 1.6;
} */

/* Support Card */
.faq-support {
  padding: 60px 0;
  background: #f8f9fa;
}

.support-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.support-card h2 {
  margin-bottom: 20px;
  color: #2d3436;
}

.support-card p {
  color: #636e72;
  margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .faq-hero {
    padding: 80px 0;
  }
  
  .faq-hero h1 {
    font-size: 2.2rem;
  }
  
  .category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .accordion-button {
    padding: 15px;
    font-size: 1rem;
  }
}
/* FAQ Page End */

/*Support Page Start */
.support-hero {
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}
.support-options {
    padding: 80px 0;
}
.support-card {
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}
.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.2);
}
/*Support Page End */
/* Service Page Start */
/* ===== Services Page Styles ===== */
.services-hero {
  background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
  color: white;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/about-team.webp') center/cover no-repeat;
  opacity: 0.05;
}

.service-category-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.service-category-link {
  padding: 8px 20px;
  background: transparent;
  border: 2px solid #6c5ce7;
  color: #6c5ce7;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-category-link.active,
.service-category-link:hover {
  background: #6c5ce7;
  color: white;
}

.service-category {
  margin-bottom: 80px;
  padding: 30px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.service-categories {
  margin-bottom: 80px;
  padding: 30px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-details {
  padding: 20px 0;
}

.service-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.03);
}

.image-badge {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 120px;
  height: 120px;
  background: #6c5ce7;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  align-content: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.service-features {
  margin: 30px 0;
}

.service-features li {
  position: relative;
  /* padding-left: 30px; */
  margin-bottom: 15px;
}

/* .service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #6c5ce7;
} */

.service-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.tech-stack {
  background: #f8f9fa;
  padding: 80px 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-10px);
}

.tech-item img {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
  filter: grayscale(100%) opacity(80%);
  transition: all 0.3s ease;
}

.tech-item:hover img {
  filter: grayscale(0) opacity(100%);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .service-category {
    flex-direction: column;
  }
  
  .service-image {
    margin-bottom: 30px;
  }
  
  .image-badge {
    width: 100px;
    height: 100px;
    bottom: -15px;
    right: -15px;
  }
}

@media (max-width: 767.98px) {
  .service-actions {
    flex-direction: column;
  }
  
  .tech-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 20px;
  }
}
/* Service Page End */
/* Service Details Start */
/* ===== Service Details Page ===== */
.service-hero {
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Service Content */
.service-content {
    padding: 50px 0;
}

.service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.service-feature {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.feature-img {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2d3436;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.feature-list i {
    color: #6c5ce7;
    position: absolute;
    left: 0;
    top: 3px;
}

/* Process Steps */
.service-process {
    margin: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #6c5ce7;
    z-index: -1;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(108, 92, 231, 0.1);
    line-height: 1;
    margin-bottom: 15px;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 120px;
    padding: 40px 0;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2d3436;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #6c5ce7;
}

.service-meta {
    list-style: none;
    padding: 0;
}

.service-meta li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.service-meta i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #6c5ce7;
}

.related-services {
    list-style: none;
    padding: 0;
}

.related-services li {
    margin-bottom: 12px;
}

.related-services a {
    display: flex;
    align-items: center;
    color: #2d3436;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.related-services a:hover {
    color: #6c5ce7;
    padding-left: 5px;
}

.related-services i {
    margin-right: 10px;
    width: 25px;
    text-align: center;
}

/* Portfolio Showcase */
.portfolio-showcase {
    padding: 100px 0;
}

/* CTA Section */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    color: #fff;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-cta .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .service-hero {
        padding: 120px 0;
        text-align: center;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-sidebar {
        padding-top: 0;
    }
}

@media (max-width: 767.98px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}
/* Service Details End */
/* Blog Page Start */
/* ===== Blog Page Styles ===== */
.blog-hero {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    color: #fff;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.blog-hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.blog-search {
    max-width: 500px;
    margin: 0 auto;
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-form button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Blog Posts */
.featured-post {
    position: relative;
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.post-thumbnail img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post:hover .post-thumbnail img {
    transform: scale(1.03);
}

.post-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #6c5ce7;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #636e72;
}

.post-meta .category {
    color: #6c5ce7;
    font-weight: 600;
}

.post-title {
    font-size: 1.8rem;
    margin: 15px 0;
    line-height: 1.3;
}

.post-title a {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #6c5ce7;
}

.post-excerpt {
    color: #636e72;
    margin-bottom: 20px;
}

.read-more {
    color: #6c5ce7;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Grid */
.blog-post {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    padding: 20px;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.1);
}

.blog-post .post-thumbnail {
    height: 200px;
}

.blog-post .post-title {
    font-size: 1.3rem;
}

/* Filters */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #dfe6e9;
    border-radius: 50px;
    font-weight: 600;
    color: #636e72;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6c5ce7;
    color: #fff;
    border-color: #6c5ce7;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2d3436;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #6c5ce7;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #636e72;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: #6c5ce7;
    padding-left: 5px;
}

.category-list span {
    background: #f1f1f1;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.popular-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.popular-post .post-info h5 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.popular-post .post-info h5 a {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post .post-info h5 a:hover {
    color: #6c5ce7;
}

.popular-post .post-info .date {
    font-size: 0.8rem;
    color: #636e72;
}

.newsletter-form1 {
    margin-top: 20px;
}

.newsletter-form1 input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    margin-bottom: 10px;
}

.newsletter-form1 button {
    width: 100%;
    padding: 12px;
    background: #6c5ce7;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form1 button:hover {
    background: #5649c0;
}

/* Pagination */
.blog-pagination .page-item .page-link {
    color: #636e72;
    border: none;
    margin: 0 5px;
    border-radius: 8px !important;
}

.blog-pagination .page-item.active .page-link {
    background: #6c5ce7;
    color: #fff;
}

.blog-pagination .page-item:hover .page-link {
    color: #6c5ce7;
}

/* Responsive */
@media (max-width: 991.98px) {
    .blog-hero {
        padding: 100px 0;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .post-thumbnail img {
        height: 350px;
    }
}

@media (max-width: 767.98px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .post-thumbnail img {
        height: 250px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .blog-sidebar {
        margin-top: 50px;
    }
}
/* Blog Page End */
/* Blog Details Page Start */
/* Blog Post Styles */
.post-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    color: #fff;
    margin-bottom: 60px;
}

.post-hero .container {
    max-width: 900px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #636e72;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta span:not(:last-child):after {
    content: "•";
    margin-left: 20px;
    color: #b2bec3;
}

.post-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #2d3436;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--light-color);
}

.author-title {
    font-size: 0.9rem;
    color: #636e72;
}

/* Post Content Styles */
.post-content {
    padding: 60px 0;
}

.post-article {
    margin-bottom: 80px;
}

.post-featured-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3436;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 50px 0 25px;
    color: #2d3436;
    font-weight: 700;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: #2d3436;
    font-weight: 600;
}

.intro {
    font-size: 1.2rem;
    color: #2d3436;
    font-weight: 500;
    margin-bottom: 40px !important;
}

.tip-box {
    background: #f8f9fa;
    border-left: 4px solid #6c5ce7;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.tip-box h4 {
    color: #6c5ce7;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.image-comparison {
    margin: 40px 0;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #636e72;
    font-style: italic;
}

.conclusion {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 60px 0;
}

/* Article Footer */
.article-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #dfe6e9;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tag-label {
    font-weight: 600;
    color: #2d3436;
}

.tag {
    background: #f1f3f5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #636e72;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #dfe6e9;
    color: #2d3436;
    text-decoration: none;
}

.sharing {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 600;
    color: #2d3436;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 30px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 60px 0;
    align-items: center;
}

.bio-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6c5ce7;
}

.bio-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2d3436;
}

.bio-content p {
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 15px;
}

.author-social a {
    color: #636e72;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.author-social a:hover {
    color: #6c5ce7;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
}

.nav-previous, .nav-next {
    flex: 0 0 48%;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.nav-previous:hover, .nav-next:hover {
    background: #dfe6e9;
    text-decoration: none;
}

.nav-label {
    display: block;
    font-size: 0.9rem;
    color: #636e72;
    margin-bottom: 5px;
}

.nav-title {
    font-weight: 600;
    color: #2d3436;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .post-hero {
        padding: 100px 0 40px;
    }
    
    .post-hero h1 {
        font-size: 2rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-previous, .nav-next {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-meta span:not(:last-child):after {
        display: none;
    }
}

/* Related Posts */
.related-posts {
    margin: 80px 0;
    padding-top: 60px;
    border-top: 1px solid #dfe6e9;
}

.related-posts h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #2d3436;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.related-post {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.related-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-post-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.related-post-content {
    padding: 20px;
    background: white;
}

.related-post-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6c5ce7;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.related-post-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2d3436;
    line-height: 1.4;
}

.related-post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #636e72;
}

/* Comments Section */
.comments-section {
    margin: 80px 0;
    padding-top: 60px;
    border-top: 1px solid #dfe6e9;
}

.comments-section h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #2d3436;
}

.comment {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f3f5;
}

.comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comment.comment-reply {
    margin-left: 60px;
    border-left: 3px solid #dfe6e9;
    padding-left: 20px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author-info {
    display: flex;
    flex-direction: column;
}

.comment-author-name {
    font-weight: 600;
    color: #2d3436;
}

.comment-date {
    font-size: 0.9rem;
    color: #636e72;
}

.comment-content {
    margin-left: 65px;
}

.comment-content p {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

.comment-reply {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #6c5ce7;
    font-weight: 600;
    text-decoration: none;
}

.comment-reply:hover {
    text-decoration: underline;
}

/* Comment Form */
.comment-form {
    margin-top: 60px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.comment-form h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #2d3436;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3436;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* .btn-primary {
    background: #6c5ce7;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5649c0;
} */

/* Responsive */
@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .comment.comment-reply {
        margin-left: 30px;
    }
    
    .comment-content {
        margin-left: 0;
        padding-left: 15px;
    }
}
/* Blog Details Page End */
/* Portfolio Details Page Start */
/* Portfolio Detail Hero */
.portfolio-detail-hero {
    padding: 150px 0 80px;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.portfolio-detail-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.portfolio-detail-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Project Meta */
.project-meta {
    background: #f8f9fa;
    padding: 30px 0;
    margin-bottom: 60px;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.meta-item {
    text-align: center;
}

.meta-item h5 {
    color: #6c5ce7;
    margin-bottom: 5px;
    font-size: 1rem;
}

/* Project Content */
.project-article {
    margin-bottom: 60px;
}

.project-article h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.project-article h3 {
    margin: 40px 0 20px;
    font-size: 1.5rem;
    color: #2d3436;
}

.image-gallery {
    margin: 10px 0;
    display: inline-flex;
    /* gap: 20px; */
}
.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 6px 2px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin: 30px 0;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Sidebar */
.project-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-widget h4 {
    margin-bottom: 20px;
    color: #6c5ce7;
    font-size: 1.2rem;
}

.details-list {
    list-style: none;
    padding: 0;
}

.details-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.details-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-badge {
    background: rgba(108, 92, 231, 0.1);
    color: #6c5ce7;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.social-share {
    display: flex;
    gap: 15px;
}

.social-share a {
    width: 40px;
    height: 40px;
    background: #f1f1f1;
    color: #6c5ce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-share a:hover {
    background: #6c5ce7;
    color: #fff;
    transform: translateY(-3px);
}

/* Results Section */
.project-results {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 60px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.result-item {
    background: #fff;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: #6c5ce7;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.result-label {
    color: #636e72;
    font-size: 1.1rem;
}

/* Related Projects */
.related-projects {
    padding: 60px 0;
}

.related-project {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.related-project img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-project:hover img {
    transform: scale(1.05);
}

.related-project h5 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 15px;
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .portfolio-detail-hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .portfolio-detail-hero .btn {
        margin-top: 20px;
    }
    
    .project-sidebar {
        margin-top: 60px;
    }
}

@media (max-width: 767.98px) {
    .meta-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .portfolio-detail-hero h1 {
        font-size: 2.2rem;
    }
}
/* Portfolio Details Page End */
/*Team Page Start */
.team-hero {
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    background-size: cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}
.team-hero::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/about-team.webp) center / cover no-repeat;
    opacity: 0.05;
}
.team-member {
    margin-bottom: 40px;
    text-align: center;
}
.team-photo {
    width: 300px!important;
    height: 300px!important;
    border-radius: 10%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid #6c5ce7;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
/* Team Page End */
/* Case Study Page Start */
.case-study-hero{
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    color: white;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}
.case-study-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/about-team.webp) center / cover no-repeat;
    opacity: 0.05;
}
/* .case-study-hero {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    position: relative;
} */

.case-study-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.case-study-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.case-study-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.case-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Case Study Content */
.case-study-content {
    padding: 80px 0;
}

.case-section {
    margin-bottom: 60px;
}

.case-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d3436;
}

.case-section h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #2d3436;
}

/* Image Comparison */
.image-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.img-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.img-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Gallery */
.case-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.gallery-img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* Results */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.result-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6c5ce7;
    margin-bottom: 5px;
}

.result-text {
    font-size: 0.9rem;
    color: #636e72;
}

/* Sidebar */
.case-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2d3436;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
}

.project-details {
    list-style: none;
    padding: 0;
}

.project-details li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.project-details strong {
    color: #2d3436;
    min-width: 100px;
    display: inline-block;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-badge {
    background: #f1f1f1;
    color: #6c5ce7;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* More Cases */
.more-cases {
    padding: 60px 0;
    background: #f8f9fa;
}

.more-cases h2 {
    text-align: center;
    margin-bottom: 40px;
}

.case-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.case-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.case-thumbnail:hover .case-overlay {
    transform: translateY(0);
}

.case-thumbnail:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991.98px) {
    .case-study-hero {
        padding: 120px 0 60px;
    }
    
    .image-comparison {
        grid-template-columns: 1fr;
    }
    
    .case-sidebar {
        margin-top: 50px;
    }
}

@media (max-width: 767.98px) {
    .case-study-hero h1 {
        font-size: 2rem;
    }
    
    .case-meta {
        flex-direction: column;
        gap: 10px;
    }
}
ul.case-list{
    padding-left: 1rem;
}
/* Case Study Page End */