/*
Theme Name: Digital Buzz Mitra Theme
Description: A modern, professional WordPress theme for Digital Buzz Mitra - digital marketing agency. Features Bootstrap 5, Elementor compatibility, dynamic menus, search functionality, and responsive design.
Version: 1.0.0
Author: Digital Buzz Mitra
Author URI: https://digitalbuzzmitra.com
Text Domain: sunilweb-theme
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: business, marketing, responsive, bootstrap, elementor, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
    --primary-color: #F5A623;
    --secondary-color: #062e48;
    --accent-color: #1B3A4B;
    --text-dark: #1B3A4B;
    --text-light: #6B7280;
    --gradient-bg: linear-gradient(135deg, #062e48 0%, #1B3A4B 100%);
}
html,body{
    width:100%;
    overflow-x:hidden;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Enhanced PPC Platforms Section */
.ppc-platforms {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.platforms-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 46, 72, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #ff8c00);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.platform-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.platform-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.platform-card-inner {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.platform-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.platform-card:hover .platform-overlay {
    opacity: 1;
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.platform-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.platform-name {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.platform-type {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.platform-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.platform-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.platform-stats {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.stat-item i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Platform-specific styling */
.google-platform {
    border-top: 4px solid #4285f4;
}

.google-platform .platform-icon {
    color: #4285f4;
}

.google-platform .platform-overlay {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(66, 133, 244, 0.05));
}

.google-platform:hover .platform-icon {
    color: #1a73e8;
    transform: scale(1.1);
}

.facebook-platform {
    border-top: 4px solid #1877f2;
}

.facebook-platform .platform-icon {
    color: #1877f2;
}

.facebook-platform .platform-overlay {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(24, 119, 242, 0.05));
}

.facebook-platform:hover .platform-icon {
    color: #166fe5;
    transform: scale(1.1);
}

.instagram-platform {
    border-top: 4px solid #e4405f;
}

.instagram-platform .platform-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-platform .platform-overlay {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(188, 24, 136, 0.05));
}

.instagram-platform:hover .platform-icon {
    transform: scale(1.1);
}

.linkedin-platform {
    border-top: 4px solid #0077b5;
}

.linkedin-platform .platform-icon {
    color: #0077b5;
}

.linkedin-platform .platform-overlay {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.1), rgba(0, 119, 181, 0.05));
}

.linkedin-platform:hover .platform-icon {
    color: #005885;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .platform-card {
        margin-bottom: 1.5rem;
    }
    
    .platform-card-inner {
        padding: 1.5rem 1rem;
    }
    
    .platform-icon {
        font-size: 2.5rem;
    }
}

/* Enhanced PPC Benefits Section */
.ppc-benefits {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.benefits-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(6, 46, 72, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
}

.modern-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(245, 166, 35, 0.1);
    position: relative;
    overflow: hidden;
}

.modern-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8c00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-benefit:hover::before {
    transform: scaleX(1);
}

.modern-benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.benefit-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.modern-benefit:hover .icon-glow {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Icon-specific styling */
.bolt-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.bolt-glow {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.target-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.target-glow {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.roi-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.roi-glow {
    background: linear-gradient(135deg, #10b981, #059669);
}

.control-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.control-glow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.benefit-content {
    flex: 1;
}

.benefit-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.benefit-highlight {
    display: inline-block;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), #ff8c00);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Image Section */
.benefits-image-wrapper {
    position: relative;
    padding: 1rem;
}

.image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c00);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.benefits-image {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .benefits-grid {
        gap: 1.5rem;
    }
    
    .modern-benefit {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .modern-benefit {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .icon-glow {
        width: 60px;
        height: 60px;
    }
    
    .benefits-image-wrapper {
        padding: 0.5rem;
        margin-top: 2rem;
    }
}

/* Enhanced Social Media Services Section */
.social-service-includes {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.social-includes-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(6, 46, 72, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.social-service-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.1);
}

.social-service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card-inner {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.social-service-card:hover .icon-glow {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.15);
}

.social-service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Service-specific styling */
.strategy-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.strategy-glow {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.strategy-card .service-overlay {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
}

.creation-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.creation-glow {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.creation-card .service-overlay {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(8, 145, 178, 0.05));
}

.community-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.community-glow {
    background: linear-gradient(135deg, #10b981, #059669);
}

.community-card .service-overlay {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
}

.advertising-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.advertising-glow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.advertising-card .service-overlay {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
}

.hashtag-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.hashtag-glow {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.hashtag-card .service-overlay {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(219, 39, 119, 0.05));
}

.analytics-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.analytics-glow {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.analytics-card .service-overlay {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.feature-tag {
    background: linear-gradient(135deg, var(--primary-color), #ff8c00);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Social Services */
@media (max-width: 992px) {
    .service-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .icon-glow {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .social-service-card {
        margin-bottom: 1.5rem;
    }
    
    .service-card-inner {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .icon-glow {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-wrapper {
        align-self: center;
    }
    
    .service-features {
        justify-content: center;
    }
}

/* Enhanced Social Platforms Section */
.social-platforms {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.platforms-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 46, 72, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.social-platform-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.social-platform-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.platform-card-wrapper {
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.platform-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-platform-card:hover .platform-hover-overlay {
    opacity: 1;
}

.platform-icon-container {
    position: relative;
    margin-bottom: 1rem;
}

.platform-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.platform-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 18px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.social-platform-card:hover .platform-glow {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.2);
}

.social-platform-card:hover .platform-icon {
    transform: scale(1.1);
}

.platform-info {
    margin-bottom: 1rem;
}

.platform-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.platform-users {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.platform-features {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-top: auto;
}

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-platform-card:hover .feature-dot {
    opacity: 1;
    transform: scale(1.2);
}

/* Platform-specific styling */
.facebook-card {
    border-color: transparent;
}

.facebook-card:hover {
    border-color: #1877f2;
}

.facebook .platform-icon {
    background: linear-gradient(135deg, #1877f2, #166fe5);
    color: white;
}

.facebook-glow {
    background: linear-gradient(135deg, #1877f2, #166fe5);
}

.facebook-card .platform-hover-overlay {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(22, 111, 229, 0.05));
}

.instagram-card:hover {
    border-color: #e4405f;
}

.instagram .platform-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-glow {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-card .platform-hover-overlay {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(188, 24, 136, 0.05));
}

.twitter-card:hover {
    border-color: #1da1f2;
}

.twitter .platform-icon {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.twitter-glow {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.twitter-card .platform-hover-overlay {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.1), rgba(13, 139, 217, 0.05));
}

.linkedin-card:hover {
    border-color: #0077b5;
}

.linkedin .platform-icon {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white !important;
}

.linkedin .platform-icon i {
    color: white !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    font-size: 2rem !important;
}
.platform-icon-container .linkedin{
    background: linear-gradient(135deg, #0077b5, #005885);
}
.linkedin-glow {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.linkedin-card .platform-hover-overlay {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.1), rgba(0, 88, 133, 0.05));
}

.youtube-card:hover {
    border-color: #ff0000;
}

.youtube .platform-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.youtube-glow {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.youtube-card .platform-hover-overlay {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(204, 0, 0, 0.05));
}

.pinterest-card:hover {
    border-color: #bd081c;
}

.pinterest .platform-icon {
    background: linear-gradient(135deg, #bd081c, #9a0615);
    color: white !important;
}

.pinterest .platform-icon i {
    color: white !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    font-size: 2rem !important;
}
.platform-icon-container .pinterest{
    background: linear-gradient(135deg, #bd081c, #9a0615);
}
.pinterest-glow {
    background: linear-gradient(135deg, #bd081c, #9a0615);
}

.pinterest-card .platform-hover-overlay {
    background: linear-gradient(135deg, rgba(189, 8, 28, 0.1), rgba(154, 6, 21, 0.05));
}

/* Responsive Design for Platforms */
@media (max-width: 992px) {
    .platform-card-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .platform-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .platform-glow {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .social-platform-card {
        margin-bottom: 1rem;
    }
    
    .platform-card-wrapper {
        padding: 1.2rem 0.8rem;
    }
    
    .platform-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .platform-glow {
        width: 50px;
        height: 50px;
    }
    
    .platform-info h5 {
        font-size: 1rem;
    }
    
    .platform-users {
        font-size: 0.75rem;
    }
}

/* Navbar Styles */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-consultation {
    background: var(--primary-color);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.btn-consultation:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 46, 72, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7b00 100%) !important;
    border: none !important;
    padding: 15px 35px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    color: white !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff7b00 0%, var(--primary-color) 100%) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.5) !important;
    color: white !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content .highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom {
    background: var(--primary-color);
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-weight: 600;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 13px 30px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover,
.btn-outline-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-secondary {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-outline-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-outline-secondary:hover::before {
    left: 100%;
}

.btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 500px;
}

.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.facebook { background: #1877F2; }
.instagram { background: linear-gradient(45deg, #F56040, #E91E63, #C13584); }
.youtube { background: #FF0000; }
.twitter { background: var(--secondary-color); }

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        padding: 100px 0;
        text-align: center;
        min-height: auto;
        padding-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 90%;
        margin-right: 0 !important;
        margin-top: 2rem;
    }
    
    .btn-consultation {
        margin-top: 15px;
    }
    
    .hero-illustration {
        margin-top: 40px;
        height: 300px;
        display: none;
    }
}

/* About Us Section */
.about-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(74, 144, 164, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-us .badge-text {
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

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

.about-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
}

.feature-item {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
}

.feature-item:hover {
    background: rgba(245, 166, 35, 0.05);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.feature-content h5 {
    color: var(--text-dark);
    font-weight: 600;
}

.about-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 166, 35, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

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

/* About Visual */
.about-visual {
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
}

.main-image img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

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

.card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

.card-3 {
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

.floating-card .icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 10px;
}

.floating-card h6 {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 5px;
    font-weight: 500;
}

.floating-card .percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* About Us Mobile Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .feature-item:hover {
        transform: none;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .stat-item {
        min-width: 120px;
        margin-bottom: 15px;
    }
    
    .floating-card {
        display: none;
    }
    
    .main-image img {
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Success Stories Section */
.success-stories {
    background: linear-gradient(135deg, #fef7f0 0%, #f8f4ff 100%);
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 127, 80, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(147, 112, 219, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 166, 35, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.success-stories .section-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.magic-sparkle {
    font-size: 1.8rem;
    animation: magicSparkle 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.4));
}

.magic-sparkle.right {
    animation-delay: 1.5s;
}

@keyframes magicSparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: scale(1.3) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.9;
    }
    75% {
        transform: scale(1.4) rotate(270deg);
        opacity: 1;
    }
}

.success-card {
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.success-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.coral-gradient {
    background: linear-gradient(135deg, #ff7f50 0%, #ff6b6b 50%, #ffa07a 100%);
    color: white;
}

.lavender-gradient {
    background: linear-gradient(135deg, #9370db 0%, #ba55d3 50%, #dda0dd 100%);
    color: white;
}

.card-header-content {
    margin-bottom: 25px;
}

.success-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: white;
}

.growth-metric {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.icon-container:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.icon-container i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.icon-label {
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.story-content {
    font-size: 0.95rem;
    line-height: 1.7;
}

.story-content p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.story-highlight {
    font-weight: 700;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.success-cta {
    margin-top: 40px;
    padding: 30px;
    background: rgba(245, 166, 35, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(245, 166, 35, 0.1);
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.success-btn {
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.4);
    background: linear-gradient(135deg, #FFB84D, var(--primary-color));
}

/* Success Card Patterns */
.success-card-pattern-1 {
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
                      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 3px, transparent 3px),
                      radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 60px 60px, 40px 40px;
}

.success-card-pattern-2 {
    background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
                      radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 3px, transparent 3px),
                      radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 45px 45px, 65px 65px, 35px 35px;
}

.success-cta-pattern {
    background-image: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
                      radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.1) 3px, transparent 3px),
                      radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                      radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 40px 40px, 60px 60px, 30px 30px, 50px 50px;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Success Stories Mobile Responsive */
@media (max-width: 768px) {
    .success-stories .section-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .magic-sparkle {
        font-size: 1.4rem;
    }
    
    .success-card {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .success-title {
        font-size: 1.1rem;
    }
    
    .story-content {
        font-size: 0.9rem;
    }
    
    .success-cta {
        padding: 20px;
        margin-top: 30px;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .success-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Digital Benefits Section */
.digital-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.digital-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(74, 144, 164, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.star-decoration {
    font-size: 2rem;
    animation: starPulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.star-decoration.right {
    animation-delay: 1.25s;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2) rotate(72deg);
        opacity: 1;
    }
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.benefits-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.15);
}

.benefit-service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    margin-bottom: 25px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
    transition: all 0.3s ease;
}

.benefit-service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.4);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-content {
    text-align: left;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

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

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(245, 166, 35, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(245, 166, 35, 0.2);
    transition: all 0.2s ease;
}

.benefit-service-card:hover .feature-tag {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.benefits-cta {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(74, 144, 164, 0.1) 100%);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(245, 166, 35, 0.2);
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 25px;
}

.btn-benefits {
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-benefits:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 166, 35, 0.4);
    background: linear-gradient(135deg, #FFB84D, var(--primary-color));
    color: white;
}

/* Benefits Mobile Responsive */
@media (max-width: 768px) {
    .benefits-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .star-decoration {
        font-size: 1.5rem;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .benefit-service-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .benefits-cta {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .btn-benefits {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 144, 164, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.quote-decoration {
    font-size: 1.8rem;
    animation: quotePulse 2.8s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.3));
}

.quote-decoration.right {
    animation-delay: 1.4s;
}

@keyframes quotePulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.15) rotate(10deg);
        opacity: 1;
    }
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 650px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(245, 166, 35, 0.12);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.quote-icon i {
    font-size: 1.2rem;
    color: white;
}

.star-rating {
    margin-bottom: 20px;
}

.star-rating i {
    color: #ffc107;
    font-size: 1rem;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid rgba(245, 166, 35, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-position {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.testimonials-stats {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.05) 0%, rgba(74, 144, 164, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(245, 166, 35, 0.1);
}

.stat-box {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(245, 166, 35, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials Slider Styling */
.testimonials-slider {
    position: relative;
    margin: 0 -15px;
}

.testimonial-slide {
    padding: 0 15px;
    outline: none;
}

.testimonial-slide .testimonial-card {
    margin: 0;
    height: auto;
}

/* Slick Slider Custom Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D) !important;
    color: white !important;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.25);
    outline: none;
    border: 2px solid transparent;
}

.testimonial-arrow:hover {
    background: #1B3A4B !important;
    color: white !important;
    transform: translateY(-50%);
    box-shadow: 0 6px 20px rgba(27, 58, 75, 0.3);
}

.testimonial-arrow:active {
    transform: translateY(-50%);
    background: #1B3A4B !important;
    color: white !important;
    box-shadow: 0 3px 10px rgba(27, 58, 75, 0.4);
}

.testimonial-arrow:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.3), 0 6px 20px rgba(245, 166, 35, 0.25);
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), #FFB84D) !important;
    color: white !important;
}

.testimonial-arrow:visited {
    background: linear-gradient(135deg, var(--primary-color), #FFB84D) !important;
    color: white !important;
}

.slick-prev.testimonial-arrow {
    left: -30px;
}

.slick-next.testimonial-arrow {
    right: -30px;
}

.testimonial-arrow i {
    transition: all 0.3s ease;
}

/* Hide Slick Dots */
.testimonials-slider .slick-dots {
    display: none !important;
}

/* Hide Default Slick Arrow Content */
.slick-prev:before, .slick-next:before {
    display: none;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    min-height: 600px;
}

/* Contact Cards Container */
.contact-cards-container {
    background: #f8f9fa;
    padding: 40px 30px;
    height: 100%;
    min-height: 600px;
}

.contact-cards-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.contact-cards-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 35px;
    text-align: center;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.15);
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7b00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.contact-card-icon i {
    font-size: 1.4rem;
    color: white;
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-card-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6c757d;
    margin: 0;
}

.contact-card-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card-content a:hover {
    color: var(--secondary-color);
    text-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 60px 50px;
    height: 100%;
    min-height: 600px;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.form-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 35px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-control {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 0.95rem;
    color: #495057;
    transition: all 0.3s ease;
    height: auto;
}

.contact-form .form-control:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.15);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #adb5bd;
    font-size: 0.95rem;
}

.contact-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: 45px;
    appearance: none;
}

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

.btn-consultation {
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 46, 72, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), #0a3d5c);
    color: white;
}

/* Working Space Highlight Section */
.working-space-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.working-space-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 144, 164, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.working-space-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

.working-space-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.working-space-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(245, 166, 35, 0.15);
}

.working-space-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7b00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.working-space-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.working-space-card:hover .working-space-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.4);
}

.working-space-card:hover .working-space-icon::before {
    opacity: 0.3;
}

.working-space-icon i {
    font-size: 2rem;
    color: white;
}

.working-space-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.working-space-address {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 20px;
    font-weight: 500;
}

.working-space-address i {
    color: var(--primary-color);
}

.working-space-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-badge {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(74, 144, 164, 0.1));
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(245, 166, 35, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.feature-badge i {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-badge:hover i {
    color: white;
}

.btn-working-space {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a3d5c 50%, #0e4a70 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 20px rgba(6, 46, 72, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.btn-working-space::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-working-space:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(6, 46, 72, 0.4);
    background: linear-gradient(135deg, #0a3d5c 0%, #0e4a70 50%, #125984 100%);
    color: white;
}

.btn-working-space:hover::before {
    left: 100%;
}

.cta-note {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    font-style: italic;
}

/* Working Space Mobile Responsive */
@media (max-width: 768px) {
    .working-space-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .working-space-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .working-space-icon i {
        font-size: 1.6rem;
    }
    
    .working-space-title {
        font-size: 1.5rem;
    }
    
    .working-space-features {
        justify-content: center;
        margin-bottom: 25px;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .btn-working-space {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-cards-container {
        min-height: auto;
        padding: 30px 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .contact-form-section {
        min-height: auto;
        padding: 40px 30px;
        border-radius: 0 0 15px 15px;
    }
    
    .contact-section .row {
        margin: 0 15px;
    }
    
    .contact-section .col-lg-5,
    .contact-section .col-lg-7 {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .contact-cards-container,
    .contact-form-section {
        padding: 25px 15px;
    }
    
    .contact-cards-title,
    .form-title {
        font-size: 1.6rem;
    }
    
    .contact-cards {
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-card-icon i {
        font-size: 1.2rem;
    }
    
    .contact-card-content h4 {
        font-size: 1.1rem;
    }
    
    .btn-consultation {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    color: #ecf0f1;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 144, 164, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.footer-main {
    padding: 40px 0 0;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand {
    position: relative;
    z-index: 1;
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-brand:hover {
    transform: translateY(-5px);
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f5a623, #FFB84D, #e8941a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f5a623, #FFB84D);
    border-radius: 2px;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 400;
}

.social-media-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.social-link.facebook:hover { background: linear-gradient(135deg, #1877F2, #42a5f5); }
.social-link.twitter:hover { background: linear-gradient(135deg, #1DA1F2, #64b5f6); }
.social-link.instagram:hover { background: linear-gradient(135deg, #E4405F, #fd79a8); }
.social-link.linkedin:hover { background: linear-gradient(135deg, #0077B5, #4fc3f7); }
.social-link.pinterest:hover { background: linear-gradient(135deg, #BD081C, #e91e63); }
.social-link.youtube:hover { background: linear-gradient(135deg, #FF0000, #ff5722); }

/* Footer Titles */
.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #f5a623, #FFB84D);
    border-radius: 2px;
}

.footer-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 45px;
    width: 8px;
    height: 3px;
    background: rgba(245, 166, 35, 0.4);
    border-radius: 2px;
}

/* Footer Links */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom:0;
    position: relative;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
    padding: 8px 0;
    font-weight: 500;
}

.footer-menu a:hover {
    color: #f5a623;
    padding-left: 15px;
    transform: translateX(5px);
}

.footer-menu a::before {
    content: '▶';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    color: #f5a623;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.footer-menu a:hover::before {
    opacity: 1;
    left: -10px;
}

.footer-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f5a623, #FFB84D);
    transition: width 0.3s ease;
}

.footer-menu a:hover::after {
    width: 100%;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    color: #f5a623;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 15px;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: rgba(245, 166, 35, 0.3);
}

.contact-item i {
    color: #f5a623;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-item span,
.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: #f5a623;
}

/* Newsletter */
.newsletter-form {
    margin-top: 25px;
    position: relative;
}

.newsletter-form::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(245, 166, 35, 0.1), rgba(6, 46, 72, 0.1));
    border-radius: 35px;
    z-index: -1;
}

.input-group {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter-input {
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    background: transparent;
    color: white;
    border-radius: 30px 0 0 30px;
    flex: 1;
    font-weight: 500;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    background: linear-gradient(135deg, #f5a623 0%, #FFB84D 50%, #e8941a 100%);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 0 30px 30px 0;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.newsletter-btn::after {
    content: '\2192';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover::after {
    opacity: 1;
    right: 8px;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #e8941a 0%, #f5a623 50%, #FFB84D 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.5);
    padding-right: 40px;
}

.newsletter-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* Newsletter Plugin Compatibility */
.footer-newsletter .newsletter input[type="submit"],
.footer-newsletter .newsletter button[type="submit"],
.footer-newsletter form input[type="submit"],
.footer-newsletter form button[type="submit"] {
    background: linear-gradient(135deg, #f5a623 0%, #FFB84D 50%, #e8941a 100%) !important;
    color: white !important;
    border: none !important;
    padding: 16px 30px !important;
    border-radius: 30px !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.footer-newsletter .newsletter input[type="submit"]:hover,
.footer-newsletter .newsletter button[type="submit"]:hover,
.footer-newsletter form input[type="submit"]:hover,
.footer-newsletter form button[type="submit"]:hover {
    background: linear-gradient(135deg, #e8941a 0%, #f5a623 50%, #FFB84D 100%) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.5) !important;
}

.footer-newsletter .newsletter input[type="submit"]:active,
.footer-newsletter .newsletter button[type="submit"]:active,
.footer-newsletter form input[type="submit"]:active,
.footer-newsletter form button[type="submit"]:active {
    transform: translateY(-1px) scale(0.98) !important;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4) !important;
}

/* Newsletter Input Styling */
.footer-newsletter .newsletter input[type="email"],
.footer-newsletter form input[type="email"] {
    border: none !important;
    padding: 16px 25px !important;
    font-size: 1rem !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: white !important;
    border-radius: 5px !important;
    font-weight: 500 !important;
    margin-bottom: 15px !important;
    width: 100% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.footer-newsletter .newsletter input[type="email"]:focus,
.footer-newsletter form input[type="email"]:focus {
    outline: none !important;
    background: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.2) !important;
    transform: translateY(-2px) !important;
}

.footer-newsletter .newsletter input[type="email"]::placeholder,
.footer-newsletter form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 0;
    border-top: 1px solid rgba(245, 166, 35, 0.2);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f5a623, transparent);
}

.copyright-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: white;
    background: linear-gradient(135deg, #f5a623, #FFB84D);
    border-color: #f5a623;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}


/* WhatsApp Floating Button */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 28px;
    color: white;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    animation: none;
    text-decoration: none;
}

.whatsapp-float:hover i {
    color: white;
}

/* Mobile Offcanvas Styling */
.offcanvas {
    --bs-offcanvas-width: 300px;
}

.offcanvas-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-bottom: none;
}

.offcanvas-title {
    font-weight: 700;
    color: white;
}

.offcanvas .btn-close {
    filter: invert(1);
}

.offcanvas-body {
    padding: 2rem 1.5rem;
    background: #f8f9fa;
}

.offcanvas .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
    color: var(--primary-color) !important;
    padding-left: 1rem;
}

.offcanvas .btn-consultation {
    border-radius: 25px;
    font-weight: 600;
}

.offcanvas .btn-link {
    color: var(--text-dark) !important;
    text-decoration: none;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.offcanvas .btn-link:hover {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
}

/* Blog Page Styles */
.blog-hero {
    background: var(--gradient-bg);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.blog-posts-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.blog-placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-card-meta i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

.no-posts-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-posts-found i {
    font-size: 4rem;
    color: var(--primary-color);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.blog-search-form .form-control {
    border: 1px solid #e9ecef;
    border-radius: 8px 0 0 8px;
    padding: 12px 15px;
}

.blog-search-form .btn {
    border-radius: 0 8px 8px 0;
    padding: 12px 20px;
}

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

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
    transition: color 0.3s ease;
}

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

.post-count {
    background: #f8f9fa;
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

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

.recent-post-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f3f4;
}

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

.recent-post-link {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

.recent-post-link h6 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
}

.newsletter-widget .widget-title::after {
    background: rgba(255, 255, 255, 0.3);
}

.newsletter-widget p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    margin: 0 6px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 48px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-pagination .page-numbers:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.blog-pagination .page-numbers.current {
    background: #062e48;
    color: white;
    border-color: #062e48;
    box-shadow: 0 4px 15px rgba(6, 46, 72, 0.4);
}

.blog-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: default;
    box-shadow: none;
}

.blog-pagination .page-numbers.dots:hover {
    background: transparent;
    color: var(--text-light);
    transform: none;
    box-shadow: none;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    padding: 12px 20px;
    font-weight: 600;
}

.blog-pagination .page-numbers.prev:hover,
.blog-pagination .page-numbers.next:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero-title {
        font-size: 2.2rem;
    }
    
    .blog-posts-section {
        padding: 60px 0;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .brand-name {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .brand-description {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .social-media-links {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-menu {
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 20px auto 0;
    }
    
    .newsletter-btn {
        padding: 14px 25px !important;
        font-size: 0.9rem !important;
        border-radius: 25px !important;
    }
    
    .footer-newsletter .newsletter input[type="submit"],
    .footer-newsletter .newsletter button[type="submit"],
    .footer-newsletter form input[type="submit"],
    .footer-newsletter form button[type="submit"] {
        padding: 14px 25px !important;
        font-size: 0.9rem !important;
        border-radius: 25px !important;
        width: 100% !important;
        margin-top: 10px !important;
    }
    
    .footer-newsletter .newsletter input[type="email"],
    .footer-newsletter form input[type="email"] {
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright-text {
        text-align: center;
    }
}

/* Navbar Logo Styles */
.navbar-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.logo-container {
    transition: all 0.3s ease;
}

.logo-container:hover .brand-text span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Logo Responsive */
@media (max-width: 768px) {
    .navbar-logo {
        height: 45px;
    }
}

/* Testimonials Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .quote-decoration {
        font-size: 1.4rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .testimonials-stats {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonials-slider {
        margin: 0;
    }
    
    .testimonial-slide {
        padding: 0;
    }
    
    .slick-prev.testimonial-arrow,
    .slick-next.testimonial-arrow {
        display: none !important;
    }
}

/* Trusted Partners Section */
.trusted-partners {
    background: #f8f9fa;
    padding: 60px 0;
}

/* Section Header Styling */
.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    border: none;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-slider {
    margin: 0 -15px;
}

.partner-logo {
    padding: 0 15px;
    height: 120px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-3px);
}

.logo-card {
    background: transparent;
    border: none;
    padding: 20px 15px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover .logo-card {
    transform: translateY(-2px);
}

.partner-logo img {
    max-width: 320px;
    height: 80px;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
    border-radius: 8px;
    object-fit: contain;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.02);
}

/* Slick slider customization */
.partners-slider .slick-dots {
    bottom: -50px;
}

.partners-slider .slick-dots li button:before {
    color: var(--primary-color);
    font-size: 12px;
}

.partners-slider .slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

.partners-slider .slick-prev,
.partners-slider .slick-next {
    display: none !important;
}

/* Section Badge Styling */
.section-badge .badge {
    background: linear-gradient(135deg, var(--primary-color), #FFB84D) !important;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    border: none;
}

.section-badge .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* Enhanced Section Styling */
.trusted-partners .lead {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .trusted-partners {
        padding: 40px 0 !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .partner-logo {
        height: 100px;
    }
    
    .partner-logo img {
        max-width: 280px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .trusted-partners {
        padding: 30px 0 !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .logo-card {
        padding: 15px 10px;
    }
    
    .partner-logo {
        height: 90px;
    }
    
    .partner-logo img {
        max-width: 240px;
        height: 60px;
    }
}

/* Custom animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fa-phone-alt{
    transform: rotate(100deg);
}

/* SEO Results Section */
.seo-results {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.seo-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.result-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.result-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.result-stats h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.result-stats p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 1rem;
}

.result-description p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Client Testimonials Section */
.client-testimonials {
    background: #f8f9fa;
}

.testimonials-slider {
    position: relative;
    padding: 0 60px;
}

.testimonial-slide {
    padding: 0 15px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 400px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.stars {
    margin-bottom: 1rem;
}

/* Testimonials Slider Navigation */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.testimonial-arrow:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.testimonial-arrow:focus {
    outline: none;
}

.slick-prev.testimonial-arrow {
    left: 10px;
}

.slick-next.testimonial-arrow {
    right: 10px;
}

.testimonials-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.testimonials-slider .slick-slide {
    height: auto;
}

.testimonials-slider .slick-slide > div {
    height: 100%;
}

/* Mobile responsive for testimonials slider */
@media (max-width: 768px) {
    .testimonials-slider {
        padding: 0 20px;
    }
    
    .testimonial-arrow {
        display: none !important;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
}

.stars i {
    color: #ffc107;
    font-size: 1.1rem;
    margin-right: 0.2rem;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
}

.author-info h5 {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

/* SEO Process Section */
.seo-process {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.seo-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="process-dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(102,126,234,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23process-dots)"/></svg>');
    opacity: 0.5;
}

.process-timeline {
    position: relative;
    z-index: 2;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.process-step {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.step-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: scale(1.1);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.step-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 600;
}

/* Enhanced FAQ Section */
.seo-faq {
    background: #fff;
}

.seo-faq .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.seo-faq .accordion-button {
    background: #fff;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.seo-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: none;
}

.seo-faq .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.seo-faq .accordion-body {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    color: #666;
    line-height: 1.6;
}

/* Social Media FAQ Section */
.social-faq {
    background: #fff;
}

.social-faq .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.social-faq .accordion-button {
    background: #fff;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.social-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: none;
}

.social-faq .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.social-faq .accordion-body {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    color: #666;
    line-height: 1.6;
}

/* Service Detail Pages Styles - Scoped to .service-detail-page */
.service-detail-page .service-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-detail-page .service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.service-detail-page .service-hero .container {
    position: relative;
    z-index: 2;
}

.service-detail-page .service-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-detail-page .service-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-detail-page .service-breadcrumb a:hover {
    color: #fff;
}

.service-detail-page .service-breadcrumb span {
    color: #fff;
    font-weight: 500;
}

.service-detail-page .service-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.service-detail-page .service-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.service-detail-page .service-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.service-detail-page .service-hero-stats .stat-item {
    text-align: center;
}

.service-detail-page .service-hero-stats .stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.service-detail-page .service-hero-stats .stat-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.service-detail-page .service-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-detail-page .service-hero-image {
    position: relative;
}

.service-detail-page .service-hero-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-detail-page .service-hero-image img:hover {
    transform: translateY(-5px);
}

/* Service Features Cards */
.service-detail-page .service-feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail-page .service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-page .service-feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.service-detail-page .service-feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-detail-page .service-feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* SEO Process Mobile Responsive */
@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .step-wrapper {
        margin-bottom: 1rem;
    }
    
    .step-number {
        top: -5px;
        right: -5px;
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
}

/* Mobile Responsive for Service Pages */
@media (max-width: 768px) {
    .service-detail-page .service-hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .service-detail-page .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-detail-page .service-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-detail-page .service-hero-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .service-detail-page .service-hero-stats .stat-item h3 {
        font-size: 2rem;
    }
    
    .service-detail-page .service-hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .service-detail-page .service-hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

.blog-details-page .single-post-hero {
    background: var(--gradient-bg);
    padding: 120px 0 80px;
    color: white;
}

.blog-details-page .post-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-details-page .category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-details-page .post-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 1.5rem 0;
    color: white;
}

.blog-details-page .post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.blog-details-page .post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.blog-details-page .post-meta i {
    color: var(--primary-color);
}

/* Featured Image */
.blog-details-page .post-featured-image {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-details-page .featured-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-details-page .featured-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Content */
.blog-details-page .post-content-section {
    padding: 80px 0;
}

.blog-details-page .content-wrapper {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-details-page .content-wrapper h1,
.blog-details-page .content-wrapper h2,
.blog-details-page .content-wrapper h3,
.blog-details-page .content-wrapper h4,
.blog-details-page .content-wrapper h5,
.blog-details-page .content-wrapper h6 {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.blog-details-page .content-wrapper h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.blog-details-page .content-wrapper h3 {
    font-size: 1.5rem;
}

.blog-details-page .content-wrapper p {
    margin-bottom: 1.5rem;
}

.blog-details-page .content-wrapper ul,
.blog-details-page .content-wrapper ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-details-page .content-wrapper li {
    margin-bottom: 0.5rem;
}

.blog-details-page .content-wrapper blockquote {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
}

/* Post Tags */
.blog-details-page .post-tags {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
}

.blog-details-page .post-tags h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.blog-details-page .tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-details-page .tag-item {
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Social Share */
.blog-details-page .post-share {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
}

.blog-details-page .post-share h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.blog-details-page .share-buttons {
    display: flex;
    gap: 1rem;
}

.blog-details-page .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-details-page .share-btn.facebook {
    background: #1877f2;
}

.blog-details-page .share-btn.twitter {
    background: #1da1f2;
}

.blog-details-page .share-btn.linkedin {
    background: #0077b5;
}

.blog-details-page .share-btn.whatsapp {
    background: #25d366;
}

.blog-details-page .share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}



/* Single Post Sidebar */
.blog-details-page .single-post-sidebar {
    padding-left: 2rem;
}

.blog-details-page .sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Related Posts */
.blog-details-page .related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-details-page .related-post-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.blog-details-page .related-post-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-details-page .related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details-page .related-placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.blog-details-page .related-post-content h6 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    line-height: 1.3;
}

.blog-details-page .related-post-content h6 a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-details-page .related-post-content h6 a:hover {
    color: var(--primary-color);
}

.blog-details-page .related-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}


/* Blog Details Page Mobile Responsive */
@media (max-width: 768px) {
    .blog-details-page .single-post-hero {
        padding: 100px 0 60px;
    }
    
    .blog-details-page .post-title {
        font-size: 2.2rem;
    }
    
    .blog-details-page .post-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    
    .blog-details-page .single-post-sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .blog-details-page .share-buttons {
        justify-content: center;
    }
}

/* Contact Page Styles - Scoped to .contact-page */
.contact-page .contact-hero {
    background: var(--gradient-bg);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.contact-page .contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-page .contact-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Content */
.contact-page .contact-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-page .contact-content .row {
    display: flex;
    align-items: stretch;
}

.contact-page .contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px;
    height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
}

.contact-page .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #062e48;
    margin-bottom: 15px;
    text-align: center;
}

.contact-page .section-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    text-align: center;
}

/* Contact Form 7 Styles */
.contact-page .wpcf7-form .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.contact-page .wpcf7-form .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.contact-page .wpcf7-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-page .wpcf7-form label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: -0.5rem;
    display: block;
}

.contact-page .wpcf7-form .form-control,
.contact-page .wpcf7-form input[type="text"],
.contact-page .wpcf7-form input[type="email"],
.contact-page .wpcf7-form input[type="tel"],
.contact-page .wpcf7-form select,
.contact-page .wpcf7-form textarea {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.contact-page .wpcf7-form .form-control:focus,
.contact-page .wpcf7-form input[type="text"]:focus,
.contact-page .wpcf7-form input[type="email"]:focus,
.contact-page .wpcf7-form input[type="tel"]:focus,
.contact-page .wpcf7-form select:focus,
.contact-page .wpcf7-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.25);
    outline: none;
}

.contact-page .wpcf7-form select {
    cursor: pointer;
}

.contact-page .wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-page .wpcf7-form input[type="submit"] {
    background: #f5a623;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    display: block;
    margin: 0 auto;
}

.contact-page .wpcf7-form .wpcf7-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-page .wpcf7-form .wpcf7-response-output {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
}

.contact-page .wpcf7-form .wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-page .wpcf7-form .wpcf7-validation-errors {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-page .wpcf7-form .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Contact Information */
.contact-page .contact-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px;
    height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
}

.contact-page .contact-info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #062e48;
    margin-bottom: 15px;
    text-align: center;
}

.contact-page .contact-info-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
    text-align: center;
}

.contact-page .contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.contact-page .contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 2.5rem;
}

.contact-page .contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #f5a623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-page .contact-icon i {
    font-size: 1.2rem;
    color: white !important;
}

.contact-page .contact-details h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-page .contact-details p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.contact-page .contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-page .contact-details a:hover {
    text-decoration: underline;
}

.contact-page .contact-details small {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Social Media Links */
.contact-page .contact-social h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-page .social-links {
    display: flex;
    gap: 1rem;
}

.contact-page .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-page .social-link.facebook {
    background: #1877f2;
}

.contact-page .social-link.twitter {
    background: #1da1f2;
}

.contact-page .social-link.linkedin {
    background: #0077b5;
}

.contact-page .social-link.instagram {
    background: #e4405f;
}

.contact-page .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.contact-page .contact-faq {
    padding: 80px 0;
    background: white;
}

.contact-page .section-header {
    margin-bottom: 3rem;
}

.contact-page .faq-accordion {
    max-width: 100%;
}

.contact-page .faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.contact-page .faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-page .faq-question:hover {
    border-color: var(--primary-color);
    background: #f8f9fa;
}

.contact-page .faq-question h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.contact-page .faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.contact-page .faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.contact-page .faq-answer {
    padding: 0 2rem 1.5rem;
    background: white;
}

.contact-page .faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
    .contact-page .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-page .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-page .contact-content {
        padding: 60px 0;
    }
    
    .contact-page .contact-form-wrapper,
    .contact-page .contact-info {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-page .contact-info {
        position: static;
    }
    
    .contact-page .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-page .contact-icon {
        align-self: center;
    }
    
    .contact-page .social-links {
        justify-content: center;
    }
    
    .contact-page .contact-faq {
        padding: 60px 0;
    }
    
    .contact-page .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .contact-page .faq-answer {
        padding: 0 1.5rem 1rem;
    }
    
    .contact-page .wpcf7-form .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ===== ABOUT US PAGE STYLES ===== */
/* About Hero */
.about-page .about-hero {
    background: linear-gradient(135deg, #062e48 0%, #0a4a6b 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-page .about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-page .about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.about-page .about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Company Story */
.about-page .company-story {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-page .story-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #062e48;
    margin-bottom: 15px;
}

.about-page .story-content .section-subtitle {
    color: #f5a623;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.about-page .story-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-page .story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.about-page .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 5px;
}

.about-page .stat-item p {
    color: #062e48;
    font-weight: 600;
    margin: 0;
}

.about-page .story-image {
    position: relative;
}

.about-page .story-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Our Values */
.about-page .our-values {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-page .our-values::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.about-page .our-values .container {
    position: relative;
    z-index: 2;
}

.about-page .our-values .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #062e48;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.about-page .our-values .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f5a623, #e8941a);
    border-radius: 2px;
}

.about-page .our-values .section-subtitle {
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 70px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
}

.about-page .our-values .row {
    display: flex;
    align-items: stretch;
}

.about-page .value-card {
    background: white;
    padding: 20px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 166, 35, 0.1);
}
.about-page .our-values .col-lg-4{
    margin-bottom:1.5rem;
}

.about-page .value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-page .value-card:hover::before {
    left: 100%;
}

.about-page .value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #f5a623;
}

.about-page .value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5a623 0%, #e8941a 50%, #d4831a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2.2rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.3);
    transition: all 0.3s ease;
}

.about-page .value-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(245, 166, 35, 0.2);
    transition: all 0.3s ease;
}

.about-page .value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(245, 166, 35, 0.4);
}

.about-page .value-card:hover .value-icon::after {
    border-color: rgba(245, 166, 35, 0.4);
    transform: scale(1.1);
}

.about-page .value-card h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #062e48;
    margin-bottom: 20px;
    position: relative;
    transition: color 0.3s ease;
}

.about-page .value-card:hover h4 {
    color: #f5a623;
}

.about-page .value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.about-page .value-card:hover p {
    color: #555;
}

/* Staggered animation for value cards */
.about-page .value-card:nth-child(1) { animation-delay: 0.1s; }
.about-page .value-card:nth-child(2) { animation-delay: 0.2s; }
.about-page .value-card:nth-child(3) { animation-delay: 0.3s; }
.about-page .value-card:nth-child(4) { animation-delay: 0.4s; }
.about-page .value-card:nth-child(5) { animation-delay: 0.5s; }
.about-page .value-card:nth-child(6) { animation-delay: 0.6s; }

/* Our Team */
.about-page .our-team {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-page .our-team .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #062e48;
    margin-bottom: 15px;
}

.about-page .our-team .section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.about-page .team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.about-page .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-page .team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

.about-page .team-card:hover .team-image img {
    transform: scale(1.05);
}

.about-page .team-info {
    padding: 30px;
    text-align: center;
}

.about-page .team-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #062e48;
    margin-bottom: 5px;
}

.about-page .team-role {
    color: #f5a623;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-page .team-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-page .team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.about-page .team-social .social-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-page .team-social .social-link:hover {
    background: #f5a623;
    color: white;
    transform: translateY(-2px);
}

/* Why Choose Us */
.about-page .why-choose-us {
    padding: 100px 0;
    background: white;
}

.about-page .choose-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #062e48;
    margin-bottom: 40px;
}

.about-page .choose-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.about-page .choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5a623, #e8941a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-page .choose-text h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #062e48;
    margin-bottom: 10px;
}

.about-page .choose-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-page .choose-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About CTA */
.about-page .about-cta {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-page .cta-container {
    background: linear-gradient(135deg, #062e48 0%, #0a4a6b 100%);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-page .cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-cta-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-cta-pattern)"/></svg>');
    opacity: 0.3;
}

.about-page .cta-content {
    position: relative;
    z-index: 2;
}

.about-page .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.about-page .cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-page .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-page .btn-cta {
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-page .btn-cta.primary {
    background: #f5a623;
    color: white;
    border-color: #f5a623;
}

.about-page .btn-cta.primary:hover {
    background: #e8941a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.3);
}

.about-page .btn-cta.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.about-page .btn-cta.secondary:hover {
    background: white;
    color: #062e48;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-page .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-page .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-page .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-page .company-story,
    .about-page .our-values,
    .about-page .our-team,
    .about-page .why-choose-us {
        padding: 60px 0;
    }
    
    .about-page .story-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .about-page .choose-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .about-page .choose-icon {
        margin: 0 auto;
    }
    
    .about-page .cta-container {
        padding: 40px 25px;
    }
    
    .about-page .cta-title {
        font-size: 2rem;
    }
    
    .about-page .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-page .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== SERVICES PAGE STYLES ===== */
/* Services Hero */
.services-page .services-hero {
    background: linear-gradient(135deg, #062e48 0%, #0a4a6b 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-page .services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23services-pattern)"/></svg>');
    opacity: 0.3;
}

.services-page .services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.services-page .services-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Services Grid */
.services-page .services-grid {
    padding: 100px 0;
    background: white;
}

.services-page .services-grid .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #062e48;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.services-page .services-grid .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f5a623, #e8941a);
    border-radius: 2px;
}

.services-page .services-grid .section-subtitle {
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 70px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
}

.services-page .service-card {
    background: white;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(245, 166, 35, 0.1);
    display: flex;
    flex-direction: column;
}
.services-page .services-grid .col-lg-4{
    margin-bottom: 3rem;
}

.services-page .service-card.featured {
    border: 2px solid #f5a623;
    transform: scale(1.05);
}

.services-page .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.1), transparent);
    transition: left 0.6s ease;
}

.services-page .service-card:hover::before {
    left: 100%;
}

.services-page .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #f5a623;
}

.services-page .service-card.featured:hover {
    transform: translateY(-12px);
}

.services-page .featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f5a623, #e8941a);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.services-page .service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

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

.services-page .service-card:hover .service-image img {
    transform: scale(1.05);
}

.services-page .service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.services-page .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5a623 0%, #e8941a 50%, #d4831a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -55px auto 20px;
    color: rgb(78, 69, 69);
    font-size: 1.5rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.25);
    transition: all 0.3s ease;
    z-index: 2;
}

.services-page .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.4);
}

.services-page .service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #062e48;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.services-page .service-card:hover h4 {
    color: #f5a623;
}

.services-page .service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.services-page .service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    flex-grow: 1;
}

.services-page .service-features li {
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.services-page .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f5a623;
    font-weight: bold;
}

.services-page .btn-service-details {
    background: linear-gradient(135deg, #f5a623, #e8941a);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    justify-content: center;
    width: 100%;
    margin-top: auto;
}

.services-page .btn-service-details:hover {
    background: linear-gradient(135deg, #e8941a, #d4831a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

.services-page .btn-service-details i {
    transition: transform 0.3s ease;
}

.services-page .btn-service-details:hover i {
    transform: translateX(3px);
}

/* Our Process */
.services-page .our-process {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-page .our-process .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #062e48;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.services-page .our-process .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f5a623, #e8941a);
    border-radius: 2px;
}

.services-page .our-process .section-subtitle {
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 60px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-page .process-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 166, 35, 0.1);
    position: relative;
    overflow: hidden;
}

.services-page .process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #f5a623, #e8941a);
    transition: width 0.3s ease;
}

.services-page .process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #f5a623;
}

.services-page .process-card:hover::before {
    width: 6px;
}

.services-page .process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f5a623, #e8941a);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.services-page .process-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.services-page .process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5a623, #e8941a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.services-page .process-card:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

.services-page .process-details h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #062e48;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.services-page .process-card:hover .process-details h4 {
    color: #f5a623;
}

.services-page .process-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Why Choose Services */
.services-page .why-choose-services {
    padding: 100px 0;
    background: white;
}

.services-page .choose-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #062e48;
    margin-bottom: 40px;
}

.services-page .choose-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.services-page .choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5a623, #e8941a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.services-page .choose-text h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #062e48;
    margin-bottom: 10px;
}

.services-page .choose-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.services-page .choose-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Pricing Plans */
.services-page .pricing-plans {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-page .pricing-plans .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #062e48;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.services-page .pricing-plans .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f5a623, #e8941a);
    border-radius: 2px;
}

.services-page .pricing-plans .section-subtitle {
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 70px;
    text-align: center;
}

.services-page .pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 166, 35, 0.1);
}

.services-page .pricing-card.featured {
    border: 2px solid #f5a623;
    transform: scale(1.05);
}

.services-page .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.services-page .pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.services-page .popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f5a623, #e8941a);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.services-page .pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.services-page .pricing-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #062e48;
    margin-bottom: 15px;
}

.services-page .price {
    font-size: 3rem;
    font-weight: 800;
    color: #f5a623;
    line-height: 1;
}

.services-page .price span {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

.services-page .pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.services-page .pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-page .pricing-features li:last-child {
    border-bottom: none;
}

.services-page .pricing-features .fa-check {
    color: #28a745;
}

.services-page .pricing-features .fa-times {
    color: #dc3545;
}

.services-page .btn-pricing {
    background: #f5a623;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.services-page .btn-pricing:hover {
    background: #e8941a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.3);
}

.services-page .btn-pricing.featured {
    background: linear-gradient(135deg, #f5a623, #e8941a);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.3);
}

/* Services CTA */
.services-page .services-cta {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-page .cta-container {
    background: linear-gradient(135deg, #062e48 0%, #0a4a6b 100%);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.services-page .cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.services-page .cta-content {
    position: relative;
    z-index: 2;
}

.services-page .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.services-page .cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-page .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-page .btn-cta {
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.services-page .btn-cta.primary {
    background: #f5a623;
    color: white;
    border-color: #f5a623;
}

.services-page .btn-cta.primary:hover {
    background: #e8941a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.3);
}

.services-page .btn-cta.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.services-page .btn-cta.secondary:hover {
    background: white;
    color: #062e48;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-page .services-hero {
        padding: 100px 0 60px;
    }
    
    .services-page .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-page .services-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-page .services-grid,
    .services-page .our-process,
    .services-page .why-choose-services,
    .services-page .pricing-plans {
        padding: 60px 0;
    }
    
    .services-page .choose-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .services-page .choose-icon {
        margin: 0 auto;
    }
    
    .services-page .cta-container {
        padding: 40px 25px;
    }
    
    .services-page .cta-title {
        font-size: 2rem;
    }
    
    .services-page .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-page .btn-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .services-page .our-process {
        padding: 60px 0;
    }
    
    .services-page .process-card {
        margin-bottom: 25px;
    }
    
    .services-page .process-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .services-page .process-icon {
        margin: 0 auto;
    }
    
    .services-page .process-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.tnp-subscription label, .tnp-profile label {
    margin-left: 10px !important;
    margin-bottom: 12px !important;
}

/* 404 Error Page Styles */
.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.error-illustration {
    margin-bottom: 2rem;
}

.error-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.error-number .display-1 {
    font-size: 8rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: bounce 2s infinite;
}

.error-number .display-1:nth-child(2) {
    animation-delay: 0.3s;
}

.error-number .display-1:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.error-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 3rem;
    margin: 2rem 0;
}

.error-search .form-control {
    border-radius: 50px;
    border: 2px solid #e9ecef;
    padding: 15px 25px;
    font-size: 1.1rem;
}

.error-search .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.25);
}

.error-search .btn {
    border-radius: 50px;
    padding: 15px 25px;
}

.error-actions .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.error-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.popular-links {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

.popular-links ul li {
    padding: 5px 0;
}

.popular-links a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.popular-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .error-number .display-1 {
        font-size: 5rem;
    }
    
    .error-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .error-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Search Results Page Styles */
.search-results {
    min-height: 60vh;
    background: #f8f9fa;
}

.search-header {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-top: 3rem;
}

.search-form-container .form-control {
    border-radius: 50px;
    border: 2px solid #e9ecef;
    padding: 15px 25px;
    font-size: 1.1rem;
}

.search-form-container .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.25);
}

.search-form-container .btn {
    border-radius: 50px;
    padding: 15px 25px;
}

.search-result-item .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.search-result-item .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.search-result-item .card-title a {
    transition: color 0.3s ease;
}

.search-result-item .card-title a:hover {
    color: var(--primary-color) !important;
}

.search-result-item .badge {
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
}

.no-results {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.no-results-icon {
    opacity: 0.6;
}

.search-pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.search-pagination .page-numbers:hover,
.search-pagination .page-numbers.current {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .search-header {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .search-result-item .card-body {
        padding: 1.5rem !important;
    }
    
    .no-results {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
}

/* Page Template Styles */
.page-content .page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 76px; /* Account for fixed navbar */
}

.page-content .page-title {
    color: var(--text-dark);
    font-weight: 700;
}

.page-content .breadcrumb {
    background: transparent;
    padding: 0;
}

.page-content .breadcrumb-item a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.page-content .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.page-content .breadcrumb-item.active {
    color: var(--text-dark);
}

.page-content .page-body {
    background: white;
}

.page-content-wrapper {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.page-content .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-content .entry-content h1,
.page-content .entry-content h2,
.page-content .entry-content h3,
.page-content .entry-content h4,
.page-content .entry-content h5,
.page-content .entry-content h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content .entry-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.page-content .entry-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.page-content .entry-content p {
    margin-bottom: 1.5rem;
}

.page-content .entry-content ul,
.page-content .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content .entry-content li {
    margin-bottom: 0.5rem;
}

.page-content .entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.page-content .featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.page-content .page-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.page-content .page-links .page-number {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.page-content .page-links .page-number:hover {
    background: var(--secondary-color);
}

.page-content .page-meta {
    font-size: 0.9rem;
}

.page-content .page-cta .card {
    border: none;
    border-radius: 15px;
    background: var(--gradient-bg);
}

.page-content .page-cta .btn-light {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-content .page-cta .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-comments {
    background: #f8f9fa !important;
}

@media (max-width: 768px) {
    .page-content .page-header {
        padding: 2rem 0 !important;
    }
    
    .page-content .page-title {
        font-size: 2rem !important;
    }
    
    .page-content-wrapper {
        padding: 1.5rem;
        margin: 1rem;
        border-radius: 10px;
    }
    
    .page-content .entry-content {
        font-size: 1rem;
    }
    
    .page-content .entry-content h2 {
        font-size: 1.5rem;
    }
}

/* Elementor Compatibility Styles */
.elementor-page-content {
    margin-top: 76px; /* Account for fixed navbar */
}

.elementor-full-width {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.elementor-page-wrapper {
    width: 100%;
}

/* Remove theme styling for Elementor pages */
.elementor-page .page-header,
.elementor-page .page-body,
.elementor-page .page-content-wrapper {
    display: none;
}

/* Elementor canvas template */
.elementor-canvas body {
    margin: 0;
    padding: 0;
}

.elementor-canvas .site-header,
.elementor-canvas .site-footer {
    display: none;
}

.elementor-canvas .site-main {
    margin-top: 0;
    padding: 0;
}

/* Elementor widget overrides */
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4,
.elementor-widget-heading h5,
.elementor-widget-heading h6 {
    color: inherit;
    font-family: inherit;
}

.elementor-widget-text-editor {
    color: inherit;
    font-family: inherit;
}

/* Ensure Elementor buttons work with theme colors */
.elementor-button.elementor-button-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.elementor-button.elementor-button-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Elementor section full width */
.elementor-section.elementor-section-full_width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Fix Elementor container spacing */
.elementor-container {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .elementor-page-content {
        margin-top: 70px;
    }
}

.bg-primary a{
    color:#fff;
    text-decoration:none;
}

/* Enhanced SEO Benefits Section */
.seo-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.seo-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.seo-benefits .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.benefit-icon-wrapper {
    position: relative;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.benefit-content h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.benefit-content p {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
}

.benefit-stats {
    margin-top: 1rem;
}

.stat-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

/* Benefits Visual */
.benefits-visual {
    position: relative;
}

.benefits-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.floating-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-stat:nth-child(2) {
    animation-delay: 1.5s;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.2rem;
}

/* Benefits Comparison */
.benefits-comparison {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.comparison-title {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.comparison-item {
    margin-bottom: 2rem;
}

.comparison-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bar {
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease;
}

.seo-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 90%;
    animation: expandBar 1.5s ease-out;
}

.traditional-bar {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    color: #2d3436;
    width: 40%;
    animation: expandBar 1.5s ease-out 0.3s both;
}

.comparison-item:nth-child(2) .seo-bar {
    width: 95%;
}

.comparison-item:nth-child(2) .traditional-bar {
    width: 30%;
}

.comparison-item:nth-child(3) .seo-bar {
    width: 85%;
}

.comparison-item:nth-child(3) .traditional-bar {
    width: 50%;
}

@keyframes expandBar {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.bar-label {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Enhanced Benefits Responsive Design */
@media (max-width: 768px) {
    .benefit-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .benefit-icon-wrapper {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .floating-stat {
        padding: 0.8rem;
    }
    
    .benefits-comparison {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .comparison-bars {
        gap: 0.3rem;
    }
    
    .bar {
        height: 35px;
        padding: 0 0.8rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Social Media Benefits Section */
.social-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.social-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e3f2fd" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    opacity: 0.3;
}

.benefits-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(255, 184, 77, 0.25);
    border-color: rgba(255, 184, 77, 0.3);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.benefit-item:hover .benefit-icon::before {
    width: 100px;
    height: 100px;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon i {
    transform: scale(1.1);
}

.benefit-text {
    flex: 1;
}

.benefit-text h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-text h5 {
    color: var(--primary-color);
}

.benefit-text p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.benefits-image {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 991px) {
    .benefits-content {
        padding: 1rem 0;
        margin-bottom: 3rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
    
    .benefit-icon i {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Debug fix for LinkedIn and Pinterest icon visibility */
.linkedin .platform-icon,
.pinterest .platform-icon {
    opacity: 1 !important;
    visibility: visible !important;
}

.linkedin .platform-icon::before,
.pinterest .platform-icon::before {
    opacity: 1 !important;
}

.fab.fa-linkedin-in,
.fab.fa-pinterest-p {
    opacity: 1 !important;
    visibility: visible !important;
    color: white !important;
    display: inline-block !important;
}

/* Email Marketing Services - What's Included Section */
.service-includes {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.service-includes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e1f5fe" fill-opacity="0.08"><path d="M40 0c22.091 0 40 17.909 40 40S62.091 80 40 80 0 62.091 0 40 17.909 0 40 0zm0 8c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32S57.673 8 40 8z"/></g></svg>') repeat;
    opacity: 0.4;
}

.include-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 123, 255, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.include-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.include-card:hover::before {
    transform: scaleX(1);
}

.include-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.2);
}

.include-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.include-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.include-card:hover .include-icon::before {
    width: 120px;
    height: 120px;
}

.include-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.include-card:hover .include-icon i {
    transform: scale(1.1) rotate(5deg);
}

.include-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.include-card:hover h4 {
    color: var(--primary-color);
}

.include-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Add number badges to cards */
.include-card {
    counter-increment: include-counter;
}

.include-card::after {
    content: counter(include-counter, decimal-leading-zero);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 35px;
    height: 35px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.include-card:hover::after {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.service-includes .row.g-4 {
    counter-reset: include-counter;
}

/* Responsive Design */
@media (max-width: 991px) {
    .include-card {
        padding: 2rem 1.5rem;
    }
    
    .include-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .include-icon i {
        font-size: 1.75rem;
    }
    
    .include-card h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .include-card {
        padding: 1.5rem 1.25rem;
    }
    
    .include-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .include-icon i {
        font-size: 1.5rem;
    }
    
    .include-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .include-card::after {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
        top: 1rem;
        right: 1rem;
    }
}

/* Email Marketing - Types of Email Campaigns Section */
.email-types {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
}

.email-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e8f4fd" fill-opacity="0.06"><polygon points="50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40"/></g></svg>') repeat;
    opacity: 0.5;
}

.email-type-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 123, 255, 0.06);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.email-type-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 123, 255, 0.03), transparent);
    transform: rotate(-45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.email-type-card:hover::before {
    transform: rotate(-45deg) translateX(100%);
}

.email-type-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 123, 255, 0.12);
    border-color: rgba(0, 123, 255, 0.15);
}

.email-icon {
    width: 60px;
    height: 60px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.email-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.email-type-card:hover .email-icon::before {
    width: 140px;
    height: 140px;
}

.email-icon i {
    font-size: 2.2rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
}

.email-type-card:hover .email-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
}

.email-type-card:hover .email-icon i {
    transform: scale(1.1);
}

.email-type-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    line-height: 1.3;
    position: relative;
}

.email-type-card h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.email-type-card:hover h4 {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.email-type-card:hover h4::after {
    width: 60px;
}

.email-type-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.email-type-card:hover p {
    color: var(--text-dark);
}

/* Add floating elements for visual interest */
.email-type-card::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0);
}

.email-type-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delay for cards */
.email-type-card:nth-child(1) { transition-delay: 0s; }
.email-type-card:nth-child(2) { transition-delay: 0.1s; }
.email-type-card:nth-child(3) { transition-delay: 0.2s; }
.email-type-card:nth-child(4) { transition-delay: 0.3s; }
.email-type-card:nth-child(5) { transition-delay: 0.4s; }
.email-type-card:nth-child(6) { transition-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 991px) {
    .email-type-card {
        padding: 2rem 1.5rem;
    }
    
    .email-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .email-icon i {
        font-size: 2rem;
    }
    
    .email-type-card h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .email-type-card {
        padding: 1.5rem 1.25rem;
    }
    
    .email-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .email-icon i {
        font-size: 1.8rem;
    }
    
    .email-type-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .email-type-card::after {
        top: 1rem;
        right: 1rem;
    }
}

.service-detail-page .stat-item {
    text-align: center;
    padding: 12px !important;
    background: transparent !important;
    display:block;
}
.email-process h4{      
   font-size: 1.3rem;
   margin-top: 1rem;
}

/* Content Marketing - Types of Content Section */
.content-types {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.content-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="120" height="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e3f2fd" fill-opacity="0.04"><rect x="0" y="0" width="60" height="60"/><rect x="60" y="60" width="60" height="60"/></g></svg>') repeat;
    opacity: 0.6;
}

.content-type-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 123, 255, 0.05);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.content-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.04), transparent);
    transition: left 0.5s ease;
}

.content-type-card:hover::before {
    left: 100%;
}

.content-type-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.content-type-card:hover::after {
    transform: scaleX(1);
}

.content-type-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.12);
}

.content-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.content-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.content-type-card:hover .content-icon::before {
    width: 100px;
    height: 100px;
}

.content-icon i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
}

.content-type-card:hover .content-icon {
    transform: scale(1.1) rotateZ(5deg);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.25);
}

.content-type-card:hover .content-icon i {
    transform: scale(1.1);
}

.content-type-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    line-height: 1.3;
    position: relative;
}

.content-type-card h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.content-type-card:hover h4 {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.content-type-card:hover h4::after {
    width: 40px;
}

.content-type-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.content-type-card:hover p {
    color: var(--text-dark);
}


/* Staggered hover animations */
.content-type-card:nth-child(1) { transition-delay: 0s; }
.content-type-card:nth-child(2) { transition-delay: 0.05s; }
.content-type-card:nth-child(3) { transition-delay: 0.1s; }
.content-type-card:nth-child(4) { transition-delay: 0.15s; }
.content-type-card:nth-child(5) { transition-delay: 0.2s; }
.content-type-card:nth-child(6) { transition-delay: 0.25s; }
.content-type-card:nth-child(7) { transition-delay: 0.3s; }
.content-type-card:nth-child(8) { transition-delay: 0.35s; }

/* Analytics Tools Section Styling */
.analytics-tools {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tool-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    border-color: var(--primary-color);
}

.tool-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.tool-icon::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: white;
    border-radius: 17px;
    transition: all 0.3s ease;
}

.tool-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
}

.tool-card:hover .tool-icon::after {
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
}

.tool-card:hover .tool-icon i {
    -webkit-text-fill-color: white;
    transform: scale(1.1);
}

.tool-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.tool-card:hover h4 {
    color: var(--primary-color);
}

.tool-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.tool-card:hover p {
    color: var(--text-dark);
}

/* Staggered animation for tool cards */
.tool-card:nth-child(1) { animation-delay: 0s; }
.tool-card:nth-child(2) { animation-delay: 0.1s; }
.tool-card:nth-child(3) { animation-delay: 0.2s; }
.tool-card:nth-child(4) { animation-delay: 0.3s; }
.tool-card:nth-child(5) { animation-delay: 0.4s; }
.tool-card:nth-child(6) { animation-delay: 0.5s; }
.tool-card:nth-child(7) { animation-delay: 0.6s; }
.tool-card:nth-child(8) { animation-delay: 0.7s; }

/* Responsive design for tool cards */
@media (max-width: 768px) {
    .tool-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .tool-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .tool-icon i {
        font-size: 1.5rem;
    }
    
    .tool-card h4 {
        font-size: 1.1rem;
    }
    
    .tool-card p {
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .content-type-card {
        padding: 1.75rem 1.25rem;
    }
    
    .content-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .content-icon i {
        font-size: 1.6rem;
    }
    
    .content-type-card h4 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 576px) {
    .content-type-card {
        padding: 1.5rem 1rem;
    }
    
    .content-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }
    
    .content-icon i {
        font-size: 1.4rem;
    }
    
    .content-type-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
}
.content-process h4{
    font-size:1.3rem;
    margin-top:1rem;
   }

/* Key Metrics Section Styling */
.key-metrics {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.key-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,123,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.metric-card {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    padding: 2rem 1rem;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    margin:0 auto;
}

.metric-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-icon {
    transform: scale(1.1);
}

.metric-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    text-align: center;
    margin-top: 1rem;
}

.metric-card:hover h4 {
    color: var(--primary-color);
}

.metric-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.metric-card ul li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.2rem;
}

.metric-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.metric-card:hover ul li {
    color: var(--text-dark);
}

/* Responsive design for metric cards */
@media (max-width: 768px) {
    .metric-card {
        padding: 1.5rem 1rem;
    }
    
    .metric-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .metric-icon i {
        font-size: 1.5rem;
    }
    
    .metric-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .metric-card ul li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
}

.analytics-process h4{
    font-size:1.3rem;
    margin-top:1rem;
}

/* Dropdown Menu Styling */
.navbar-nav .dropdown-menu {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
    margin-top: 0;
    min-width: 220px;
    animation: dropdownFadeIn 0.3s ease;
    top: 100%;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-nav .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
}

.navbar-nav .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-color), #FFB84D);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-item:hover::before {
    transform: scaleY(1);
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.08), rgba(255, 184, 77, 0.08));
    color: var(--primary-color);
    transform: translateX(5px);
}

.navbar-nav .dropdown-item:active {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.15), rgba(255, 184, 77, 0.15));
}

/* Dropdown Toggle Arrow */
.navbar-nav .dropdown-toggle::after {
    border: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Dropdown on hover for desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown-menu {
        padding-top: 1rem;
    }
    
    .navbar-nav .dropdown-menu::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1rem;
        background: transparent;
    }
    
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .navbar-nav .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* Home Page CTA Styles */
.cta-container {
    background: linear-gradient(135deg, #062e48 0%, #0a4a6b 100%);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    box-shadow: 0 15px 40px rgba(6, 46, 72, 0.3);
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 144, 164, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

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

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-cta.primary {
    background: linear-gradient(135deg, #F5A623, #ff8c00);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .cta-container {
        padding: 40px 25px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-cta.primary {
        width: 100%;
        padding: 18px 40px;
    }
}

/* Contact Form Styles */
.get-in-touch .form-control:focus {
    border-color: #F5A623;
    box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.25);
    outline: 0;
}

.get-in-touch .form-control:hover {
    border-color: rgba(245, 166, 35, 0.5);
}

.get-in-touch .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.contact-info-card .contact-item:hover .contact-icon {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@media (max-width: 991.98px) {
    .get-in-touch .contact-info-card,
    .get-in-touch .contact-form-card {
        padding: 30px;
    }
    
    .get-in-touch .contact-icon {
        width: 45px !important;
        height: 45px !important;
    }
    
    .get-in-touch .contact-icon i {
        font-size: 1rem !important;
    }
}

/* Mobile dropdown styling */
@media (max-width: 991px) {
    .offcanvas .dropdown-menu {
        background: rgba(245, 166, 35, 0.05);
        border-radius: 8px;
        margin: 0.5rem 0;
        border: none;
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
        display: none; /* Hidden by default, shown via JavaScript */
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        background-clip: padding-box;
        border: 1px solid rgba(0,0,0,.15);
    }
    
    .offcanvas .dropdown-menu.show {
        display: block !important;
    }
    
    .offcanvas .dropdown-menu::before {
        display: none;
    }
    
    .offcanvas .dropdown-item {
        margin: 0;
        border-radius: 0;
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
        color: var(--text-dark);
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .offcanvas .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .offcanvas .dropdown-item:hover,
    .offcanvas .dropdown-item:focus {
        transform: none;
        background: rgba(245, 166, 35, 0.1);
        color: var(--primary-color);
        padding-left: 2.5rem;
    }
    
    .offcanvas .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }
    
    .offcanvas .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
    
    .offcanvas .dropdown.show > .dropdown-toggle {
        color: var(--primary-color) !important;
    }
}

.ppc-process h4,.social-process h4 {
    font-size: 1.3rem;
    margin-top: 1rem;
}