/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #2a9d8f;
    --accent-color: #f8c630;
    --dark-color: #252b42;
    --light-color: #f9f9f9;
    --bg-color: #fff1ed;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --gradient-secondary: linear-gradient(135deg, #2a9d8f 0%, #3fb8a8 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-text {
    font-weight: 700;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.navbar-toggler {
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 15px;
    background-color: #fff;
}

.dropdown-item {
    padding: 10px 25px;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(255, 107, 53, 0.05);
    color: var(--primary-color);
}

.dropdown-item.active {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.dropdown-divider {
    margin: 8px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
    margin-left: 0.4em;
    vertical-align: 0.15em;
    transition: var(--transition);
}

.dropdown-toggle:hover::after {
    transform: rotate(180deg);
}

/* ===== HERO SECTION STYLES ===== */
.hero-section {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.05);
    z-index: -1;
}

.hero-section:after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.05);
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-title .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 107, 53, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-btns .btn {
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-secondary {
    color: var(--dark-color);
    border-color: #e0e0e0;
    transition: var(--transition);
}

.btn-outline-secondary:hover {
    background-color: var(--light-color);
    border-color: var(--light-color);
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
}

/* Stats Section */
.hero-stats {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.floating-card .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1.2rem;
}

.card-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.card-1 .icon {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.card-2 {
    top: 60%;
    right: 0;
    animation-delay: 1s;
}

.card-2 .icon {
    background: rgba(42, 157, 143, 0.1);
    color: var(--secondary-color);
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

.card-3 .icon {
    background: rgba(248, 198, 48, 0.1);
    color: var(--accent-color);
}

.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: rgba(255, 107, 53, 0.1);
    top: 10%;
    right: 10%;
    animation: morph 8s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: rgba(42, 157, 143, 0.1);
    bottom: 20%;
    left: 5%;
    animation: morph 8s ease-in-out infinite;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: rgba(248, 198, 48, 0.1);
    top: 40%;
    left: 30%;
    animation: morph 8s ease-in-out infinite;
    animation-delay: 4s;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-image-column {
        margin-top: 60px;
    }
    
    .floating-card {
        padding: 10px;
    }
    
    .floating-card .icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 130px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-btns .btn {
        padding: 10px 20px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-btns .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-btns .btn:last-child {
        margin-bottom: 0;
    }
    
    .hero-stats .row {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
}

/* ===== SERVICES SECTION STYLES ===== */
.services-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Services Tabs */
.services-tabs .nav-pills {
    gap: 15px;
    flex-wrap: wrap;
}

.services-tabs .nav-link {
    background: #fff;
    color: var(--dark-color);
    border-radius: 12px;
    padding: 15px 25px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-tabs .nav-link i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.services-tabs .nav-link.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.services-tabs .nav-link.active i {
    color: #fff;
}

.services-tabs .nav-link:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

/* Service Showcase */
.service-showcase {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.15);
}

.service-title-large {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-description-large {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 30px;
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.feature-box .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.15);
}

.feature-box .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-box .feature-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* Service Stats */
.service-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-stats .stat-item {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    margin: 0 10px;
    min-width: 100px;
}

.service-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.service-stats .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Service Image */
.service-showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-showcase-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.floating-badge span {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.floating-badge small {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Button Styles */
.btn-gradient {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .service-showcase {
        padding: 30px 20px;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-title-large {
        font-size: 1.8rem;
    }
    
    .service-icon-large {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .service-stats .stat-item {
        flex: 0 0 calc(33.333% - 20px);
        margin-bottom: 15px;
    }
}

@media (max-width: 767.98px) {
    .services-tabs .nav-pills {
        gap: 10px;
    }
    
    .services-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .service-showcase-image {
        margin-top: 30px;
    }
    
    .service-stats .stat-item {
        flex: 0 0 calc(50% - 20px);
    }
    
    .service-stats .stat-number {
        font-size: 1.6rem;
    }
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.section-title .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 107, 53, 0.2);
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.services-container {
    position: relative;
    z-index: 2;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-card:nth-child(1) .service-icon,
.col-lg-3:nth-child(1) .service-icon {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.service-card:nth-child(2) .service-icon,
.col-lg-3:nth-child(2) .service-icon {
    background: rgba(42, 157, 143, 0.1);
    color: var(--secondary-color);
}

.service-card:nth-child(3) .service-icon,
.col-lg-3:nth-child(3) .service-icon {
    background: rgba(248, 198, 48, 0.1);
    color: var(--accent-color);
}

.service-card:nth-child(4) .service-icon,
.col-lg-3:nth-child(4) .service-icon {
    background: rgba(66, 103, 178, 0.1);
    color: #4267B2;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-description {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.service-link i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--primary-color);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.service-shape {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    transition: var(--transition);
}

.col-lg-3:nth-child(1) .service-shape {
    background-color: var(--primary-color);
}

.col-lg-3:nth-child(2) .service-shape {
    background-color: var(--secondary-color);
}

.col-lg-3:nth-child(3) .service-shape {
    background-color: var(--accent-color);
}

.col-lg-3:nth-child(4) .service-shape {
    background-color: #4267B2;
}

.service-card:hover .service-shape {
    transform: scale(1.2);
}

.services-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.services-bg-element.element-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 53, 0.05);
    top: -100px;
    right: -100px;
    animation: morph 10s ease-in-out infinite;
}

.services-bg-element.element-2 {
    width: 250px;
    height: 250px;
    background: rgba(42, 157, 143, 0.05);
    bottom: -50px;
    left: -100px;
    animation: morph 10s ease-in-out infinite;
    animation-delay: 3s;
}

/* Services Section Responsive Styles */
@media (max-width: 991.98px) {
    .services-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
}

/* ===== ABOUT SECTION STYLES ===== */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, var(--light-color) 100%);
}

.about-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.about-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 40px;
}

.about-features {
    margin-bottom: 40px;
}



.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #fff;
    font-size: 1.4rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-content p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

/* Stats Styles */
.about-stats-wrapper {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 25px;
    box-shadow: var(--box-shadow);
    z-index: 2;
}

.stat-card {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, var(--light-color) 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.137);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.stats-shape-1,
.stats-shape-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    z-index: 0;
}

.stats-shape-1 {
    background: rgba(255, 107, 53, 0.1);
    top: -30px;
    right: -30px;
    animation: morph 8s ease-in-out infinite;
}

.stats-shape-2 {
    background: rgba(42, 157, 143, 0.1);
    bottom: -30px;
    left: -30px;
    animation: morph 8s ease-in-out infinite;
    animation-delay: 2s;
}

.about-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.about-bg-element.element-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 53, 0.05);
    top: -100px;
    right: -100px;
    animation: morph 10s ease-in-out infinite;
}

.about-bg-element.element-2 {
    width: 250px;
    height: 250px;
    background: rgba(42, 157, 143, 0.05);
    bottom: -50px;
    left: -100px;
    animation: morph 10s ease-in-out infinite;
    animation-delay: 3s;
}

/* About Section Responsive Styles */
@media (max-width: 991.98px) {
    .about-section {
        padding: 70px 0;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .stat-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 50px 0;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .about-stats-wrapper {
        padding: 20px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ===== SIMPLE SOLUTIONS SECTION ===== */
.solutions-section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-color);
    overflow: hidden;
}

.solutions-illustration {
    filter: drop-shadow(0 8px 32px rgba(255,107,53,0.08));
    border-radius: 2rem;
}

.solutions-content {
    background: #fff;
    border-radius: 2rem;
    box-shadow: var(--box-shadow);
    padding: 40px 35px;
    position: relative;
    z-index: 2;
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.solutions-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.solutions-title .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 107, 53, 0.2);
    z-index: -1;
}

.solutions-desc {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.solutions-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.solutions-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    font-size: 1.05rem;
    position: relative;
    padding-left: 46px;
    min-height: 44px;
}

.solutions-steps .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(255,107,53,0.10);
    transition: background 0.3s;
}

.solutions-steps .step-title {
    font-weight: 600;
    margin-right: 8px;
    color: var(--primary-color);
}

.solutions-steps .step-desc {
    color: #6c757d;
    font-weight: 400;
    margin-left: 4px;
    font-size: 0.98rem;
}

.solutions-btns .btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
    transition: var(--transition);
}

.solutions-btns .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.20);
}

.solutions-btns .btn-outline-secondary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: #fff;
    transition: var(--transition);
}

.solutions-btns .btn-outline-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow);
}

.solutions-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.solutions-bg-element.element-1 {
    width: 220px;
    height: 220px;
    background: rgba(255, 107, 53, 0.07);
    top: -70px;
    right: -80px;
    animation: morph 9s ease-in-out infinite;
}

.solutions-bg-element.element-2 {
    width: 160px;
    height: 160px;
    background: rgba(42, 157, 143, 0.07);
    bottom: -50px;
    left: -60px;
    animation: morph 9s ease-in-out infinite;
    animation-delay: 2s;
}

@media (max-width: 991.98px) {
    .solutions-section {
        padding: 70px 0;
    }
    .solutions-content {
        padding: 30px 15px;
    }
    .solutions-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .solutions-section {
        padding: 40px 0;
    }
    .solutions-content {
        padding: 20px 5px;
    }
    .solutions-title {
        font-size: 1.5rem;
    }
    .solutions-illustration {
        max-width: 200px;
        padding: 12px;
    }
}

/* ===== WHY CHOOSE US SECTION STYLES ===== */
.why-choose-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
}

.team-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-choose-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    z-index: 1;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.why-choose-card:hover::before {
    opacity: 1;
}

.why-choose-card:hover * {
    color: #fff;
}

.why-choose-card:hover .card-icon i {
    transform: rotateY(360deg);
}

.why-choose-card:hover .icon-bg {
    background: rgba(255, 255, 255, 0.2);
}

.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    position: relative;
    font-size: 2.5rem;
    color: var(--primary-color);
    z-index: 1;
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: color 0.4s ease;
}

.why-choose-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 25px;
    transition: color 0.4s ease;
}

.card-stats {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    transition: border-color 0.4s ease;
}

.why-choose-card:hover .card-stats {
    border-color: rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    transition: color 0.4s ease;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    transition: color 0.4s ease;
}

.why-choose-features {
    margin-top: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.feature-item {
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--dark-color);
    display: flex;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 5px;
}


.feature-item:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.why-choose-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.why-choose-bg-element.element-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 53, 0.05);
    top: -250px;
    right: -200px;
    animation: morph 15s ease-in-out infinite;
}

.why-choose-bg-element.element-2 {
    width: 400px;
    height: 400px;
    background: rgba(42, 157, 143, 0.05);
    bottom: -200px;
    left: -150px;
    animation: morph 15s ease-in-out infinite;
    animation-delay: -7s;
}

@media (max-width: 1199.98px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 20px;
    }

    .why-choose-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 2rem;
    }

    .why-choose-card h3 {
        font-size: 1.3rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA SECTION STYLES ===== */
.cta-section {
    padding:100px 0; 
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.cta-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 600px;
}

.cta-action {
    position: relative;
    z-index: 1;
}

.cta-action .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cta-action .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-action .btn:hover i {
    transform: translateX(5px);
}

.cta-bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.cta-bg-element.element-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -50px;
    animation: morph 15s ease-in-out infinite;
}

.cta-bg-element.element-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: morph 15s ease-in-out infinite;
    animation-delay: -7s;
}

@media (max-width: 991.98px) {
    .cta-section {
        padding: 0 0 70px;
    }

    .cta-wrapper {
        padding: 40px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.1rem;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 0 0 50px;
    }

    .cta-wrapper {
        padding: 30px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-action .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ===== FOOTER SECTION STYLES ===== */

/* Scroll To Top Button Styles */
.scroll-to-top {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    outline: none;
    box-shadow: 0 6px 24px rgba(255,107,53,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity 0.4s, transform 0.3s;
    z-index: 9999;
}
.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.scroll-to-top:active {
    transform: scale(0.93);
}
@media (max-width: 767.98px) {
    .scroll-to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}


/* Newsletter Styles */
.newsletter-box {
    background: rgba(255,255,255,0.08);
    padding: 40px 30px 30px 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.newsletter-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.newsletter-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.08rem;
    margin-bottom: 22px;
}
.newsletter-form {
    gap: 10px;
    margin-top: 10px;
}
.newsletter-input {
    padding: 12px 22px;
    font-size: 1.1rem;
    border: none;
    outline: none;
    border-radius: 2rem;
    background: #fff;
    color: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}
.newsletter-input:focus {
    box-shadow: 0 4px 16px rgba(255,107,53,0.15);
}
.newsletter-btn {
    padding: 12px 30px;
    font-size: 1.08rem;
    border-radius: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 767.98px) {
    .newsletter-box {
        padding: 25px 10px 20px 10px;
    }
    .newsletter-title {
        font-size: 1.3rem;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }
    .newsletter-input, .newsletter-btn {
        width: 100%;
        margin-right: 0 !important;
    }
}
.footer-section {
    position: relative;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: #fff;
    overflow: hidden;
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-logo i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-cta {
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.footer-cta:hover i {
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    color: #fff;
}

.social-link.facebook:hover { background: #1877f2; }
.social-link.instagram:hover { background: #e4405f; }
.social-link.twitter:hover { background: #1da1f2; }
.social-link.linkedin:hover { background: #0077b5; }

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    margin-right: 0;
    transition: all 0.3s ease;
    border-radius: 1px;
    opacity: 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 15px;
    margin-right: 10px;
    opacity: 1;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 5;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.footer-bg-element.element-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -100px;
    animation: morph 15s ease-in-out infinite;
}

.footer-bg-element.element-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
    animation: morph 15s ease-in-out infinite;
    animation-delay: -7s;
}

@media (max-width: 991.98px) {
    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .footer-legal {
        justify-content: flex-start;
        margin-top: 15px;
        gap: 20px;
    }

    .footer-bg-element.element-1 {
        width: 300px;
        height: 300px;
    }

    .footer-bg-element.element-2 {
        width: 200px;
        height: 200px;
    }
}

/* ===== TRUSTED BY SECTION STYLES ===== */
.trusted-by-section {
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
    z-index: 1;
}

.trusted-by-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    justify-items: center;
    margin: 50px 0 0 0;
    position: relative;
    z-index: 2;
}
@media (max-width: 991.98px) {
    .trusted-by-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 575.98px) {
    .trusted-by-logos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.trusted-logo-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.12), 0 2px 8px rgba(0,0,0,0.07);
    padding: 36px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s;
    overflow: visible;
    cursor: pointer;
}
.trusted-logo-card:hover, .trusted-logo-card:focus {
    transform: translateY(-12px) scale(1.06) rotate(-2deg);
    box-shadow: 0 16px 48px 0 rgba(255, 107, 53, 0.20), 0 4px 16px rgba(0,0,0,0.12);
    z-index: 3;
}
.trusted-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, #ff6b35 0%, #ff8c42 50%, transparent 80%);
    opacity: 0.16;
    filter: blur(8px);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.trusted-logo-card:hover .trusted-logo-glow,
.trusted-logo-card:focus .trusted-logo-glow {
    opacity: 0.32;
}
.trusted-logo-card i {
    font-size: 3.5rem;
    margin-bottom: 18px;
    z-index: 2;
    color: var(--primary-color);
    animation: trusted-logo-float 2.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 12px rgba(255, 107, 53, 0.10));
}
.trusted-logo-card:nth-child(2) i {
    color: #e50914;
    animation-delay: 0.5s;
}
.trusted-logo-card:nth-child(3) i {
    color: #ff9900;
    animation-delay: 1s;
}
.trusted-logo-card:nth-child(4) i {
    color: #0078d4;
    animation-delay: 1.5s;
}
@keyframes trusted-logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.trusted-logo-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: 0.5px;
    margin-top: 8px;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.15);
}

.trusted-by-testimonials {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.testimonial-slider {
    position: relative;
    width: 100%;
    min-height: 120px;
}
.testimonial-slide {
    display: none;
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 500;
    opacity: 0;
    transform: scale(0.96) translateY(16px);
    transition: all 0.5s cubic-bezier(.4,0,.2,1);
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 3px 16px rgba(255, 107, 53, 0.10);
    padding: 32px 28px 22px 28px;
    margin-bottom: 12px;
}
.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: scale(1) translateY(0);
}
.testimonial-quote {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.testimonial-author {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.testimonial-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
}
.testimonial-dot.active {
    opacity: 1;
    transform: scale(1.2);
    background: var(--accent-color);
}

.trusted-by-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.trusted-by-bg-element.element-1 {
    width: 380px;
    height: 380px;
    background: rgba(255, 107, 53, 0.08);
    top: -120px;
    right: -120px;
    animation: morph 13s ease-in-out infinite;
}
.trusted-by-bg-element.element-2 {
    width: 260px;
    height: 260px;
    background: rgba(42, 157, 143, 0.08);
    bottom: -80px;
    left: -80px;
    animation: morph 13s ease-in-out infinite;
    animation-delay: 2s;
}

/* ===== PRICING SECTION STYLES ===== */
.pricing-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-toggle {
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
}

.save-badge {
    display: inline-block;
    padding: 4px 8px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-left: 8px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background: #fff;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked + .slider {
    background: var(--gradient-primary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: var(--box-shadow);
}

.pricing-card.popular {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-20px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.plan-price {
    margin-bottom: 15px;
}

.currency {
    font-size: 2rem;
    font-weight: 500;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #6c757d;
}

.popular .period {
    color: rgba(255, 255, 255, 0.8);
}

.plan-description {
    font-size: 1rem;
    color: #6c757d;
}

.popular .plan-description {
    color: rgba(255, 255, 255, 0.8);
}

.card-features {
    margin: 30px 0;
}

.popular-btn{
    background-color: white;
    color: var(--primary-color);
}

.popular-btn:hover{
    background-color: black;
    color: white;
}

.feature-item.disabled {
    color: #6c757d;
    opacity: 0.6;
}


.feature-item.disabled i {
    color: #6c757d;
}


.card-action {
    text-align: center;
}

.pricing-card:not(.popular):hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.pricing-bg-element.element-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 107, 53, 0.05);
    top: -300px;
    right: -200px;
    animation: morph 15s ease-in-out infinite;
}

.pricing-bg-element.element-2 {
    width: 400px;
    height: 400px;
    background: rgba(42, 157, 143, 0.05);
    bottom: -200px;
    left: -150px;
    animation: morph 15s ease-in-out infinite;
    animation-delay: -7s;
}

@media (max-width: 991.98px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        grid-column: span 2;
    }
}

@media (max-width: 767.98px) {
    .trusted-by-section,
    .pricing-section {
        padding: 60px 0;
    }

    .trusted-by-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        grid-column: auto;
        transform: translateY(0);
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .amount {
        font-size: 3rem;
    }
}

/* ===== BLOG PAGE STYLES ===== */
.categories-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.category-card {
    display: block;
    background: #fff;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark-color);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 1.5rem;
}

.category-card:nth-child(2) .category-icon {
    background: var(--gradient-secondary);
}

.category-card:nth-child(3) .category-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffd166 100%);
}

.category-card:nth-child(4) .category-icon {
    background: linear-gradient(135deg, #4361ee 0%, #7209b7 100%);
}

.category-card:nth-child(5) .category-icon {
    background: linear-gradient(135deg, #3a0ca3 0%, #4cc9f0 100%);
}

.category-card:nth-child(6) .category-icon {
    background: linear-gradient(135deg, #f72585 0%, #b5179e 100%);
}

.category-card h5 {
    font-weight: 600;
    margin-bottom: 0;
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 80px 0;
    background-color: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--dark-color);
}

.blog-excerpt {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Featured Post */
.featured-post {
    margin-bottom: 30px;
}

.featured-post .blog-title {
    font-size: 1.8rem;
}

/* Sidebar Posts */
.sidebar-post {
    height: calc(33.33% - 16px);
}

.sidebar-post-content {
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sidebar-post-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 8px 0;
    line-height: 1.4;
}

/* Pagination */
.pagination-container {
    margin-top: 50px;
}

.pagination .page-link {
    border: none;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    color: #fff;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-color: var(--light-color);
}


.newsletter-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-color);
}

.newsletter-box p {
    color: #6c757d;
    margin-bottom: 0;
}

.newsletter-form .form-control {
    height: 54px;
    border-radius: 27px 0 0 27px;
    border: 1px solid #e0e0e0;
    padding: 0 25px;
}

.newsletter-form .btn {
    border-radius: 0 27px 27px 0;
    padding: 14px 30px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .sidebar-post {
        height: auto;
        margin-bottom: 20px;
    }
    
    .newsletter-box {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .blog-card {
        margin-bottom: 30px;
    }
    
    .featured-post .blog-title {
        font-size: 1.5rem;
    }
    
    .pagination .page-link {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 575.98px) {
    .blog-meta {
        gap: 10px;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .featured-post .blog-title {
        font-size: 1.3rem;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 27px;
    }
    
    .newsletter-form .btn {
        width: 100%;
        margin-top: 15px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-info-cards {
    margin-top: 50px;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.8rem;
}

.contact-card:nth-child(2) .contact-icon {
    background: var(--gradient-secondary);
}

.contact-card:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffd166 100%);
}

.contact-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-card p {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-color);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-form-wrapper {
    padding: 30px;
    height: 100%;
}

.contact-form {
    margin-top: 30px;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 1rem;
    height: calc(3.5rem + 2px);
    box-shadow: none;
    transition: var(--transition);
}

.form-floating > textarea.form-control {
    height: 150px;
    resize: none;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.1);
}

.form-floating > label {
    padding: 1rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: #6c757d;
}

/* Map Section */
.map-wrapper {
    position: relative;
    height: 100%;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    max-width: 300px;
    z-index: 1;
}

.office-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.office-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.office-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.office-card p i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.accordion {
    margin-top: 50px;
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.accordion-button {
    background: #fff;
    border-radius: 10px !important;
    box-shadow: var(--box-shadow);
    font-weight: 500;
    color: var(--dark-color);
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 107, 53, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 20px 25px;
    color: #6c757d;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #fff;
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 60px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.cta-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(100px, -150px);
}

.cta-box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-100px, 100px);
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .contact-form-wrapper {
        padding: 0;
    }
    
    .map-wrapper {
        margin-top: 50px;
        height: 400px;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .office-card {
        box-shadow: none;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-card {
        margin-bottom: 30px;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .accordion-button {
        padding: 15px 20px;
    }
}

@media (max-width: 575.98px) {
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-card h4 {
        font-size: 1.2rem;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
}

/* ===== 404 PAGE STYLES ===== */
.error-section {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.error-content {
    padding: 30px;
}

.error-title {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--dark-color);
    letter-spacing: -2px;
}

.error-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.error-title .highlight:after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: rgba(255, 107, 53, 0.2);
    z-index: -1;
}

.error-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.error-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.8;
}

.error-actions {
    margin-bottom: 40px;
}

.error-image {
    position: relative;
    text-align: center;
}

.error-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.error-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 53, 0.1);
    top: -50px;
    right: -50px;
    animation: morph 8s ease-in-out infinite;
}

.error-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(42, 157, 143, 0.1);
    bottom: -30px;
    left: 10%;
    animation: morph 8s ease-in-out infinite;
    animation-delay: 2s;
}

/* Suggestions Section */
.suggestions-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.suggestions-box {
    text-align: center;
}

.suggestions-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
}

.suggestion-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.suggestion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.suggestion-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.8rem;
}

.suggestion-card:nth-child(2) .suggestion-icon {
    background: var(--gradient-secondary);
}

.suggestion-card:nth-child(3) .suggestion-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffd166 100%);
}

.suggestion-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.suggestion-card p {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Search Section */
.search-section {
    padding: 80px 0;
    background-color: #fff;
}

.search-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.search-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.search-form .form-control {
    height: 60px;
    border-radius: 30px 0 0 30px;
    border: 1px solid #e0e0e0;
    padding: 0 25px;
    font-size: 1.1rem;
}

.search-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 0 30px;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .error-section {
        padding: 150px 0 80px;
    }
    
    .error-content {
        text-align: center;
        padding: 0;
    }
    
    .error-title {
        font-size: 6rem;
    }
    
    .error-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .error-title {
        font-size: 5rem;
    }
    
    .error-actions .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .error-actions .ms-3 {
        margin-left: 0 !important;
    }
    
    .search-form .form-control,
    .search-form .btn {
        border-radius: 30px;
    }
    
    .search-form .btn {
        width: 100%;
        margin-top: 15px;
    }
}

.instructions-footer-logo {
    color: var(--primary-color);
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

/* Blog Detail Specific Styles */
.blog-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

.blog-detail-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-detail-image img {
    width: 100%;
}

.blog-detail-header {
    margin-bottom: 30px;
}

.blog-detail-category {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.blog-detail-content p {
    margin-bottom: 25px;
}

.blog-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--dark-color);
}

.blog-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 20px;
    color: var(--dark-color);
}

.blog-detail-content ul, .blog-detail-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-detail-content li {
    margin-bottom: 10px;
}

.blog-detail-content img {
    border-radius: 10px;
    margin: 30px 0;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    background-color: rgba(255, 107, 53, 0.05);
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.blog-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.blog-tag:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.author-info p {
    color: #6c757d;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: var(--transition);
    text-decoration: none;
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.comments-section {
    margin-bottom: 50px;
}

.comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    color: var(--dark-color);
}

.comment-date {
    font-size: 0.9rem;
    color: #6c757d;
}

.comment-text {
    margin-bottom: 10px;
    color: #4a4a4a;
}

.comment-reply {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
}

.comment-reply:hover {
    text-decoration: underline;
}

.comment-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
}

.comment-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 10px;
    transition: var(--transition);
}

textarea.form-control {
    min-height: 150px;
}

.related-posts {
    margin-top: 80px;
}

.sidebar-widget {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    color: var(--dark-color);
    transition: var(--transition);
}

.categories-list a:hover {
    color: var(--primary-color);
}

.categories-list .count {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Blog Detail Specific Styles */
.blog-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

.blog-detail-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.blog-detail-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.blog-detail:hover .blog-detail-image img {
    transform: scale(1.03);
}

.blog-detail-header {
    margin-bottom: 30px;
    position: relative;
}

.blog-detail-category {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--dark-color);
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.blog-detail-meta a {
    color: var(--dark-color);
    transition: var(--transition);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 107, 53, 0.1);
}

.blog-detail-meta a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.blog-detail-content p {
    margin-bottom: 25px;
}

.blog-detail-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

.blog-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--dark-color);
    position: relative;
    padding-left: 15px;
}

.blog-detail-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.blog-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 20px;
    color: var(--dark-color);
}

.blog-detail-content ul, .blog-detail-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-detail-content li {
    margin-bottom: 10px;
}

.blog-detail-content img {
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: var(--box-shadow);
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    background-color: rgba(255, 107, 53, 0.05);
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.blog-highlight-box {
    background-color: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.blog-highlight-box.bg-light {
    background-color: var(--light-color);
}

.blog-highlight-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.blog-image-box {
    margin-bottom: 20px;
}

.blog-image-box img {
    box-shadow: var(--box-shadow);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.blog-tag {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 500;
}

.blog-tag:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: var(--box-shadow);
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.author-info p {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.comments-section {
    margin-bottom: 50px;
}

.comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.comment:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.comment-author {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.comment-date {
    font-size: 0.9rem;
    color: #6c757d;
}

.comment-text {
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.comment-reply {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.comment-reply i {
    font-size: 0.8rem;
}

.comment-reply:hover {
    text-decoration: underline;
}

.comment-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.comment-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}



.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.related-posts {
    margin-top: 80px;
}

.related-posts h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.related-posts h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
}

.sidebar-widget {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark-color);
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
}

.search-form .input-group {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-form .form-control {
    border: none;
    padding: 15px 25px;
    border-radius: 30px 0 0 30px;
    margin-bottom: 0;
}

.search-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 0 25px;
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post:hover .recent-post-image img {
    transform: scale(1.1);
}

.recent-post-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-content h5 a {
    color: var(--dark-color);
    transition: var(--transition);
}

.recent-post-content h5 a:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.recent-post-date i {
    color: var(--primary-color);
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list li:hover {
    padding-left: 5px;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    color: var(--dark-color);
    transition: var(--transition);
    font-weight: 500;
}

.categories-list a:hover {
    color: var(--primary-color);
}

.categories-list .count {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.categories-list a:hover .count {
    background-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 991.98px) {
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-content {
        font-size: 1rem;
    }
    
    .blog-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .comment {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-date {
        margin-top: 5px;
    }
}

@media (max-width: 991.98px) {
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-content {
        font-size: 1rem;
    }
    
    .blog-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .comment {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-date {
        margin-top: 5px;
    }
}
