:root {
    /* Primary Colors - Professional Blue Palette */
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-lighter: #dbeafe;
    
    /* Secondary Colors - Orange Accent */
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --secondary-light: #fbbf24;
    --secondary-lighter: #fef3c7;
    
    /* Neutral Colors */
    --dark-color: #1f2937;
    --dark-light: #374151;
    --gray-color: #6b7280;
    --gray-light: #9ca3af;
    --gray-lighter: #f3f4f6;
    --white: #ffffff;
    
    /* Success & Status Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    
    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-secondary: 'Poppins', system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-sm: 60px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}



/* Header Styles */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.main-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1001;
    transition: all 0.3s ease;
    padding: 15px 0;
    min-height: 80px;
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar-brand img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    padding: 15px 20px !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 16px;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    padding: 15px 0;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
    color: var(--dark-color);
}

.dropdown-item:hover {
    background: var(--primary-lighter);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mega Menu - Full Screen Professional Design */
.mega-dropdown {
    position: relative;
}

/* Common Mega Menu Styles */
.mega-menu {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 1400px;
    min-height: 500px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-container {
    padding: 40px;
    height: 100%;
}

.mega-menu-content {
    display: flex;
    gap: 30px;
    height: 100%;
}

.mega-menu-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.mega-menu-section:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.section-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.mega-menu-section:hover .section-image img {
    transform: scale(1.05);
}

/* Legal Links */
.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

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

/* Services Mega Menu Specific Styles */

.services-mega-menu {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 1400px;
    min-height: 600px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-dropdown:hover .services-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.services-container {
    display: flex;
    min-height: 600px;
}

.services-list {
    width: 35%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
    padding: 20px 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.service-item {
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    background: transparent;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: #ffffff;
    transform: translateX(4px);
}

.service-item.active {
    background: #ffffff;
    border-left: 4px solid var(--primary-color);
    transform: translateX(4px);
}

.service-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.service-item:hover .service-name {
    color: var(--primary-color);
}

.service-details {
    width: 65%;
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    display: flex;
    align-items: flex-start;
    backdrop-filter: blur(10px);
}

.service-detail-content {
    width: 100%;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.service-detail-image {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

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

.service-detail-text {
    flex: 1;
}

.detail-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.detail-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
}

.detail-features {
    margin-bottom: 32px;
}

.detail-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.detail-features li {
    padding: 8px 0;
    color: #475569;
    font-size: 14px;
    position: relative;
    padding-left: 24px;
    font-weight: 500;
}

.detail-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 16px;
    top: 6px;
}

/* Expert Section Styles */
.expert-section {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 25px;
    margin-top: 20px;
}

.expert-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.expert-profile {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.expert-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.expert-info {
    flex: 1;
}

.expert-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.expert-description {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

.detail-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.detail-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.01em;
}

.detail-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.detail-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
}

.detail-btn-secondary {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.detail-btn-secondary:hover {
    background: #f1f5f9;
    color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Arrow indicator */
.services-mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    z-index: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    /* Common Mega Menu Mobile Styles */
    .mega-menu {
        width: 95vw;
        max-width: none;
        left: 2.5vw;
        transform: translateX(0);
        top: 110px;
        min-height: auto;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .mega-dropdown:hover .mega-menu {
        transform: translateX(0) translateY(0);
    }
    
    .mega-menu-container {
        padding: 30px;
    }
    
    .mega-menu-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .mega-menu-section {
        padding: 20px;
    }
    
    .section-image {
        height: 150px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    /* Services Mega Menu Mobile Styles */
    .services-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .services-list,
    .service-details {
        width: 100%;
    }
    
    .services-list {
        max-height: 200px;
        overflow-y: auto;
    }
    
    .service-details {
        padding: 30px;
    }
    
    .service-detail-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-detail-image {
        width: 100%;
        height: 150px;
    }
    
    .detail-features ul {
        grid-template-columns: 1fr;
    }
    
    .detail-title {
        font-size: 20px;
    }
    
    /* Legal Links Mobile Styles */
    .legal-links {
        margin-top: 20px;
    }
    
    .legal-links li {
        margin-bottom: 10px;
    }
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    min-width: 180px;
    min-height: 36px;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white) !important;
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(30, 58, 138, 0.9) 100%);
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.hero-content a {
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    font-family: var(--font-secondary);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.feature-description {
    color: var(--gray-color);
    line-height: 1.7;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    position: relative;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius) var(--radius) 0 0;
}

.service-overlay i {
    font-size: 3rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.service-description {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    height: 100%;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
}

.testimonial-content {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.testimonial-company {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::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 1000 100" fill="%23ffffff" opacity="0.05"><path d="M0,0v46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1047.29,5.39,1000,0Z"></path></svg>') repeat-x bottom;
    z-index: 1;
}

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

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-light) 100%);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-section h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    font-family: var(--font-secondary);
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.footer-section ul li i {
    width: 18px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Newsletter Signup */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
}

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

.newsletter-form button {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
}

/* Vertical Contact Button */
.vertical-contact-btn {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.vertical-contact-btn.show {
    opacity: 1;
    visibility: visible;
}

.vertical-contact-link {
    display: block;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    padding: 15px 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vertical-contact-link:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
    color: var(--white);
    transform: translateX(5px);
    box-shadow: var(--shadow-xl);
}

.vertical-contact-link span {
    display: block;
    white-space: nowrap;
}

.vertical-contact-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.5s ease;
}

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

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Utility Classes */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary-custom {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-custom {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    min-height: 36px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--white);
}

/* Header Button Styles - for login/register buttons in white header */
.btn-outline-custom.btn-sm {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 13px;
    min-height: 32px;
    backdrop-filter: none;
    box-shadow: none;
}

.btn-outline-custom.btn-sm:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

/* Alternative header button style */
.btn-header {
    background: transparent;
    border: 2px solid var(--gray-light);
    color: var(--dark-color);
    padding: 6px 16px;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 13px;
    min-height: 32px;
}

.btn-header:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-header.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.section-padding {
    padding: var(--section-padding) 0;
}

.section-padding-sm {
    padding: var(--section-padding-sm) 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary-color), #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    display: inline-block;
}

.text-gradient::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    z-index: -1;
    filter: blur(2px);
}

.text-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 2px;
    z-index: -1;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

/* Mobile Responsive */
@media (min-width: 1400px) {
    .vertical-contact-btn {
        left: 25px;
    }
}

@media (max-width: 1200px) {
    .vertical-contact-btn {
        left: 15px;
    }
}

@media (max-width: 991.98px) {
    .main-header {
        padding: 10px 0;
        min-height: 70px;
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    .navbar-collapse {
        background: var(--white);
        margin-top: 15px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        padding: 20px;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        font-size: 15px;
    }
    
    .btn-outline-custom {
        padding: 8px 16px;
        font-size: 14px;
        min-height: 36px;
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--white);
        color: var(--white);
    }
    
    .cta-button {
        margin-top: 15px;
        text-align: center;
        justify-content: center;
        min-width: 160px;
        padding: 8px 16px !important;
        min-height: 36px;
    }
    
    :root {
        --section-padding: 60px;
        --section-padding-sm: 40px;
    }
    
    .hero-slide {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .main-header {
        padding: 8px 0;
        min-height: 60px;
    }
    
    .navbar-brand img {
        height: 45px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        font-size: 14px;
    }
    
    .btn-outline-custom {
        padding: 8px 14px;
        font-size: 13px;
        min-height: 34px;
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--white);
        color: var(--white);
    }
    
    .cta-button {
        min-width: 140px;
        padding: 8px 14px !important;
        min-height: 34px;
        font-size: 13px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-slide {
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    /* Vertical Contact Button Mobile Adjustments */
    .vertical-contact-btn {
        left: 10px;
    }
    
    .vertical-contact-link {
        padding: 12px 20px;
        font-size: 12px;
        letter-spacing: 1px;
    }
}

/* Blog Page Specific Styles */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    height: 200px;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

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

.blog-meta {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}

.blog-date {
    color: var(--gray-color);
    font-size: 14px;
}

.blog-time-ago {
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 600;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

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

.blog-excerpt {
    color: var(--gray-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    margin-top: auto;
}

.blog-footer .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Newsletter Section Enhancements */
.newsletter-form {
    position: relative;
    overflow: hidden;
}

.newsletter-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Filter Buttons Enhancement */
.filter-buttons .btn {
    transition: all 0.3s ease;
}

.filter-buttons .btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Blog Grid Responsive */
@media (max-width: 991.98px) {
    .blog-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-content {
        padding: 20px !important;
    }
    
    .blog-title {
        font-size: 16px !important;
    }
    
    .newsletter-form {
        padding: 30px 20px !important;
    }
}

/* Animation for blog cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hero section floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* No blogs message styling */
.no-blogs-content {
    animation: fadeInUp 0.6s ease forwards;
}

/* Benefits list styling */
.benefits-list .d-flex {
    transition: all 0.3s ease;
}

.benefits-list .d-flex:hover {
    transform: translateX(10px);
}

/* Blog image placeholder enhancement */
.blog-image i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

.sidebar-widget {
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.popular-blog-item {
    transition: all 0.3s ease;
}

.popular-blog-item:hover {
    transform: translateX(5px);
}

.popular-blog-item:hover h6 {
    color: var(--primary-color) !important;
}

.category-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.newsletter-form-sidebar input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

/* Responsive adjustments for sidebar */
@media (max-width: 991.98px) {
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .sidebar-widget {
        margin-bottom: 20px !important;
    }
}
