:root {
    --primary-color: #ff8c00;
    --primary-dark: #e67e00;
    --secondary-color: #ffa500;
    --dark-color: #003d29;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Preloader */
body:not(.loaded) {
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.loaded::before {
    opacity: 0;
    visibility: hidden;
}

body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    animation: spin 1s linear infinite;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.loaded::after {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.top-bar {
    background: var(--dark-color);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: transform 0.3s ease;
}

.top-bar-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.top-bar-item {
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item i {
    color: var(--primary-color);
}

.top-bar-social {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
}

.top-bar .social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar .social-icon:hover {
    color: var(--primary-color);
}

.navbar {
    background: white !important;
    padding: 1rem 0;
    position: fixed;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1020;
    transform: translateY(0);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.navbar.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    top: 0;
}

.top-bar.top-bar-hidden {
    transform: translateY(-100%);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
}

.custom-logo {
    height: 60px;
    width: auto;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.nav-link {
    color: var(--dark-color) !important;
    margin: 0 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0;
    margin-top: 0.5rem;
    min-width: 280px;
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu.show {
    display: block;
}

.services-dropdown {
    min-width: 300px;
    max-height: 500px;
    overflow-y: auto;
}

.blog-dropdown {
    min-width: 200px;
}

.services-dropdown::-webkit-scrollbar {
    width: 6px;
}

.services-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.services-dropdown::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.services-dropdown::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.dropdown-item {
    padding: 1rem 1.5rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

.dropdown-item:hover {
    background: var(--light-color);
    color: var(--dark-color);
    padding-left: 2rem;
}

.dropdown-item:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 0 4px 4px 0;
}

.btn-get-in-touch {
    background: white;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.btn-get-in-touch:hover {
    background: var(--dark-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 61, 41, 0.3);
}

.hero-section {
    position: relative;
    background: #ffffff;
    color: var(--dark-color);
    overflow: hidden;
    padding-top: 160px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.highlight-text {
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary-color);
    z-index: -1;
    opacity: 0.3;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons .btn {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-orange {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-orange:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

.btn-outline-dark {
    border-color: var(--dark-color);
    color: var(--dark-color);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--dark-color);
    color: white;
    border-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 61, 41, 0.3);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -5%;
    padding: 0.8rem 1.2rem;
    animation-delay: 0s;
}

.card-2 {
    top: 35%;
    left: -8%;
    padding: 1rem 1.5rem;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 15%;
    right: -8%;
    padding: 1rem 1.5rem;
    animation-delay: 1s;
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red {
    background: #ff6b6b;
}

.dot-orange {
    background: var(--primary-color);
}

.dot-green {
    background: #51cf66;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    height: 50px;
}

.bar {
    width: 12px;
    background: var(--primary-color);
    border-radius: 4px;
    animation: barGrow 2s ease-in-out infinite;
}

.bar-1 {
    height: 60%;
    background: #ff6b6b;
    animation-delay: 0s;
}

.bar-2 {
    height: 40%;
    background: var(--primary-color);
    animation-delay: 0.2s;
}

.bar-3 {
    height: 80%;
    background: #51cf66;
    animation-delay: 0.4s;
}

.bar-4 {
    height: 100%;
    background: #4dabf7;
    animation-delay: 0.6s;
}

.card-line {
    height: 8px;
    background: var(--light-color);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.card-line.short {
    width: 60%;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.icon-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0.3s;
}

.icon-2 {
    bottom: 10%;
    left: 0%;
    animation-delay: 0.8s;
}

.icon-3 {
    top: 50%;
    right: 0%;
    animation-delay: 1.3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes barGrow {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.2);
    }
}

.stats-section {
    background: var(--dark-color);
    color: white;
}

.stat-item {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.about-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.about-image img {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.feature-item {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.feature-item i {
    font-size: 1.3rem;
}

.services-section {
    padding: 5rem 0;
    background: white;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.service-link i {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover i {
    margin-left: 1rem;
}

.process-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.process-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(360deg);
}

.process-icon i {
    font-size: 2rem;
    color: white;
}

.process-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.process-description {
    color: var(--text-color);
    line-height: 1.7;
}

.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonial-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 0 1rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1.2rem;
    margin: 0 0.2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author h5 {
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: var(--primary-color);
    margin: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 1.5rem;
}

.carousel-indicators button {
    background-color: var(--primary-color);
}

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-color), #334155);
    color: white;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
}

.contact-form-wrapper {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    color: white;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form .input-group {
    border-radius: 10px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.8rem 1rem;
}

.newsletter-form .btn {
    border-radius: 0;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

@media (max-width: 991px) {
    .top-bar {
        font-size: 0.75rem;
    }
    
    .top-bar-info {
        gap: 1rem;
    }
    
    .top-bar-item {
        font-size: 0.75rem;
    }
    
    .navbar {
        margin-top: 40px;
    }
    
    .btn-get-in-touch {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .top-bar-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .top-bar-social {
        justify-content: flex-start;
        margin-top: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .process-number {
        font-size: 3rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .hero-main-image {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        display: none;
    }
    
    .navbar {
        margin-top: 0;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-main-image {
        max-width: 300px;
    }
}

/* About Us Page Styles */
.about-top-bar {
    background: #003d29;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1030;
}

.about-top-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.about-top-item {
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-top-item i {
    color: var(--primary-color);
}

.about-top-social {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
}

.about-social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-social-icon:hover {
    color: var(--primary-color);
}

.about-navbar {
    background: transparent !important;
    padding: 1rem 0;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1020;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.about-navbar.scrolled {
    background: #003d29 !important;
    top: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.about-navbar .nav-link {
    color: white !important;
    margin: 0 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
}

.about-navbar .nav-link:hover,
.about-navbar .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color);
}

.about-btn-touch {
    background: white;
    color: var(--dark-color) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
    margin-left: 1rem;
}

.about-btn-touch:hover {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.about-navbar .btn-get-in-touch {
    background: white;
    color: var(--dark-color) !important;
    border: 2px solid white;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.about-navbar .btn-get-in-touch:hover {
    background: transparent;
    color: white !important;
    border-color: white;
    transform: translateY(-2px);
}

.about-hero-section {
    background-image: url(https://pixnofox.com/wp-content/uploads/2024/09/banner-inner-2.png);
    background-color: rgb(27, 87, 91);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.about-breadcrumb {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 1;
}

.about-hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-story-section,
.about-mission-section {
    background: var(--light-color);
}

.about-story-image,
.about-mission-image {
    position: relative;
}

.about-story-image img,
.about-mission-image img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-story-image:hover img,
.about-mission-image:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.about-year-badge {
    background: var(--primary-color);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-year-badge h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.about-year-badge p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.about-values-section {
    background: white;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotate(360deg);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.about-team-section {
    background: var(--light-color);
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
}

.about-cta-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #002d1f 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-hero-description {
        font-size: 1.1rem;
    }
    
    .about-year-badge {
        padding: 15px 25px;
    }
    
    .about-year-badge h3 {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 120px 0 80px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .team-image img {
        height: 250px;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-year-badge {
        padding: 10px 20px;
    }
    
    .about-year-badge h3 {
        font-size: 1.5rem;
    }
    
    .team-image img {
        height: 200px;
    }
}

/* SEO Page Styles */
.seo-content-section {
    background: white;
}

.seo-image-wrapper {
    position: relative;
}

.seo-image-wrapper img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.seo-image-wrapper:hover img {
    transform: scale(1.05);
}

.seo-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2196F3;
    margin-bottom: 1.5rem;
}

.seo-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.seo-list {
    list-style: none;
    padding-left: 0;
}

.seo-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.seo-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.seo-list li strong {
    color: var(--dark-color);
    font-weight: 600;
}

.seo-cta-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #002d1f 100%);
    position: relative;
    overflow: hidden;
}

.seo-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
}

@media (max-width: 768px) {
    .seo-section-title {
        font-size: 1.6rem;
    }
    
    .seo-text {
        font-size: 1rem;
    }
    
    .seo-list li {
        font-size: 0.95rem;
    }
}

/* Social Marketing Page Styles */
.social-content-section {
    background: white;
}

.social-image-wrapper {
    position: relative;
}

.social-image-wrapper img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.social-image-wrapper:hover img {
    transform: scale(1.05);
}

.social-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2196F3;
    margin-bottom: 1.5rem;
}

.social-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.social-list {
    list-style: none;
    padding-left: 0;
}

.social-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.social-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

@media (max-width: 768px) {
    .social-section-title {
        font-size: 1.6rem;
    }
    
    .social-text {
        font-size: 1rem;
    }
    
    .social-list li {
        font-size: 0.95rem;
    }
}

/* Website Development Page Styles */
.webdev-content-section {
    background: white;
}

.webdev-image-wrapper {
    position: relative;
}

.webdev-image-wrapper img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.webdev-image-wrapper:hover img {
    transform: scale(1.05);
}

.webdev-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2196F3;
    margin-bottom: 1.5rem;
}

.webdev-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.webdev-list {
    list-style: none;
    padding-left: 0;
}

.webdev-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.webdev-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

@media (max-width: 768px) {
    .webdev-section-title {
        font-size: 1.6rem;
    }
    
    .webdev-text {
        font-size: 1rem;
    }
    
    .webdev-list li {
        font-size: 0.95rem;
    }
}

/* Contact Page Styles */
.contact-intro-section {
    background: white;
}

.contact-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.contact-main-title .highlight-text {
    color: var(--primary-color);
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.contact-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #003d29;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.contact-card-text {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-card-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card-link:hover {
    color: var(--primary-color);
}

.contact-form-section {
    background: #f9fafb;
}

.contact-map iframe {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.contact-form-subtitle {
    font-size: 1rem;
    color: var(--text-color);
}

.contact-input,
.contact-textarea {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
    outline: none;
}

.contact-textarea {
    resize: none;
}

.btn-contact-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

@media (max-width: 768px) {
    .contact-main-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.6rem;
    }
}

/* Email Marketing Page Styles */
.email-content-section {
    background: white;
}

.email-image-wrapper {
    position: relative;
}

.email-image-wrapper img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.email-image-wrapper:hover img {
    transform: scale(1.05);
}

.email-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2196F3;
    margin-bottom: 1.5rem;
}

.email-section-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2196F3;
    margin-bottom: 1.5rem;
}

.email-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.email-list {
    list-style: none;
    padding-left: 0;
}

.email-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.email-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

@media (max-width: 768px) {
    .email-section-title {
        font-size: 1.6rem;
    }
    
    .email-section-subtitle {
        font-size: 1.2rem;
    }
    
    .email-text {
        font-size: 1rem;
    }
    
    .email-list li {
        font-size: 0.95rem;
    }
}

/* PPC Advertising Page Styles */
.ppc-content-section {
    background: white;
}

.ppc-image-wrapper {
    position: relative;
}

.ppc-image-wrapper img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.ppc-image-wrapper:hover img {
    transform: scale(1.05);
}

.ppc-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2196F3;
    margin-bottom: 1.5rem;
}

.ppc-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .ppc-section-title {
        font-size: 1.6rem;
    }
    
    .ppc-text {
        font-size: 1rem;
    }
}

/* Blog Page Styles */
.blog-content-section {
    background: #f9fafb;
}

.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}
.blog-post-card .blog-post-content {
    padding: 2rem;
}
.blog-post-card a {
    text-decoration: none;
    color: var(--dark-color);
}

.blog-post-image {
    overflow: hidden;
    height: 300px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-post-content {
    padding: 0rem;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-meta-item i {
    color: var(--primary-color);
}

.blog-post-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-post-excerpt {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.8rem;
    color: #e67e00;
}

.blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-search .search-form .input-group {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-search .form-control {
    border: none;
    padding: 0.8rem 1rem;
}

.sidebar-search .form-control:focus {
    box-shadow: none;
}

.sidebar-search .btn-search {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-search .btn-search:hover {
    background: #e67e00;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
}

.recent-post-item a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .blog-post-title {
        font-size: 1.3rem;
    }
    
    .blog-post-meta {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .blog-post-image {
        height: 200px;
    }
}

/* Blog Details Page Styles */
.blog-details-section {
    background: #f9fafb;
}

.blog-details-content {
    /* background: white; */
    border-radius: 15px;
    padding: 1rem 0rem;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
}

.blog-details-image img {
    border-radius: 15px;
}

.blog-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.blog-details-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
}

.blog-details-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.blog-details-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-details-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.blog-details-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-details-body ul li {
    margin-bottom: 0.5rem;
}

.blog-quote {
    background: #f9fafb;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.blog-tags h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.blog-tag {
    display: inline-block;
    background: #f3f4f6;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: var(--primary-color);
    color: white;
}

.blog-share h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.8rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.pinterest {
    background: #bd081c;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-author-box {
    background: #f9fafb;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-avatar img {
    width: 100px;
    height: 100px;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.author-info h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.author-info p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

.blog-comments h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.comment-form .form-control {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.8rem 1rem;
}

.comment-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.comment-form textarea {
    resize: none;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.categories-list a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.categories-list span {
    color: #6b7280;
    font-size: 0.9rem;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    display: inline-block;
    background: #f3f4f6;
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .blog-details-content {
        padding: 1.5rem;
    }
    
    .blog-details-title {
        font-size: 1.8rem;
    }
    
    .blog-details-body {
        font-size: 1rem;
    }
    
    .blog-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto;
    }
}
