/* Phi Care Solutions - Professional Brand CSS */

/* Brand Color Variables */
:root {
    --phi-orange: #fb8815;
    --phi-blue: #1E3A8A;
    --phi-light-orange: #fb8815;
    --phi-dark-blue: #162F73;
    --phi-orange-10: rgba(255, 107, 53, 0.1);
    --phi-orange-20: rgba(255, 107, 53, 0.2);
    --phi-orange-30: rgba(255, 107, 53, 0.3);
    --phi-blue-10: rgba(30, 58, 138, 0.1);
    --phi-blue-20: rgba(30, 58, 138, 0.2);
    --phi-neutral-50: #F8FAFC;
    --phi-neutral-100: #F1F5F9;
    --phi-neutral-200: #E2E8F0;
    --phi-neutral-700: #334155;
    --phi-neutral-800: #1E293B;
    --phi-white: #FFFFFF;
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes scroll {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes brandGlow {
    0%, 100% { box-shadow: 0 0 20px var(--phi-orange-20); }
    50% { box-shadow: 0 0 30px var(--phi-orange-30); }
}

/* Hero Section */
.phi_hero_section {
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg, var(--phi-blue) 0%, var(--phi-dark-blue) 100%);
}

.phi_bg_animation {
    opacity: 0.1;
}

.phi_float_element {
    position: absolute;
    background: var(--phi-orange);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 20px var(--phi-orange-20);
}

.phi_float_1 {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    animation-duration: 6s;
    background: linear-gradient(45deg, var(--phi-orange), var(--phi-light-orange));
}

.phi_float_2 {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    animation-duration: 8s;
    animation-direction: reverse;
    background: var(--phi-orange);
}

.phi_float_3 {
    bottom: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    animation-duration: 10s;
    background: linear-gradient(45deg, var(--phi-light-orange), var(--phi-orange));
}

.phi_hero_title {
    line-height: 1.2;
    color: var(--phi-white);
}

.phi_hero_subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.phi_cta_primary {
    background: linear-gradient(45deg, var(--phi-orange), var(--phi-light-orange));
    border: none;
    color: var(--phi-white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--phi-orange-30);
}

.phi_cta_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--phi-orange-30);
    background: linear-gradient(45deg, var(--phi-light-orange), var(--phi-orange));
    color: var(--phi-white);
}

.phi_cta_secondary {
    background: transparent;
    border: 2px solid var(--phi-white);
    color: var(--phi-white);
    transition: all 0.3s ease;
}

.phi_cta_secondary:hover {
    transform: translateY(-2px);
    background: var(--phi-white);
    color: var(--phi-blue);
    border-color: var(--phi-white);
}

/* Floating Cards */
.phi_card {
    transition: all 0.3s ease;
    background: var(--phi-white);
    border: 1px solid var(--phi-neutral-200);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.phi_card_1 {
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
    border-left: 4px solid var(--phi-orange);
}

.phi_card_2 {
    transform: rotate(10deg);
    animation: float 8s ease-in-out infinite reverse;
    border-left: 4px solid var(--phi-blue);
}

.phi_card_3 {
    transform: rotate(-3deg);
    animation: float 10s ease-in-out infinite;
    border-left: 4px solid var(--phi-orange);
}

.phi_card:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Scroll Indicator */
.phi_scroll_mouse {
    width: 2px;
    height: 30px;
    background: var(--phi-orange);
    border-radius: 2px;
    margin: 0 auto;
    animation: scroll 2s infinite;
}

/* Stats Section */
.phi_stat_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--phi-orange), var(--phi-light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--phi-white);
    transition: all 0.3s ease;
}

.phi_stat_card {
    background: var(--phi-white);
    padding-top: 20px;
    transition: all 0.3s ease;
}

.phi_stat_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--phi-orange);
}

.phi_stat_card:hover .phi_stat_icon {
    transform: scale(1.1);
    animation: brandGlow 2s infinite;
}

.phi_counter {
    font-size: 2.5rem;
    color: var(--phi-blue);
    font-weight: 700;
}

/* Service Cards */
.phi_service_card {
    transition: all 0.3s ease;
    position: relative;
    background: var(--phi-white);
    border: 1px solid var(--phi-neutral-200);
    border-radius: 12px;
    overflow: hidden;
}

.phi_service_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--phi-orange);
}

.phi_service_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--phi-blue), var(--phi-dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--phi-white);
    transition: all 0.3s ease;
}

.phi_service_card:hover .phi_service_icon {
    background: linear-gradient(45deg, var(--phi-orange), var(--phi-light-orange));
    transform: scale(1.1);
}

.phi_service_bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--phi-orange), var(--phi-light-orange));
    opacity: 0.05;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.phi_service_card:hover .phi_service_bg {
    opacity: 0.1;
    transform: scale(1.2);
}

/* Feature Cards */
.phi_feature_card {
    transition: all 0.3s ease;
    background: var(--phi-white);
    border: 1px solid var(--phi-neutral-200);
    border-radius: 12px;
}

.phi_feature_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--phi-blue);
}

.phi_feature_icon {
    width: 90px;
    height: 90px;
    background: var(--phi-blue-10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--phi-blue);
    transition: all 0.3s ease;
}

.phi_feature_card:hover .phi_feature_icon {
    background: var(--phi-orange-10);
    color: var(--phi-orange);
    transform: scale(1.1);
}

/* Testimonial Cards */
.phi_testimonial_card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    background: var(--phi-white);
    border-radius: 8px;
    border: 1px solid var(--phi-neutral-200);
}

.phi_testimonial_card:hover {
    transform: translateY(-5px);
    border-left-color: var(--phi-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.phi_testimonial_avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    background: linear-gradient(45deg, var(--phi-blue), var(--phi-dark-blue));
    color: var(--phi-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ERP Section */
.phi_erp_visual {
    animation: fadeInUp 1s ease-out;
}

.phi_erp_visual .bg-white {
    transition: all 0.3s ease;
    border: 1px solid var(--phi-neutral-200);
}

.phi_erp_visual .bg-white:hover {
    transform: scale(1.05);
    border-color: var(--phi-orange);
    box-shadow: 0 5px 15px var(--phi-orange-20);
}

/* CTA Section */
.phi_cta_section {
    background: linear-gradient(135deg, var(--phi-blue) 0%, var(--phi-dark-blue) 100%);
}

.phi_cta_section .btn-primary {
    background: linear-gradient(45deg, var(--phi-orange), var(--phi-light-orange));
    border: none;
    transition: all 0.3s ease;
}

.phi_cta_section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--phi-orange-30);
    background: linear-gradient(45deg, var(--phi-light-orange), var(--phi-orange));
}

/* Brand Gradient Utilities */
.bg-gradient-primary {
    background: linear-gradient(45deg, var(--phi-blue), var(--phi-dark-blue)) !important;
}

.bg-gradient-warning {
    background: linear-gradient(45deg, var(--phi-orange), var(--phi-light-orange)) !important;
}

.bg-gradient-success {
    background: linear-gradient(45deg, var(--phi-blue), var(--phi-orange)) !important;
}

.text-brand-orange {
    color: var(--phi-orange) !important;
}

.text-brand-blue {
    color: var(--phi-blue) !important;
}

.border-brand-orange {
    border-color: var(--phi-orange) !important;
}

.border-brand-blue {
    border-color: var(--phi-blue) !important;
}

/* Professional Section Styling */
.phi_section_professional {
    background: var(--phi-neutral-50);
    border-top: 1px solid var(--phi-neutral-200);
}

.phi_section_highlight {
    background: linear-gradient(135deg, var(--phi-blue-10), var(--phi-orange-10));
}

/* Responsive Design */
@media (max-width: 768px) {
    .phi_hero_title {
        font-size: 2.5rem;
    }
    
    .phi_hero_subtitle {
        font-size: 1.1rem;
    }
    
    .phi_float_element {
        display: none;
    }
    
    .phi_card {
        transform: none !important;
        margin-bottom: 1rem;
    }
    
    .phi_counter {
        font-size: 2rem;
    }
    
    .phi_stat_icon,
    .phi_feature_icon {
        width: 60px;
        height: 60px;
    }
    
    .phi_service_icon {
        width: 50px;
        height: 50px;
    }
    
    .phi_testimonial_avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .phi_hero_section {
        min-height: 150vh;
    }
    
    .phi_hero_title {
        font-size: 2rem;
    }
    
    .phi_cta_primary,
    .phi_cta_secondary {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.75rem;
    }
}

/* Professional Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--phi-neutral-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--phi-orange), var(--phi-blue));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--phi-light-orange), var(--phi-dark-blue));
}

/* Loading Animation for Stats Counter */
.phi_counter.loading {
    animation: pulse 1.5s infinite;
}

/* Section Transitions */
.phi_section_transition {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.phi_section_transition.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Professional Button Focus States */
.btn:focus,
.btn.focus {
    box-shadow: 0 0 0 0.2rem var(--phi-orange-30);
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem var(--phi-orange-30);
}

.btn-secondary:focus {
    box-shadow: 0 0 0 0.2rem var(--phi-blue-20);
}

/* Professional Text Selection */
::selection {
    background-color: var(--phi-orange-20);
    color: var(--phi-blue);
}

::-moz-selection {
    background-color: var(--phi-orange-20);
    color: var(--phi-blue);
}

/* Print Styles */
@media print {
    .phi_bg_animation,
    .phi_float_element {
        display: none;
    }
    
    .phi_hero_section {
        background: var(--phi-blue) !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
    }
    
    .phi_cta_primary {
        background: var(--phi-orange) !important;
        -webkit-print-color-adjust: exact;
    }
}

/* Professional Utility Classes */
.shadow-brand {
    box-shadow: 0 4px 6px var(--phi-orange-10), 0 1px 3px var(--phi-blue-10) !important;
}

.shadow-brand-lg {
    box-shadow: 0 10px 15px var(--phi-orange-20), 0 4px 6px var(--phi-blue-10) !important;
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(45deg, var(--phi-orange), var(--phi-blue)) 1;
}
/* Fixed text colors */
.text-brand-orange,
.text-warning {
    color: var(--phi-orange) !important;
}

.text-brand-blue,
.text-primary {
    color: var(--phi-orange) !important;
}

.text-success {
    color: var(--phi-orange) !important;
}

.text-info {
    color: var(--phi-orange) !important;
}

.border-brand-orange {
    border-color: var(--phi-orange) !important;
}

.border-brand-blue {
    border-color: var(--phi-blue) !important;
}
 .phi_hero_visual {
            position: relative;
            z-index: 2;
            
        }
        
        .phi_hero_image {
            width: 100%;
            height: auto;

            transition: transform 0.3s ease;
            
        }
        
        .phi_hero_image:hover {
            transform: scale(1.02);
        }
        
/*** Services Section ***/
.services-section {
    background: white;
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: #6f42c1;
}

.section-title p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Global font style applied to relevant elements */
.section-title,
.btn-primary-custom,
.btn-outline-custom,
.service-item,
.service-icon,
.service-item-slider,
.btn-slider {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0b1f84;
}
/*** Service Item ***/
.service-item {
    position: relative;
    padding: 40px 25px;
    background: #FFFFFF;
    transition: all 0.5s ease;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(111, 66, 193, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    background: #6f42c1;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(111, 66, 193, 0.3);
}

.service-icon {
    margin: 0 auto 25px auto;
    width: 80px;
    height: 80px;
    color: #0b1f84;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    border-radius: 50%;
    border: 3px solid rgba(111, 66, 193, 0.1);
}

.service-item:hover .service-icon {
    background: #FFFFFF;
    border-color: #FFFFFF;
}

.service-item h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.5s ease;
    color: #2c3e50;
}

.service-item p {
    transition: all 0.5s ease;
    color: #6c757d;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0b1f84;
    background: #f8f9fa;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.5s ease;
    text-decoration: none;
    margin-top: auto;
    align-self: center;
}

.service-item:hover .btn {
    color: #0b1f84;
    background: #FFFFFF;
    transform: scale(1.05);
}

/*** Service Slider ***/
.service-item-slider {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(111, 66, 193, 0.08);
}

.service-item-slider:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(111, 66, 193, 0.15);
}

.service-icon-slider {
    margin-bottom: 20px;
    color: #0b1f84;
    transition: all 0.3s ease;
}

.service-item-slider:hover .service-icon-slider {
    transform: scale(1.1);
    color: #fa8715;
}

.service-item-slider h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item-slider p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-slider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0b1f84;
    background: #f8f9fa;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-slider:hover {
    color: white;
    background: #0b1f84;
    transform: scale(1.05);
}

/*** Carousel Styles ***/
#servicesCarousel {
    position: relative;
    padding: 0 60px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: #0b1f84;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: #fa8715;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.carousel-indicators-custom button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(111, 66, 193, 0.3);
    transition: all 0.3s ease;
}

.carousel-indicators-custom button.active {
    background: #0b1f84;
    transform: scale(1.2);
}

.carousel-indicators-custom button:hover {
    background: #fa8715;
}

/*** Responsive Media Queries ***/
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    #servicesCarousel {
        padding: 0 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .service-item-slider {
        height: 280px;
        padding: 30px 15px;
    }

    .service-item-slider h5 {
        font-size: 1.2rem;
    }

    .service-item-slider p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .carousel-inner .row .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #servicesCarousel {
        padding: 0;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}
.custom_hero_visual {
    position: relative;
    z-index: 2;
}

.custom_hero_image {
    width: 100%;
    height: 500px;
    transition: transform 0.3s ease;
}

.custom_hero_image:hover {
    transform: scale(1.02);
}

/* Initial hidden state */
.fade-in-left-trigger {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When visible */
.fade-in-left-active {
    opacity: 1;
    transform: translateX(0);
}



/* Variables via class prefixing instead of :root */
.phi_testimonials_section {
    --primary: #1E3A8A;
    --warning: #1E3A8A;
    --success: #198754;
    --light-gray: #f8f9fa;
    --dark-text: #1E3A8A;
    --muted-text: #64748b;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    padding: 80px 0 150px 0;
}

/* Typography */
.phi_testimonials_section .testimonial-title {
    color: var(--dark-text);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.phi_testimonials_section .testimonial-subtitle {
    color: var(--muted-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* Carousel Container */
.phi_testimonials_section .testimonial-carousel-container {
    position: relative;
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 350px;
}

/* Quote */
.phi_testimonials_section .testimonial-quote {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* Testimonial Text */
.phi_testimonials_section .testimonial-text {
    color: var(--dark-text);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

/* Author Info */
.phi_testimonials_section .testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.phi_testimonials_section .phi_testimonial_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 15px;
}

.phi_testimonials_section .testimonial-info h6 {
    color: var(--dark-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.phi_testimonials_section .testimonial-info small {
    color: var(--muted-text);
    font-size: 0.95rem;
}

/* Star Rating */
.phi_testimonials_section .testimonial-stars {
    margin-bottom: 20px;
}

.phi_testimonials_section .testimonial-stars i {
    color: var(--warning);
    font-size: 1.2rem;
    margin-right: 2px;
}

/* Navigation */
.phi_testimonials_section .testimonial-nav {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.phi_testimonials_section .nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--muted-text);
    font-size: 18px;
}

.phi_testimonials_section .nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}

.phi_testimonials_section .nav-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Dots */
.phi_testimonials_section .testimonial-dots {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.phi_testimonials_section .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phi_testimonials_section .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .phi_testimonials_section .testimonial-title {
        font-size: 2rem;
    }

    .phi_testimonials_section .testimonial-carousel-container {
        padding: 30px 20px;
    }

    .phi_testimonials_section .testimonial-nav {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        transform: none;
        left: auto;
        bottom: auto;
    }

    .phi_testimonials_section {
        padding: 80px 0;
    }
}

@media (min-width: 992px) {
    .phi_testimonials_section .col-lg-12 {
        position: relative;
        padding-bottom: 100px;
    }
}
