/* CSS Variables - Global Gradient Theme */
/* OPTION 4: Dark Modern (Sleek, Premium) */
:root {
    --gradient-color-1: #434343;  /* Dark gray */
    --gradient-color-2: #000000;  /* Black */
    --gradient-color-3: #1e3c72;  /* Deep blue */
    --gradient-color-4: #2a5298;  /* Royal blue */
    --gradient-main: linear-gradient(265deg, rgba(6, 0, 107, 1) 0%, rgba(19, 9, 121, 1) 35%, rgba(87, 1, 1, 1) 100%);
    --gradient-hover: linear-gradient(135deg, #535353 0%, #1a1a1a 25%, #2e4c82 50%, #3a6298 100%);
    --gradient-overlay: linear-gradient(265deg, rgba(6, 0, 107, 0.7) 0%, rgba(19, 9, 121, 0.7) 35%, rgba(87, 1, 1, 0.7) 100%);
    --gradient-shadow-color-1: rgba(67, 67, 67, 0.4);
    --gradient-shadow-color-2: rgba(0, 0, 0, 0.3);
    --gradient-shadow-color-3: rgba(30, 60, 114, 0.2);
}

/* Improved text contrast for white backgrounds */
.card,
.card-body,
[class*="card"],
[class*="white"],
.section-bg-white,
.section-bg-light {
    /* Override text-muted to be darker on white backgrounds */
}

.card .text-muted,
.card-body .text-muted,
.feature-card .text-muted,
.feature-card-white .text-muted,
.value-card .text-muted,
.contact-method-card .text-muted,
.testimonial-card .text-muted,
.section-bg-white .text-muted,
.section-bg-light .text-muted {
    color: #495057 !important;
}

/* Top Menu Bar */
.top-menu-bar {
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    font-size: 0.875rem;
}

.top-menu-contact {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-menu-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.top-menu-item i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.top-menu-item:hover {
    color: #fff;
    text-decoration: none;
}

.top-menu-item:hover i {
    color: #fff;
}

.top-menu-social {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

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

.top-menu-social-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
}

.top-menu-social-link i {
    font-size: 1.1rem;
}

/* Mobile Responsive for Top Menu */
@media (max-width: 991px) {
    .top-menu-bar {
        padding: 10px 0;
    }
    
    .top-menu-contact {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .top-menu-social {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .top-menu-contact {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .top-menu-item span {
        font-size: 0.8rem;
    }
    
    .top-menu-social-link {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}

/* Global Button Styles - Pill Shape */
.btn,
button,
input[type="submit"],
input[type="button"] {
    border-radius: 9999px !important;
}

/* Override for specific button types if needed */
.btn-lg {
    border-radius: 9999px !important;
    padding-left: 2rem;
    padding-right: 2rem;
}

.btn-sm {
    border-radius: 9999px !important;
}

.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
.btn-light,
.btn-dark,
.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning,
.btn-outline-info,
.btn-outline-light,
.btn-outline-dark {
    border-radius: 9999px !important;
}

.partners {
    background: var(--gradient-main);
    color: #fff;
}

.partners * {
    color: inherit;
}

.partners .text-white,
.partners h1,
.partners h2,
.partners h3,
.partners h4,
.partners h5,
.partners h6 {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.partners p,
.partners .text-white-50 {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.partners img, svg {
    vertical-align: middle;
    padding-top: 40px;
}

.hero-section {
    background: var(--gradient-main);
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 80vh;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section * {
    color: inherit;
}

.hero-section .text-white,
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6,
.hero-section p,
.hero-section span {
    color: #fff !important;
}

.hero-section .text-white-50 {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Hero Carousel Styles */
.hero-section .carousel {
    width: 100%;
    height: 80vh;
    min-height: 80vh;
}

.hero-section .carousel-inner {
    height: 80vh;
    min-height: 80vh;
}

.hero-section .carousel-item {
    height: 80vh;
    min-height: 80vh;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section .carousel-item .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-section .min-vh-50 {
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
}

/* Carousel Progress Bar */
.hero-section .carousel-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 15;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
}

.hero-section .carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 100%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    transition: width 0.1s linear;
    position: relative;
    border-radius: 2px 0 0 2px;
}

.hero-section .carousel-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Pause progress bar on hover */
.hero-section:hover .carousel-progress-bar {
    animation-play-state: paused;
}

/* Carousel Indicators */
.hero-section .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
    z-index: 10;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-section .carousel-indicators button.active {
    background-color: #fff;
    border-color: #fff;
    width: 32px;
    border-radius: 6px;
    transform: scale(1.2);
}

.hero-section .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 1);
}

/* Carousel Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    z-index: 10;
    cursor: pointer;
}

.hero-section .carousel-control-prev {
    left: 20px;
}

.hero-section .carousel-control-next {
    right: 20px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-section .carousel-control-prev:active,
.hero-section .carousel-control-next:active {
    transform: translateY(-50%) scale(1.05);
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Enhanced Fade Animation */
.hero-section .carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section .carousel-fade .carousel-item.active {
    z-index: 2;
    opacity: 1;
}

.hero-section .carousel-fade .carousel-item-next.carousel-item-start,
.hero-section .carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.hero-section .carousel-fade .active.carousel-item-start,
.hero-section .carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Content Animations - Staggered Entry */
.hero-section .carousel-item.active .mt-md-4 > div:first-child {
    animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-section .carousel-item.active .hero-title {
    animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-section .carousel-item.active p {
    animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-section .carousel-item.active .hero-service-logos {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

.hero-section .carousel-item.active .hero-buttons {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
}

.hero-section .carousel-item.active img {
    animation: fadeInFromRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

/* Ensure active items can animate */
.hero-section .carousel-item.active .mt-md-4 > div:first-child,
.hero-section .carousel-item.active .hero-title,
.hero-section .carousel-item.active p,
.hero-section .carousel-item.active .hero-service-logos,
.hero-section .carousel-item.active .hero-service-logo-item,
.hero-section .carousel-item.active .hero-buttons,
.hero-section .carousel-item.active img {
    opacity: 1;
}

/* Reset animations for non-active items */
.hero-section .carousel-item:not(.active) .mt-md-4 > div:first-child,
.hero-section .carousel-item:not(.active) .hero-title,
.hero-section .carousel-item:not(.active) p,
.hero-section .carousel-item:not(.active) .hero-service-logos,
.hero-section .carousel-item:not(.active) .hero-service-logo-item,
.hero-section .carousel-item:not(.active) .hero-buttons,
.hero-section .carousel-item:not(.active) img {
    animation: none !important;
    opacity: 0;
    pointer-events: none;
    transform: translateY(25px);
}

/* Performance optimization */
.hero-section .carousel-item * {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* ============================================
   PARALLAX EFFECTS & SCROLL ANIMATIONS
   ============================================ */

/* Parallax container base styles */
.parallax-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: var(--gradient-main);
    z-index: -1;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

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

/* Parallax-ready sections */
.statistics-section,
.cta-section,
.section-bg-gradient {
    position: relative;
    overflow: hidden;
    will-change: background-position;
}

/* Card 3D transform base */
.feature-card,
.service-card,
.testimonial-card,
.value-card,
.stat-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    will-change: transform;
}

/* Enhanced card hover with parallax */
.feature-card:hover,
.service-card:hover,
.testimonial-card:hover,
.value-card:hover {
    transform: perspective(1000px) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Scroll reveal animation base */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.6s; }

/* Hero service logos parallax */
.hero-service-logo-item {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

/* Image parallax */
.parallax-image {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Exclude service card icons from parallax */
.service-card-icon-img,
.service-card-icon,
.service-card .service-card-icon-img,
.service-card .service-card-icon {
    transform: none !important;
    will-change: auto !important;
}

/* Statistics counter animation */
.stat-number {
    transition: all 0.3s ease-out;
}

/* Section title parallax */
.section-title {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .parallax-hero-bg,
    .parallax-image,
    .hero-service-logo-item {
        transform: none !important;
    }
}

/* Keyframe Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInFromRight {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

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

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-section {
        height: 80vh;
        min-height: 80vh;
    }
    
    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item {
        height: 80vh;
        min-height: 80vh;
    }
    
    .hero-section .carousel-item {
        padding: 100px 0 40px;
    }
    
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-section .carousel-control-prev {
        left: 10px;
    }
    
    .hero-section .carousel-control-next {
        right: 10px;
    }
    
    .hero-section .carousel-indicators {
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 80vh;
    }
    
    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item {
        height: 80vh;
        min-height: 80vh;
    }
    
    .hero-section .carousel-item {
        padding: 80px 0 30px;
    }
    
    .hero-section .min-vh-50 {
        height: 100%;
        min-height: 100%;
    }
    
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        display: none;
    }
}

/* Ensure hero buttons have proper text colors */
.hero-section .btn-hero-primary,
.hero-section .btn-hero-primary *,
.hero-section .btn-hero-primary span,
.hero-section .btn-hero-primary i {
    color: #212529 !important;
}

.hero-section .btn-hero-secondary,
.hero-section .btn-hero-secondary *,
.hero-section .btn-hero-secondary span,
.hero-section .btn-hero-secondary i {
    color: #fff !important;
}

/* Hero Service Logos */
.hero-service-logos {
    padding: 1rem 0;
    opacity: 0;
}

.hero-service-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(10px);
}

.hero-section .carousel-item.active .hero-service-logo-item:nth-child(1) {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

.hero-section .carousel-item.active .hero-service-logo-item:nth-child(2) {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.95s both;
}

.hero-section .carousel-item.active .hero-service-logo-item:nth-child(3) {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.1s both;
}

.hero-service-logo-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-service-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-service-logo-item:hover .hero-service-logo {
    opacity: 1;
    transform: scale(1.05);
}

/* Hero Buttons */
.hero-buttons {
    margin-top: 1.5rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-wrap: wrap;
    }
    
    .hero-service-logos {
        gap: 1rem !important;
    }
    
    .hero-service-logo {
        height: 40px;
        max-width: 100px;
    }
    
    .hero-service-logo-item {
        padding: 0.5rem;
    }
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-hero-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #212529 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary,
.btn-hero-primary *,
.btn-hero-primary span {
    color: #212529 !important;
}

.btn-hero-primary::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.5s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    color: #212529 !important;
    text-decoration: none;
}

.btn-hero-primary:hover,
.btn-hero-primary:hover *,
.btn-hero-primary:hover span {
    color: #212529 !important;
}

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

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

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

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-decoration: none;
}

.btn-hero-secondary i {
    transition: transform 0.3s ease;
}

.btn-hero-secondary:hover i {
    transform: scale(1.1);
}

/* Mobile Responsive for Hero Buttons */
@media (max-width: 991px) {
    .hero-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

.header-menu {
    background: var(--gradient-main);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 80px;
    color: #fff;
}

.header-menu * {
    color: inherit;
}

.header-menu .text-white,
.header-menu a,
.header-menu .navbar-brand,
.header-menu .nav-link {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Fix button text visibility in header */
.header-menu .btn-light,
.header-menu .btn-light *,
.header-menu .btn-light span,
.header-menu .btn-light i {
    color: #212529 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.header-menu .btn-light:hover,
.header-menu .btn-light:hover *,
.header-menu .btn-light:hover span,
.header-menu .btn-light:hover i {
    color: #212529 !important;
    background-color: #fff !important;
}

/* Mobile Menu - Slide from Right */
@media (max-width: 991.98px) {
    /* Overlay backdrop (created by JavaScript) */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1040;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    /* Mobile menu container */
    .header-menu .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: var(--gradient-main);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1050;
        padding: 80px 30px 30px;
        overflow-y: auto;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block !important;
    }

    /* Slide in from right when open */
    .header-menu .navbar-collapse.show {
        right: 0;
    }

    /* Menu items styling */
    .header-menu .navbar-collapse .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .header-menu .navbar-collapse .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-menu .navbar-collapse .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        display: block;
        width: 100%;
        transition: all 0.3s ease;
    }

    .header-menu .navbar-collapse .nav-link:hover,
    .header-menu .navbar-collapse .nav-link.active {
        padding-left: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-left: 3px solid #fff;
    }

    /* Close button */
    .header-menu .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        z-index: 1051;
        padding: 0;
    }

    .header-menu .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .header-menu .mobile-menu-close i {
        font-size: 24px;
    }

    /* Buttons in mobile menu */
    .header-menu .navbar-collapse .btn {
        width: 100%;
        margin: 0.5rem 0;
        justify-content: center;
    }

    /* Right menu items */
    .header-menu .navbar-collapse .navbar-nav.ms-auto {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
    }

    /* Mobile Menu Social Icons */
    .header-menu .mobile-menu-social {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        text-align: center;
    }

    .header-menu .mobile-social-title {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .header-menu .mobile-social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .header-menu .mobile-social-link {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        font-size: 20px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
    }

    .header-menu .mobile-social-link:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        color: #fff;
    }

    .header-menu .mobile-social-link i {
        transition: transform 0.3s ease;
    }

    .header-menu .mobile-social-link:hover i {
        transform: scale(1.2);
    }

    /* Social icon colors on hover */
    .header-menu .mobile-social-link[title="Facebook"]:hover {
        background: #1877f2;
        border-color: #1877f2;
    }

    .header-menu .mobile-social-link[title="Twitter"]:hover {
        background: #1da1f2;
        border-color: #1da1f2;
    }

    .header-menu .mobile-social-link[title="Instagram"]:hover {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        border-color: #bc1888;
    }

    .header-menu .mobile-social-link[title="LinkedIn"]:hover {
        background: #0077b5;
        border-color: #0077b5;
    }

    .header-menu .mobile-social-link[title="YouTube"]:hover {
        background: #ff0000;
        border-color: #ff0000;
    }
}

.mt-md-0 {
    margin-top: 0 !important;
    padding-top: 80px;
}

/* Service Cards Enhancement */
.service-card-wrapper {
    position: relative;
    padding: 3px;
    background: var(--gradient-main);
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--gradient-shadow-color-1),
                0 0 30px var(--gradient-shadow-color-2),
                0 0 60px var(--gradient-shadow-color-3);
}

.service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    margin-bottom: 0;
    border: none;
    position: relative;
}

.service-features {
    text-align: left;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.service-features ul {
    margin-bottom: 0;
}

.service-meta {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
    margin-top: 15px;
}

.service-actions .btn {
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-actions .btn:hover {
    transform: translateY(-2px);
}

.service-actions .btn-primary {
    box-shadow: 0 4px 12px var(--gradient-shadow-color-1);
}

.service-actions .btn-primary:hover {
    box-shadow: 0 6px 20px var(--gradient-shadow-color-1);
    background: var(--gradient-hover) !important;
}

.service-actions .btn-outline-primary:hover {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

/* Service Categories */
.service-category {
    margin-bottom: 60px;
}

.service-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0;
}

.service-category-title i {
    margin-right: 10px;
    color: #667eea;
}

/* Popular Badge Animation */
.badge.bg-warning {
    animation: pulse 2s infinite;
    font-weight: 600;
    padding: 6px 12px;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.05);
    }
}

/* Service Card Icons */
.service-card .avatar-lg {
    width: 90px;
    height: 90px;
    margin: 0 auto;
}

.service-card .avatar-title {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.service-card-wrapper:hover .avatar-title {
    transform: scale(1.1);
    box-shadow: 0 8px 20px var(--gradient-shadow-color-1);
}

.service-card .avatar-title img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Toggle Features Link */
.toggle-features {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.toggle-features:hover {
    text-decoration: underline !important;
}

/* Quote Modal Enhancements */
#serviceQuoteModal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

#serviceQuoteModal .modal-header {
    background: var(--gradient-main);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom: none;
}

#serviceQuoteModal .modal-footer {
    border-top: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#serviceQuoteModal .form-label {
    font-weight: 500;
    margin-bottom: 5px;
}

#serviceQuoteModal .form-control:focus,
#serviceQuoteModal .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Page Header Sections */
.page-header-section {
    position: relative;
    overflow: hidden;
}

.page-header-section > div:first-child {
    /* Background image container */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.page-header-section .header-icon-wrapper {
    transition: transform 0.3s ease;
}

.page-header-section:hover .header-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.page-header-section .stat-item {
    transition: transform 0.3s ease, background 0.3s ease;
}

.page-header-section .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15) !important;
}

/* Glassmorphism for buttons in header sections */
.page-header-section .btn {
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1),
                inset 0 1px 0 rgba(255,255,255,0.2);
}

.page-header-section .btn-light {
    background: rgba(255,255,255,0.2) !important;
}

.page-header-section .btn-outline-light {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.3) !important;
}

.page-header-section .btn:hover {
    background: rgba(255,255,255,0.3) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15),
                inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Fallback for missing header images */
.page-header-section > div:first-child:empty {
    background: var(--gradient-main);
}

/* FAQ Search */
#faqSearch {
    border-left: none;
}

#faqSearch:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.faq-item {
    transition: opacity 0.3s ease;
}

.faq-item-hidden {
    display: none;
}

/* Timeline - Base styles (duplicate removed, see below) */

/* Contact Cards */
.contact-method-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

/* Homepage Quick Links */
.homepage-quick-link {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.homepage-quick-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

/* Statistics Section */
.statistics-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
    z-index: 0;
}

.statistics-section .container {
    position: relative;
    z-index: 1;
}

.stat-card {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon-wrapper:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper i {
    font-size: 2.5rem;
    color: #fff;
}

/* Step Number Circle */
.step-number-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number-circle:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-number-circle span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-section .section-title {
    color: #212529;
}

.testimonials-section .section-title-accent {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-section .section-description {
    color: #495057;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #212529;
}

.testimonial-card h1,
.testimonial-card h2,
.testimonial-card h3,
.testimonial-card h4,
.testimonial-card h5,
.testimonial-card h6 {
    color: #2c3e50 !important;
    font-weight: 600;
}

.testimonial-card .text-muted,
.testimonial-card p {
    color: #495057 !important;
    line-height: 1.6;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-rating {
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057 !important;
    flex-grow: 1;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    font-size: 1.5rem;
    color: #fff;
}

.testimonial-info h6 {
    color: #212529 !important;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-info small {
    color: #495057 !important;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-main);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

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

.cta-section * {
    color: inherit;
}

.cta-section .text-white,
.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section h4,
.cta-section h5,
.cta-section h6 {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.cta-section .text-white-50,
.cta-section p,
.cta-section .lead {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Ensure CTA buttons have proper text colors */
.cta-section .btn-cta-primary,
.cta-section .btn-cta-primary *,
.cta-section .btn-cta-primary span,
.cta-section .btn-cta-primary i {
    color: #212529 !important;
}

.cta-section .btn-cta-secondary,
.cta-section .btn-cta-secondary *,
.cta-section .btn-cta-secondary span,
.cta-section .btn-cta-secondary i {
    color: #fff !important;
}

.cta-buttons {
    margin-top: 1rem;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #212529 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary,
.btn-cta-primary *,
.btn-cta-primary span,
.btn-cta-primary i {
    color: #212529 !important;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #212529 !important;
    text-decoration: none;
}

.btn-cta-primary:hover,
.btn-cta-primary:hover *,
.btn-cta-primary:hover span,
.btn-cta-primary:hover i {
    color: #212529 !important;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-card-wrapper {
        margin-bottom: 20px;
    }
    
    .service-category-title {
        font-size: 1.25rem;
    }
    
    .service-actions .btn {
        font-size: 0.875rem;
        padding: 8px 16px;
    }
    
    .page-header-section {
        padding: 80px 0 60px !important;
        min-height: 300px !important;
    }
    
    .page-header-section h1 {
        font-size: 2.5rem !important;
    }
    
    .page-header-section .lead {
        font-size: 1.1rem !important;
    }
    
    .page-header-section .header-icon-wrapper {
        padding: 15px !important;
    }
    
    .page-header-section .header-icon-wrapper i {
        font-size: 3rem !important;
    }
    
    /* Statistics Section Mobile */
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    /* Feature Icons Mobile */
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-wrapper i {
        font-size: 2rem;
    }
    
    .step-number-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-number-circle span {
        font-size: 2rem;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* CTA Section Mobile */
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Loading State */
#submitQuoteBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Login Page Styles */
.login-page-content {
    background: var(--gradient-main);
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.login-page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.login-page-content .card {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: none;
    position: relative;
    z-index: 1;
}

.login-page-content .input-group-text {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    padding: 12px 14px;
    border-right: none;
}

.login-page-content .input-group .form-control {
    border-left: none;
    padding-left: 12px;
}

.login-page-content .input-group .form-control:focus {
    border-left: none;
    box-shadow: none;
}

.login-page-content .input-group:focus-within .input-group-text {
    border-color: #9d7fa8;
}

.login-page-content .input-group:focus-within .form-control {
    border-color: #9d7fa8;
    box-shadow: 0 0 0 0.2rem rgba(157, 127, 168, 0.25);
}

.login-page-content .form-control {
    transition: all 0.3s ease;
    padding: 12px 16px;
    font-size: 0.95rem;
    background-color: #fff;
}

.login-page-content .input-group:focus-within .form-control {
    background-color: #fff;
}

.login-page-content .btn-primary {
    background: var(--gradient-main);
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-page-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--gradient-shadow-color-1);
    background: var(--gradient-hover);
    color: #fff;
}

.login-page-content .btn-primary:active {
    transform: translateY(0);
}

.login-submit-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.login-submit-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.login-submit-btn:hover i {
    transform: translateX(3px);
}

.login-page-content .form-check-input:checked {
    background-color: #9d7fa8;
    border-color: #9d7fa8;
}

.login-page-content a {
    transition: color 0.2s ease;
}

.login-page-content a:hover {
    color: #b89ac3 !important;
}

/* Login navbar */
.login-page-content ~ .navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Login footer */
.login-page-content ~ footer {
    background: var(--gradient-main);
    color: rgba(255,255,255,0.8);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.login-page-content ~ footer .text-muted {
    color: rgba(255,255,255,0.7) !important;
}

.login-page-content ~ footer a {
    color: rgba(255,255,255,0.8) !important;
    transition: color 0.2s ease;
}

.login-page-content ~ footer a:hover {
    color: #fff !important;
}

/* ============================================
   MODERN FOOTER STYLES
   ============================================ */

.modern-footer {
    background: var(--gradient-main);
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

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

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.footer-social-link i {
    font-size: 1.2rem;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.footer-title {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 15px;
    text-decoration: none;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact li i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact li div {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact li strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact li span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright strong {
    color: #fff;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title {
        margin-top: 1.5rem;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0 25px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-copyright {
        margin-bottom: 1rem !important;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* ============================================
   PAGE HEADER SECTIONS - COMPLETE STYLES
   ============================================ */

/* Base Header Section */
.page-header-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0 40px;
    min-height: 280px;
    display: flex;
    align-items: center;
}

/* Background Image Container */
.page-header-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Services Header Background */
.page-header-bg-services {
    background-image: url('../images/slide-3.png'), var(--gradient-main);
}

/* About Header Background */
.page-header-bg-about {
    background-image: url('../images/slide-1.png'), var(--gradient-main);
}

/* Partners Header Background */
.page-header-bg-partners {
    background-image: url('../images/projects/project-1.jpg'), var(--gradient-main);
}

/* FAQ Header Background */
.page-header-bg-faq {
    background-image: url('../images/slide-2.png'), var(--gradient-main);
}

/* Contact Header Background */
.page-header-bg-contact {
    background-image: url('../images/projects/project-2.jpg'), var(--gradient-main);
}

/* Header Overlay */
.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

/* Header Background Elements */
.header-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
}

/* Header Content Container */
.page-header-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.page-header-content * {
    color: inherit;
}

.page-header-content .text-white,
.page-header-content h1,
.page-header-content h2,
.page-header-content h3,
.page-header-content h4,
.page-header-content h5,
.page-header-content h6 {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.page-header-content .text-white-50,
.page-header-content p,
.page-header-content .lead {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Header Icon Wrapper */
.header-icon-wrapper {
    display: inline-block;
    padding: 12px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1),
                inset 0 1px 0 rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem !important;
}

.page-header-section:hover .header-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.header-icon-wrapper i {
    font-size: 2.5rem;
    color: #fff;
}

/* Header Title */
.page-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 0.75rem !important;
    color: #fff !important;
}

.page-header-title-accent {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 10px rgba(255,255,255,0.3);
}

/* Header Description */
.page-header-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 1rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Header Stats */
.header-stats {
    margin-top: 1.5rem;
}

.stat-item {
    background: rgba(255,255,255,0.15);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1),
                inset 0 1px 0 rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15),
                inset 0 1px 0 rgba(255,255,255,0.3);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem !important;
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideIn {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

/* Services Page Animations */
.header-float-circle-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    top: -250px;
    right: -250px;
    animation: float 20s infinite ease-in-out;
}

.header-float-circle-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    bottom: -150px;
    left: -150px;
    animation: float 15s infinite ease-in-out reverse;
}

/* About Page Animations */
.header-rotate-circle-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -200px;
    left: 10%;
    animation: rotate 30s linear infinite;
}

.header-rotate-circle-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    bottom: -300px;
    right: 10%;
    animation: rotate 40s linear infinite reverse;
}

/* Partners Page Animations */
.header-pulse-square-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    top: 20%;
    left: 5%;
    animation: pulse 3s infinite;
}

.header-pulse-square-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    bottom: 20%;
    right: 5%;
    animation: pulse 3s infinite 1.5s;
}

.header-pulse-square-3 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    top: 50%;
    right: 20%;
    animation: pulse 3s infinite 0.75s;
}

/* FAQ Page Animations */
.header-slide-square-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    top: 10%;
    left: 5%;
    animation: slideIn 8s infinite ease-in-out;
}

.header-slide-square-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    bottom: 10%;
    right: 5%;
    animation: slideIn 8s infinite ease-in-out 2s;
}

/* Contact Page Animations */
.header-bounce-circle-1 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 15%;
    left: 10%;
    animation: bounce 4s infinite;
}

.header-bounce-circle-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 60%;
    left: 20%;
    animation: bounce 4s infinite 1s;
}

.header-bounce-circle-3 {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    bottom: 15%;
    right: 15%;
    animation: bounce 4s infinite 2s;
}

.header-bounce-circle-4 {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 30%;
    right: 25%;
    animation: bounce 4s infinite 0.5s;
}

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

/* Section Backgrounds */
.section-bg-white {
    background: #fff;
    color: #212529;
}

.section-bg-white .text-muted,
.section-bg-white p {
    color: #495057 !important;
}

.section-bg-white h1,
.section-bg-white h2,
.section-bg-white h3,
.section-bg-white h4,
.section-bg-white h5,
.section-bg-white h6 {
    color: #2c3e50 !important;
}

.section-bg-light {
    background: #f8f9fa;
    color: #212529;
}

.section-bg-light .text-muted,
.section-bg-light p {
    color: #495057 !important;
}

.section-bg-light h1,
.section-bg-light h2,
.section-bg-light h3,
.section-bg-light h4,
.section-bg-light h5,
.section-bg-light h6 {
    color: #2c3e50 !important;
}

.section-bg-gradient {
    background: var(--gradient-main);
    color: #fff;
}

.section-bg-gradient * {
    color: inherit;
}

.section-bg-gradient .section-title-white,
.section-bg-gradient h1,
.section-bg-gradient h2,
.section-bg-gradient h3,
.section-bg-gradient h4,
.section-bg-gradient h5,
.section-bg-gradient h6 {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.section-bg-gradient .section-title-white-accent {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 10px rgba(255,255,255,0.3);
}

.section-bg-gradient p,
.section-bg-gradient .text-white-50,
.section-bg-gradient .lead {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Section Titles */
.section-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-title-accent {
    color: #667eea;
}

.section-title-white {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-title-white-accent {
    color: #b89ac3;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: #495057;
}

/* ============================================
   CARD STYLES
   ============================================ */

/* Feature Cards */
.feature-card {
    background: #f8f9fa;
    border-radius: 15px;
    height: 100%;
    padding: 1.5rem;
    text-align: center;
    color: #212529;
}

.feature-card h1,
.feature-card h2,
.feature-card h3,
.feature-card h4,
.feature-card h5,
.feature-card h6 {
    color: #2c3e50 !important;
    font-weight: 600;
}

.feature-card .text-muted,
.feature-card p {
    color: #495057 !important;
    line-height: 1.6;
}

.feature-card-white {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    padding: 1.5rem;
    color: #212529;
}

.feature-card-white h1,
.feature-card-white h2,
.feature-card-white h3,
.feature-card-white h4,
.feature-card-white h5,
.feature-card-white h6 {
    color: #2c3e50 !important;
    font-weight: 600;
}

.feature-card-white .text-muted,
.feature-card-white p {
    color: #495057 !important;
    line-height: 1.6;
}

.feature-card-white .text-muted {
    color: #495057 !important;
}

/* Step Number Circle */
.step-number-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-number-circle span {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

/* Benefit Card */
.benefit-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    height: 100%;
    padding: 1.5rem;
    text-align: center;
}

.benefit-card i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.benefit-card h5 {
    color: #fff;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

/* Value Card */
.value-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    padding: 1.5rem;
    color: #212529;
}

.value-card h1,
.value-card h2,
.value-card h3,
.value-card h4,
.value-card h5,
.value-card h6 {
    color: #2c3e50 !important;
    font-weight: 600;
}

.value-card .text-muted,
.value-card p {
    color: #495057 !important;
    line-height: 1.6;
}

.value-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
    z-index: 0;
}

.timeline-item {
    position: relative;
    padding-left: 0;
    z-index: 1;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-marker span {
    color: #fff;
    font-weight: 700;
}

/* Why Choose Item */
.why-choose-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.why-choose-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.why-choose-icon-box i {
    font-size: 1.5rem;
    color: #fff;
}

.why-choose-content h5 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.why-choose-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

/* Partner Logo Card */
.partner-logo-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
    padding: 1rem;
    text-align: center;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15) !important;
}

.partner-logo-card p {
    color: #fff;
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Contact Method Card */
.contact-method-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    padding: 1.5rem;
    text-align: center;
    color: #212529;
}

.contact-method-card h1,
.contact-method-card h2,
.contact-method-card h3,
.contact-method-card h4,
.contact-method-card h5,
.contact-method-card h6 {
    color: #2c3e50 !important;
    font-weight: 600;
}

.contact-method-card .text-muted,
.contact-method-card p {
    color: #495057 !important;
    line-height: 1.6;
}

.contact-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.contact-icon-circle i {
    font-size: 2rem;
    color: #fff;
}

/* FAQ Search */
.faq-search-section {
    background: #f8f9fa;
    padding: 2rem 0;
}

.faq-search-input-group .input-group-text {
    background: #fff;
}

.faq-cta-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

/* Service Card Inline Styles */
.service-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-additional-info {
    display: none;
}

.service-additional-info.service-additional-info-visible {
    display: block;
}

.service-card-popular-badge {
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.service-card-body {
    background: #fff;
    flex: 1;
}

.service-card-icon-container {
    width: 165px;
    height: 165px;
}

.service-card-icon-bg {
    background: transparent;
    width: 100%;
    height: 100%;
}

/* Service card icons maintain their original colors - no filter applied */

.service-card-title {
    color: #2c3e50;
    font-size: 1.15rem;
}

.service-card-description {
    font-size: 0.85rem;
    line-height: 1.5;
    min-height: 50px;
}

.service-card-category-badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-card-meta-icon {
    font-size: 0.9rem;
}

.service-card-meta-text {
    font-size: 0.8rem;
}

.service-card-price-text {
    font-size: 0.85rem;
}

.service-card-quote-btn {
    padding: 10px;
    font-weight: 600;
    border-radius: 8px;
    background: var(--gradient-main);
    border: none;
    font-size: 0.9rem;
}

/* Homepage Quick Links */
.homepage-quick-link-icon {
    font-size: 3rem;
    color: #667eea;
}

/* Feature Card Icons */
.feature-card-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

/* Section Description Font Size */
.section-description {
    font-size: 1.1rem;
}

.section-description-large {
    font-size: 1.1rem;
}

/* Partners Section Description */
.partners-section-description {
    font-size: 1.1rem;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .page-header-section {
        padding: 50px 0 30px !important;
        min-height: 220px !important;
    }
    
    .page-header-title {
        font-size: 2rem !important;
    }
    
    .page-header-description {
        font-size: 1rem !important;
    }
    
    .header-icon-wrapper {
        padding: 10px !important;
    }
    
    .header-icon-wrapper i {
        font-size: 2rem !important;
    }
    
    .stat-item h3 {
        font-size: 1.5rem !important;
    }
    
    .header-stats {
        margin-top: 1rem !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
}

/* ============================================
   DASHBOARD STYLES
   ============================================ */
.dashboard-content {
    padding: 20px 0;
}

.dashboard-stat-card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

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

.dashboard-stat-card .card-body {
    padding: 1.5rem;
}

.dashboard-stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.dashboard-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.dashboard-stat-icon.bg-primary {
    background: var(--gradient-main) !important;
}

.dashboard-stat-icon.bg-warning {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%) !important;
}

.dashboard-stat-icon.bg-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
}

.dashboard-stat-icon.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%) !important;
}

.dashboard-content .card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.dashboard-content .card-header {
    background: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: 12px 12px 0 0;
    padding: 1rem 1.5rem;
}

.dashboard-content .card-header h5 {
    margin: 0;
    font-weight: 600;
}

.dashboard-content .card-body {
    padding: 1.5rem;
}

.dashboard-content .table {
    margin-bottom: 0;
}

.dashboard-content .table thead th {
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.dashboard-content .list-group-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
}

.dashboard-content .list-group-item:last-child {
    border-bottom: none;
}

.dashboard-content .progress {
    border-radius: 10px;
    background-color: #e9ecef;
}

.dashboard-content .btn {
    border-radius: 9999px !important;
}

.dashboard-content .page-title-box {
    margin-bottom: 1.5rem;
}

.dashboard-content .page-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

/* Dashboard responsive */
@media (max-width: 768px) {
    .dashboard-stat-card h3 {
        font-size: 1.5rem;
    }
    
    .dashboard-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .dashboard-content .card-body {
        padding: 1rem;
    }
}

/* ============================================
   ADMIN LAYOUT STYLES
   ============================================ */

/* Admin Layout Wrapper */
.wrapper .admin-layout {
    height: 100vh;
    overflow: visible;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #f5f7fa;
    position: relative;
}

/* Admin Sidebar */
.admin-sidebar {
    width: 280px;
    background: var(--gradient-main);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    
    .admin-sidebar.active {
        transform: translateX(0);
    }
}

/* Sidebar Header */
.admin-sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.25rem;
}

.admin-logo:hover {
    color: #fff;
    text-decoration: none;
}

.admin-logo-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.admin-sidebar-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.admin-sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Sidebar Content */
.admin-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

/* User Profile Section */
.admin-user-profile {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.admin-user-info {
    flex: 1;
    min-width: 0;
}

.admin-user-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-user-email {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Navigation Menu */
.admin-sidebar-nav {
    padding: 0.5rem 0;
}

.admin-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-nav-item {
    margin: 0.25rem 0;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.admin-nav-link i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
}

.admin-nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
}

.admin-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fff;
    border-radius: 0 4px 4px 0;
}

.admin-nav-badge {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.admin-nav-external {
    margin-left: auto;
    font-size: 0.875rem;
    opacity: 0.7;
}

.admin-nav-link-danger {
    color: rgba(255, 200, 200, 0.9);
}

.admin-nav-link-danger:hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ffcccc;
}

/* Main Content Area */
.admin-main-content {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media (max-width: 991px) {
    .admin-main-content {
        margin-left: 0;
    }
}

/* Top Bar */
.admin-topbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-menu-toggle {
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    color: #374151;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.admin-menu-toggle:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.admin-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-topbar-actions {
    display: flex;
    gap: 0.5rem;
}

.admin-topbar-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.admin-topbar-link:hover {
    background: #f3f4f6;
    color: #111827;
    text-decoration: none;
}

/* Content Wrapper */
.admin-content-wrapper {
    flex: 1;
    padding: 2rem;
    background: #f5f7fa;
}

/* Sidebar Overlay for Mobile */
.admin-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 991px) {
    .admin-sidebar-overlay {
        display: block;
    }
    
    .admin-sidebar-overlay.active {
        opacity: 1;
    }
}

/* Update dashboard content for admin layout */
.admin-content-wrapper .dashboard-content {
    background: transparent;
    padding: 0;
}

.admin-content-wrapper .dashboard-content .container-fluid {
    padding: 0;
}

/* Admin Page Title Box */
.admin-content-wrapper .page-title-box {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.admin-content-wrapper .page-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .admin-content-wrapper {
        padding: 1rem;
    }
    
    .admin-topbar {
        padding: 0.75rem 1rem;
    }
    
    .admin-page-title {
        font-size: 1.25rem;
    }
    
    .admin-content-wrapper .page-title {
        font-size: 1.5rem;
    }
}