/* Base Styles */
:root {
    --primary: #E74C3C;
    /* Strong red */
    --primary-light: rgba(231, 76, 60, 0.1);
    --white: #FFFFFF;
    --text: #333333;
    --light-bg: #FFF5F5;
    /* Very light red bg */
    --card-shadow: 0 8px 24px rgba(231, 76, 60, 0.1);
}

.feature-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    border: 2px solid rgba(212, 53, 35, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(231, 76, 60, 0.15);
}

/* Icon Styles */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary);
    font-size: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
}

/* Pulse Animation */
.pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

/* Text Styles */
.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Hover Effect */
.feature-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-hover-effect {
    transform: scaleX(1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.vehicle-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vehicle-image-container img {
    object-fit: cover;
}

.price-badge {
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 10;
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    border: none;
}

.btn-gradient-primary:hover {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    color: #fff;
}

/* Color Variables */
:root {
    --akb-primary-red: #E30613;
    --akb-primary-red-dark: #C00511;
    --akb-primary-red-light: rgba(227, 6, 19, 0.1);
    --akb-white: #FFFFFF;
    --akb-light-bg: #FFF5F5;
    --akb-text-dark: #2A2A2A;
    --akb-text-light: #5A5A5A;
}

/* Base Styles */
.akbarcab-features-section {
    position: relative;
    background: var(--akb-white);
    padding: 5rem 0;
    overflow: hidden;
}

.akb-features-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.akb-features-dots-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--akb-primary-red-light) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.6;
}

.akb-features-circle-deco {
    position: absolute;
    border-radius: 50%;
    background: var(--akb-primary-red-light);
}

.akb-circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.akb-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

/* Header Styles */
.akb-features-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.akb-features-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--akb-text-dark);
}

.akb-features-brand {
    color: var(--akb-primary-red);
    position: relative;
    display: inline-block;
}

.akb-features-brand:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--akb-primary-red-light);
    z-index: -1;
}

.akb-features-title-text {
    position: relative;
}

.akb-features-subtitle {
    font-size: 1.1rem;
    color: var(--akb-text-dark);
    line-height: 1.7;
}

/* Feature Cards */
.akb-feature-card {
    background: var(--akb-white);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(227, 6, 19, 0.1);
    margin-bottom: 2rem;
    min-height: 180px;
}

.akb-card-right {
    flex-direction: row-reverse;
}

.akb-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(227, 6, 19, 0.1);
    border-color: rgba(227, 6, 19, 0.2);
}

.akb-feature-icon-wrapper {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--akb-primary-red-light);
    margin: 0 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.akb-feature-card:hover .akb-feature-icon-wrapper {
    background: var(--akb-primary-red);
}

.akb-feature-icon {
    font-size: 2rem;
    color: var(--akb-primary-red);
    transition: all 0.3s ease;
}

.akb-feature-card:hover .akb-feature-icon {
    color: var(--akb-white);
    transform: scale(1.1);
}

.akb-feature-content {
    flex: 1;
}

.akb-text-right {
    text-align: right;
}

.akb-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--akb-text-dark);
}

.akb-feature-desc {
    font-size: 0.95rem;
    color: var(--akb-text-dark);
    line-height: 1.6;
}

.akb-feature-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--akb-primary-red), var(--akb-primary-red-dark));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.akb-feature-card:hover .akb-feature-hover-effect {
    opacity: 0.05;
}

/* Center Image Styles */
.akb-feature-main-image {
    position: relative;
    padding: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.akb-feature-car-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(227, 6, 19, 0.2));
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(0deg);
}

.akbarcab-features-section:hover .akb-feature-car-img {
    transform: perspective(1000px) rotateY(-10deg);
}

.akb-feature-image-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--akb-primary-red);
    color: var(--akb-white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .akb-feature-card {
        padding: 1.5rem;
        min-height: 160px;
    }

    .akb-feature-icon-wrapper {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
}

@media (max-width: 991.98px) {
    .akb-features-center-col {
        margin: 3rem 0;
    }

    .akb-feature-main-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .akb-features-main-title {
        font-size: 2.2rem;
    }

    .akb-feature-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .akb-card-right {
        flex-direction: column;
    }

    .akb-feature-icon-wrapper {
        margin: 0 0 1.5rem 0;
    }

    .akb-text-right {
        text-align: center !important;
    }

    .akb-feature-image-badge {
        top: 15px;
        left: 15px;
    }
}

/* about akbarcab */

/* Color Variables */
:root {
    --akb-primary-red: #E30613;
    --akb-primary-red-dark: #C00511;
    --akb-primary-red-light: rgba(227, 6, 19, 0.1);
    --akb-white: #FFFFFF;
    --akb-light-bg: #FFF5F5;
    --akb-text-dark: #2A2A2A;
    --akb-text-light: #5A5A5A;
    --akb-card-shadow: 0 5px 25px rgba(227, 6, 19, 0.08);
}

/* Base Styles */
.akb-about-section {
    position: relative;
    background: var(--akb-white);
    padding: 6rem 0;
    overflow: hidden;
}

.akb-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.akb-about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.akb-about-content-col {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.akb-about-images-col {
    flex: 1;
    min-width: 300px;
    position: relative;
}

/* Typography */
.akb-about-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--akb-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.akb-about-brand {
    color: var(--akb-primary-red);
    position: relative;
}

.akb-about-brand:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--akb-primary-red-light);
    z-index: -1;
}

.akb-about-intro,
.akb-about-details {
    color: var(--akb-text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Cards Grid */
.akb-about-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.akb-about-card {
    background: var(--akb-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--akb-card-shadow);
    border: 1px solid rgba(227, 6, 19, 0.1);
    transition: all 0.3s ease;
}

.akb-about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.1);
}

.akb-card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.akb-icon-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.akb-card-title {
    font-size: 1.3rem;
    color: var(--akb-text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.akb-card-text {
    color: var(--akb-text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Highlights Section */
.akb-about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.akb-experience-box {
    background: var(--akb-primary-red);
    color: var(--akb-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.2);
}

.akb-stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.akb-stat-label {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.akb-features-list {
    flex: 2;
    min-width: 250px;
}

.akb-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--akb-text-dark);
}

.akb-feature-icon {
    color: var(--akb-primary-red);
    font-size: 1.1rem;
}

/* Button */
.akb-about-btn {
    display: inline-flex;
    align-items: center;
    background: var(--akb-primary-red);
    color: var(--akb-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.2);
    border: 2px solid var(--akb-primary-red);
}

.akb-about-btn:hover {
    background: var(--akb-white);
    color: var(--akb-primary-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
}

.akb-btn-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.akb-about-btn:hover .akb-btn-icon {
    transform: translateX(5px);
}

/* Image Styles */
.akb-main-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.akb-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.akb-main-image-wrapper:hover .akb-main-image {
    transform: scale(1.03);
}

.akb-image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--akb-primary-red);
    color: var(--akb-white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

.akb-secondary-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.akb-secondary-image {
    width: 100%;
    height: auto;
    display: block;
}

.akb-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(227, 6, 19, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.akb-secondary-image-wrapper:hover .akb-image-overlay {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {

    .akb-about-content-col,
    .akb-about-images-col {
        flex: 100%;
        padding-right: 0;
    }

    .akb-about-images-col {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .akb-about-main-title {
        font-size: 2.2rem;
    }

    .akb-about-highlights {
        flex-direction: column;
    }

    .akb-experience-box {
        width: 100%;
    }
}

/* Navy Blue & Gold Color Scheme */
:root {
    --premium-navy: #0A1A35;
    --premium-gold: #D4AF37;
    --premium-gold-light: rgba(212, 175, 55, 0.2);
    --premium-white: #F8F9FA;
    --premium-light-bg: #F0F2F5;
}

/* Base Styles */
.premium-counter-section {
    background: var(--premium-navy);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.premium-counter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.premium-counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

/* Counter Card Styles */
.premium-counter-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.premium-counter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Icon Styles */
.premium-counter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--premium-gold-light);
    border-radius: 50%;
    position: relative;
    color: var(--premium-gold);
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.premium-counter-card:hover .premium-counter-icon {
    background: var(--premium-gold);
    color: var(--premium-navy);
    transform: scale(1.1);
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--premium-gold-light);
    animation: pulse 3s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

/* Content Styles */
.premium-counter-content {
    position: relative;
    z-index: 2;
}

.counter-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--premium-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.counter-label {
    font-size: 1.2rem;
    color: var(--premium-gold);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Glow Effect */
.counter-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--premium-gold), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.premium-counter-card:hover .counter-glow {
    opacity: 0.8;
    height: 6px;
}

/* Background Elements */
.premium-counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .premium-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .premium-counter-grid {
        grid-template-columns: 1fr;
    }

    .premium-counter-section {
        padding: 4rem 0;
    }

    .premium-counter-card {
        padding: 2rem 1rem;
    }

    .counter-number {
        font-size: 2.8rem;
    }
}

/* services */

/* Red & White Color Scheme */
:root {
    --akb-primary-red: #E30613;
    --akb-primary-red-dark: #C00511;
    --akb-primary-red-light: rgba(227, 6, 19, 0.1);
    --akb-white: #FFFFFF;
    --akb-light-bg: #FFF5F5;
    --akb-text-dark: #2A2A2A;
    --akb-text-light: #5A5A5A;
}

/* Base Styles */
.akb-services-section {
    background: var(--akb-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.akb-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.akb-services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.akb-services-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--akb-text-dark);
    margin-bottom: 1rem;
}

.akb-services-brand {
    color: var(--akb-primary-red);
    position: relative;
}

.akb-services-brand:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--akb-primary-red-light);
    z-index: -1;
}

.akb-services-subtitle {
    font-size: 1.1rem;
    color: var(--akb-text-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.akb-header-divider {
    width: 80px;
    height: 3px;
    background: var(--akb-primary-red);
    margin: 1.5rem auto 0;
}

/* Services Grid */
.akb-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Service Card */
.akb-service-card {
    background: var(--akb-white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(227, 6, 19, 0.05);
    border: 1px solid rgba(227, 6, 19, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 1;
}

.akb-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(227, 6, 19, 0.1);
}

/* Icon Styles */
.akb-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--akb-primary-red-light);
    border-radius: 50%;
    color: var(--akb-primary-red);
    font-size: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.akb-service-card:hover .akb-service-icon {
    background: var(--akb-primary-red);
    color: var(--akb-white);
    transform: scale(1.1);
}

.akb-icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--akb-primary-red-light);
    animation: pulse 3s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

/* Content Styles */
.akb-service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--akb-text-dark);
    margin-bottom: 1rem;
}

.akb-service-desc {
    font-size: 0.95rem;
    color: var(--akb-text-dark);
    line-height: 1.6;
}

/* Hover Effect */
.akb-service-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--akb-primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.akb-service-card:hover .akb-service-hover {
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .akb-services-grid {
        grid-template-columns: 1fr;
    }

    .akb-services-title {
        font-size: 2.2rem;
    }

    .akb-service-card {
        padding: 2rem 1.5rem;
    }
}

/* process */

/* Color Variables */
:root {
    --akb-primary-red: #E30613;
    --akb-primary-red-dark: #C00511;
    --akb-white: #FFFFFF;
    --akb-light-gray: #F5F5F5;
    --akb-text-light: #EEEEEE;
}

/* Base Styles */
.akb-process-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 0;
    position: relative;
    color: var(--akb-white);
}

.akb-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.akb-process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.akb-process-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.akb-process-brand {
    color: var(--akb-white);
}

.akb-process-highlight {
    color: var(--akb-primary-red);
}

.akb-process-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.akb-process-divider {
    width: 80px;
    height: 3px;
    background: var(--akb-primary-red);
    margin: 1.5rem auto 0;
}

/* Process Steps */
.akb-process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.akb-process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.akb-step-marker {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.2);
    border-radius: 50%;
    border: 2px solid var(--akb-primary-red);
}

.akb-step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--akb-primary-red);
    color: var(--akb-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.akb-step-icon {
    font-size: 2.5rem;
    color: var(--akb-primary-red);
}

.akb-step-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    border-top: 3px solid var(--akb-primary-red);
    transition: all 0.3s ease;
}

.akb-process-step:hover .akb-step-content {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.7);
}

.akb-step-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--akb-white);
}

.akb-step-desc {
    opacity: 0.8;
    line-height: 1.6;
}

.akb-step-connector {
    flex: 0 0 60px;
    color: var(--akb-primary-red);
    font-size: 2rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .akb-process-steps {
        flex-direction: column;
    }

    .akb-process-step {
        margin-bottom: 3rem;
        width: 100%;
        max-width: 350px;
    }

    .akb-step-connector {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

@media (max-width: 576px) {
    .akb-process-title {
        font-size: 2.2rem;
    }

    .akb-step-content {
        padding: 1.5rem;
    }
}

/* blogs & News */

/* Color Variables */
:root {
    --akb-primary: #E30613;
    --akb-primary-dark: #C00511;
    --akb-primary-light: rgba(227, 6, 19, 0.1);
    --akb-dark: #222222;
    --akb-gray: #777777;
    --akb-light-gray: #F5F5F5;
    --akb-white: #FFFFFF;
}

/* Base Styles */
.akb-blog-section {
    padding: 4rem 0;
    background: var(--akb-light-gray);
    position: relative;
}

.akb-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.akb-blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.akb-section-subtitle {
    color: var(--akb-primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.akb-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--akb-dark);
    margin-bottom: 1rem;
}

.akb-section-description {
    color: var(--akb-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1.1rem;
}

.akb-header-divider {
    width: 60px;
    height: 3px;
    background: var(--akb-primary);
    margin: 1.5rem auto 0;
}

/* Blog Grid */
.akb-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Blog Card */
.akb-blog-card {
    background: var(--akb-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    margin-top: -20px;
}

.akb-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.akb-blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.akb-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.akb-blog-card:hover .akb-blog-img {
    transform: scale(1.05);
}

.akb-blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--akb-primary);
    color: var(--akb-white);
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    line-height: 1;
    z-index: 1;
}

.akb-date-day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.akb-date-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.akb-blog-content {
    padding: 1.5rem;
}

.akb-blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--akb-gray);
}

.akb-blog-meta i {
    color: var(--akb-primary);
    margin-right: 5px;
}

.akb-blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--akb-dark);
    transition: color 0.3s ease;
}

.akb-blog-card:hover .akb-blog-title {
    color: var(--akb-primary);
}

.akb-blog-excerpt {
    color: var(--akb-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.akb-read-more {
    background: none;
    border: none;
    color: var(--akb-primary);
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.akb-read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.akb-read-more:hover {
    color: var(--akb-primary-dark);
}

.akb-read-more:hover i {
    transform: translateX(5px);
}

/* View More Button */
.akb-view-more {
    text-align: center;
    margin-top: 4rem;
}

.akb-view-more-btn {
    display: inline-flex;
    align-items: center;
    background: var(--akb-primary);
    color: var(--akb-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.2);
}

.akb-view-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.akb-view-more-btn:hover {
    background: var(--akb-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.3);
}

.akb-view-more-btn:hover i {
    transform: translateX(5px);
}

/* Modal Styles */
.akb-modal-image {
    margin-bottom: 1.5rem;
    border-radius: 5px;
    overflow: hidden;
}

.akb-modal-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.akb-modal-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--akb-gray);
}

.akb-modal-meta i {
    color: var(--akb-primary);
    margin-right: 5px;
}

.akb-modal-content h4 {
    color: var(--akb-dark);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.akb-modal-content p {
    color: var(--akb-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.akb-modal-close,
.akb-modal-share {
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.akb-modal-close {
    background: var(--akb-primary);
    color: var(--akb-white);
    border: none;
}

.akb-modal-share {
    background: var(--akb-primary);
    color: var(--akb-white);
    border: none;
    display: inline-flex;
    align-items: center;
}

.akb-modal-share i {
    margin-left: 8px;
}

.akb-modal-close:hover {
    background: #e0e0e0;
    color: black;
}

.akb-modal-share:hover {
    background: var(--akb-primary-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .akb-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .akb-section-title {
        font-size: 2rem;
    }

    .akb-blog-grid {
        grid-template-columns: 1fr;
    }

    .akb-modal-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/*  */

/* Color Variables */
:root {
    --akb-primary: #E30613;
    --akb-primary-dark: #C00511;
    --akb-secondary: #E30613;
    --akb-white: #FFFFFF;
    --akb-dark: #222222;
    --akb-whatsapp: #25D366;
}

/* Base Styles */
.akb-banner-section {
    padding: 4rem 0;
    position: relative;
}

.akb-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Banner Card */
.akb-banner-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.akb-banner-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.akb-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.akb-banner-card:hover .akb-banner-img {
    transform: scale(1.03);
}

.akb-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Banner Content */
.akb-banner-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 2;
    padding: 2rem;
}

.akb-banner-tag {
    display: inline-block;
    background: var(--akb-secondary);
    color: var(--akb-white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.akb-banner-subtitle {
    color: var(--akb-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.akb-banner-title {
    color: var(--akb-white);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.akb-banner-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 80%;
}

/* Action Buttons */
.akb-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.akb-action-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.akb-action-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.akb-whatsapp-btn {
    background: var(--akb-whatsapp);
    color: var(--akb-white);
}

.akb-contact-btn {
    background: var(--akb-primary);
    color: var(--akb-white);
}

.akb-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

.akb-contact-btn:hover {
    background: var(--akb-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .akb-banner-image {
        height: 350px;
    }

    .akb-banner-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .akb-banner-content {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }

    .akb-banner-title {
        font-size: 2rem;
    }

    .akb-banner-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .akb-banner-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .akb-banner-image {
        height: 300px;
    }

    .akb-banner-title {
        font-size: 1.8rem;
    }

    .akb-action-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }

    25% {
        border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
    }

    50% {
        border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
    }

    75% {
        border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
    }

    100% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }
}

/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 8px !important;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    height: 700px;
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: var(--bs-secondary);
    opacity: 1;
    transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
}

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}

/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature {
    background: var(--bs-light);
}

.feature .feature-item {
    display: flex;
    border-radius: 10px;
}

.feature .feature-item .feature-icon span {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    ;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Features End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;

}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}

/*** About End ***/


/*** Fact Counter Start ***/
.counter {
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)), url(../img/fact-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item .counter-item-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 60px;
    background: var(--bs-light);
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover::after {
    opacity: 1;
}

.service .service-item .service-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Service End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/*** Cars Categories End ***/


/*** Process Start ***/
.steps {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/bg-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.steps .steps-item {
    position: relative;
    background: var(--bs-secondary);
    border-radius: 10px;
}

.steps .steps-item h4,
.steps .steps-item p {
    color: var(--bs-white);
}

.steps .steps-item .setps-number {
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: 0;
    right: 40px;
    font-weight: 900;
    border: 1px solid var(--bs-white);
    border-radius: 64px;
    transform: translateY(50%);
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** Process End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}

/*** Blog End ***/


/*** Banner Start ***/
.banner .banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.banner .banner-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
}

.banner .banner-item .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    z-index: 5;
}

@media (min-width: 992px) {
    .banner .banner-item .banner-content h2 {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content h1 {
        font-size: 72px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content p {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

/*** Banner End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
    z-index: 2;
    transition: 0.5s;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    border-radius: 70px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/