/* Base Styles */

:root {
    --primary-color: #4a6bff;
    --secondary-color: #ff6b6b;
    --dark-color: #2a2d3b;
    --light-color: #f8f9fa;
    --text-color: #555;
    --heading-color: #333;
    --border-color: #e1e1e1;
    --white: #fff;
    --black: #000;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    color: var(--heading-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

section {
    padding: 80px 0;
    position: relative;
}

.btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #3a5bef;
    border-color: #3a5bef;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 107, 255, 0.2);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 107, 255, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header span {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
}


/* Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(74, 107, 255, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}


/* Top Bar */

.top-bar {
    background-color: var(--dark-color);
    padding: 10px 0;
    color: var(--white);
    font-size: 14px;
}

.top-bar .contact-info a {
    color: var(--white);
    margin-right: 20px;
}

.top-bar .contact-info a i {
    margin-right: 5px;
    color: var(--primary-color);
}

.top-bar .social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 15px;
}

.top-bar .social-links a:hover {
    color: var(--primary-color);
}


/* Navigation */

.navbar {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
    height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 8px 15px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover:before,
.navbar-dark .navbar-nav .nav-link.active:before {
    transform: scaleX(1);
}

.navbar-dark .navbar-nav .nav-link.active {
    color: var(--white);
}


/* Hero Section */

.hero-section {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #2a2d3b 0%, #4a6bff 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-section h1 span {
    color: var(--secondary-color);
}

.hero-section .lead {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}


/* Services Section */

.services-section {
    background-color: #f9fafe;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 30px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.read-more i {
    margin-left: 5px;
    font-size: 12px;
}


/* About Section */

.about-section {
    background-color: var(--white);
}

.about-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.about-list li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 5px;
}


/* Stats Section */

.stats-section {
    background: linear-gradient(rgba(42, 45, 59, 0.9), rgba(42, 45, 59, 0.9)), url('../images/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 80px 0;
}

.stat-box {
    text-align: center;
    padding: 30px 15px;
}

.stat-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-box .counter {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    font-family: var(--font-secondary);
}

.stat-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 16px;
}


/* Portfolio Section */

.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.portfolio-wrap img {
    transition: all 0.3s ease;
    width: 100%;
}

.portfolio-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(74, 107, 255, 0.9);
    padding: 20px;
    color: var(--white);
    transition: all 0.3s ease;
}

.portfolio-wrap:hover .portfolio-info {
    bottom: 0;
}

.portfolio-wrap:hover img {
    transform: scale(1.1);
}

.portfolio-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
}

.portfolio-info p {
    margin-bottom: 0;
    font-size: 14px;
}

.portfolio-link {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-wrap:hover .portfolio-link {
    opacity: 1;
}


/* Testimonials Section */

.testimonials-section {
    background-color: #f9fafe;
}

.testimonial-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin: 15px;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.testimonial-content:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
    font-size: 60px;
    position: absolute;
    left: -15px;
    top: -15px;
    z-index: 0;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
}

.rating {
    color: #ffc107;
    margin-top: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-color);
}


/* CTA Section */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a5bef 100%);
    color: var(--white);
    padding: 60px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}


/* Blog Section */

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    transition: all 0.3s ease;
    width: 100%;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 14px;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--heading-color);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    margin-bottom: 15px;
}


/* Footer */

.footer {
    background-color: var(--dark-color);
    color: var(--white);
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 20px;
    max-height: 40px;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li a:hover {
    color: var(--primary-color);
}

.footer-newsletter input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 12px 15px;
    border-radius: 4px;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}


/* Back to Top */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}


/* Page Banner */

.page-banner {
    padding: 100px 0 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a5bef 100%);
    color: var(--white);
    position: relative;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}


/* Service Detail */

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 26px;
    margin: 30px 0 20px;
}

.service-content p {
    margin-bottom: 20px;
}

.service-content ul {
    margin-bottom: 20px;
}

.service-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-content ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.pricing-table {
    margin: 40px 0;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
}

.pricing-card ul {
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pricing-card ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 12px;
}

.case-study {
    background-color: #f9fafe;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.case-study h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}


/* Sidebar */

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.sidebar-widget ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: var(--text-color);
    display: block;
    transition: all 0.3s ease;
}

.sidebar-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.sidebar-widget ul li.active a {
    color: var(--primary-color);
    font-weight: 600;
}

.download-brochure {
    text-align: center;
    padding: 30px;
    background-color: #f9fafe;
    border-radius: 8px;
}

.download-brochure h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.download-brochure p {
    margin-bottom: 20px;
}

.help-widget {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a5bef 100%);
    border-radius: 8px;
    color: var(--white);
}

.help-widget h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
}

.help-widget p {
    margin-bottom: 20px;
}


/* Contact Form */

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.contact-form label span {
    color: var(--secondary-color);
}

.contact-form .form-control {
    height: 50px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(74, 107, 255, 0.25);
}

.contact-form textarea.form-control {
    height: auto;
}

.contact-info {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-box {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-box:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-text p {
    margin-bottom: 0;
}


/* Map */

.map-container {
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Team Section */

.team-member {
    margin-bottom: 30px;
    text-align: center;
}

.team-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-img img {
    width: 100%;
    transition: all 0.3s ease;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(74, 107, 255, 0.9);
    padding: 15px;
    transition: all 0.3s ease;
}

.team-member:hover .team-social {
    bottom: 0;
}

.team-member:hover .team-img img {
    transform: scale(1.1);
}

.team-social a {
    color: var(--white);
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.team-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-info span {
    color: var(--primary-color);
    font-size: 15px;
}


/* Why Choose Us */

.why-choose-us .accordion-button {
    font-weight: 600;
    padding: 15px 20px;
}

.why-choose-us .accordion-button:not(.collapsed) {
    background-color: rgba(74, 107, 255, 0.1);
    color: var(--primary-color);
}

.why-choose-us .accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.why-choose-us .accordion-item {
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid var(--border-color);
}


/* Client Logos */

.client-logos {
    padding: 60px 0;
    background-color: #f9fafe;
}

.client-logos h3 {
    text-align: center;
    margin-bottom: 30px;
}

.logo-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-slider img {
    margin: 15px 30px;
    opacity: 0.6;
    transition: all 0.3s ease;
    max-height: 40px;
    width: auto;
}

.logo-slider img:hover {
    opacity: 1;
}


/* Responsive Styles */

@media (max-width: 1199.98px) {
    .section-header h2 {
        font-size: 32px;
    }
    .hero-section h1 {
        font-size: 42px;
    }
}

@media (max-width: 991.98px) {
    section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .hero-section {
        padding: 120px 0 80px;
    }
    .hero-section h1 {
        font-size: 36px;
    }
    .navbar-collapse {
        background-color: var(--dark-color);
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
    }
    .top-bar .contact-info a {
        margin-right: 10px;
    }
    .top-bar .social-links a {
        margin-left: 10px;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 50px 0;
    }
    .section-header h2 {
        font-size: 26px;
    }
    .hero-section {
        padding: 100px 0 60px;
    }
    .hero-section h1 {
        font-size: 32px;
    }
    .hero-btns .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .top-bar .contact-info,
    .top-bar .social-links {
        justify-content: center !important;
        text-align: center;
    }
    .top-bar .contact-info a {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }
    .footer-bottom .text-end {
        text-align: left !important;
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 24px;
    }
    .hero-section h1 {
        font-size: 28px;
    }
    .page-banner h1 {
        font-size: 32px;
    }
    .service-content h2 {
        font-size: 26px;
    }
    .service-content h3 {
        font-size: 22px;
    }
}


/* Portfolio Filter */

.portfolio-filter {
    margin-bottom: 30px;
}

.portfolio-filter button {
    margin: 0 5px 10px;
}

.portfolio-filter button.active {
    background-color: var(--primary-color);
    color: var(--white);
}


/* Platform Icons */

.platform-icons {
    margin: 30px 0;
}

.platform-icon {
    padding: 15px;
    border-radius: 8px;
    background-color: #f9fafe;
    transition: all 0.3s ease;
}

.platform-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.platform-icon i {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
    color: var(--primary-color);
}

.platform-icon span {
    font-size: 14px;
    font-weight: 500;
}


/* Popular Posts */

.popular-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.popular-post-content h4 a {
    color: var(--heading-color);
}

.popular-post-content h4 a:hover {
    color: var(--primary-color);
}


/* Tags */

.tags {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.tags a {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f9fafe;
    border-radius: 30px;
    margin: 5px;
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.tags a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}


/* Blog Meta */

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #777;
}

.blog-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}


/* Content Types */

.content-types {
    margin: 30px 0;
}

.content-type {
    padding: 20px 10px;
    border-radius: 8px;
    background-color: #f9fafe;
    transition: all 0.3s ease;
}

.content-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.content-type i {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
    color: var(--primary-color);
}

.content-type span {
    font-size: 14px;
    font-weight: 500;
}


/* Development Services */

.development-services {
    margin: 30px 0;
}

.service-box {
    background-color: #f9fafe;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.service-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 14px;
    margin-bottom: 0;
}