/* General Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: #e5e7eb;
}

/* Boxed Layout Wrapper */
#app-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Main Content */
.main-content {
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #ffffff;
}

.navbar-brand {
    font-weight: 600;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 400;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

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

/* Main Content - Already defined above for boxed layout */

/* Hero Carousel Section */
.hero-carousel-section {
    position: relative;
    width: 100%;
    background-color: #f8f9fa;
}

.hero-boxed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-inner {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-item {
    width: 100%;
}

.hero-slide {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    width: 100%;
    max-width: 100%;
}
    align-items: center;
}

.hero-slide-1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
}

.hero-slide-2 {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
}

.hero-slide-3 {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,122.7C960,139,1056,149,1152,138.7C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

/* Carousel Controls Enhancement */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 0.5rem;
}

.carousel-indicators {
    bottom: 2rem;
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 0.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Carousel Fade Animation */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Random Slide Styles */
/* Zoom Effect */
.slide-style-zoom .hero-slide {
    transform: scale(1.2);
    transition: transform 1.5s ease-out;
}

.slide-style-zoom.active .hero-slide {
    transform: scale(1);
}

.slide-style-zoom .slide-title-zoom {
    animation: zoomInDown 1s ease-out;
}

.slide-style-zoom .slide-subtitle-zoom {
    animation: zoomInUp 1.2s ease-out 0.3s both;
}

.slide-style-zoom .slide-button-zoom {
    animation: zoomIn 1s ease-out 0.6s both;
}

/* Slide Left Effect */
.slide-style-slide-left .hero-slide {
    transform: translateX(-100%);
    transition: transform 1s ease-out;
}

.slide-style-slide-left.active .hero-slide {
    transform: translateX(0);
}

.slide-style-slide-left .slide-title-slide-left {
    animation: slideInLeft 0.8s ease-out 0.5s both;
}

.slide-style-slide-left .slide-subtitle-slide-left {
    animation: slideInLeft 1s ease-out 0.7s both;
}

.slide-style-slide-left .slide-button-slide-left {
    animation: slideInLeft 1.2s ease-out 0.9s both;
}

/* Slide Right Effect */
.slide-style-slide-right .hero-slide {
    transform: translateX(100%);
    transition: transform 1s ease-out;
}

.slide-style-slide-right.active .hero-slide {
    transform: translateX(0);
}

.slide-style-slide-right .slide-title-slide-right {
    animation: slideInRight 0.8s ease-out 0.5s both;
}

.slide-style-slide-right .slide-subtitle-slide-right {
    animation: slideInRight 1s ease-out 0.7s both;
}

.slide-style-slide-right .slide-button-slide-right {
    animation: slideInRight 1.2s ease-out 0.9s both;
}

/* Rotate Effect */
.slide-style-rotate .hero-slide {
    transform: rotate(5deg) scale(0.8);
    opacity: 0;
    transition: all 1.2s ease-out;
}

.slide-style-rotate.active .hero-slide {
    transform: rotate(0deg) scale(1);
    opacity: 1;
}

.slide-style-rotate .slide-title-rotate {
    animation: rotateIn 1s ease-out 0.6s both;
}

.slide-style-rotate .slide-subtitle-rotate {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.slide-style-rotate .slide-button-rotate {
    animation: bounceIn 1s ease-out 1s both;
}

/* Flip Effect */
.slide-style-flip .hero-slide {
    transform: perspective(1000px) rotateY(90deg);
    transition: transform 1s ease-out;
}

.slide-style-flip.active .hero-slide {
    transform: perspective(1000px) rotateY(0deg);
}

.slide-style-flip .slide-title-flip {
    animation: flipInX 1s ease-out 0.5s both;
}

.slide-style-flip .slide-subtitle-flip {
    animation: flipInY 1.2s ease-out 0.7s both;
}

.slide-style-flip .slide-button-flip {
    animation: fadeInUp 1s ease-out 1s both;
}

/* Overlay Animations */
.hero-overlay.style-zoom {
    animation: pulseOverlay 2s ease-in-out infinite;
}

.hero-overlay.style-slide-left,
.hero-overlay.style-slide-right {
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-overlay.style-rotate {
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-overlay.style-flip {
    animation: fadeOverlay 1s ease-in-out;
}

/* Keyframe Animations */
@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        transform: rotate3d(0, 0, 1, 0deg);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    }
    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    }
    60% {
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        transform: perspective(400px);
    }
}

@keyframes pulseOverlay {
    0%, 100% {
        background: rgba(0, 0, 0, 0.3);
    }
    50% {
        background: rgba(0, 0, 0, 0.4);
    }
}

@keyframes fadeOverlay {
    from {
        background: rgba(0, 0, 0, 0);
    }
    to {
        background: rgba(0, 0, 0, 0.3);
    }
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon::before {
    transform: scale(1.3);
    animation: ripple 1.5s ease-out infinite;
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.feature-icon i {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

/* Icon specific animations */
.icon-bounce {
    animation: iconBounce 2s ease-in-out infinite;
}

.icon-rotate {
    animation: iconRotate 3s ease-in-out infinite;
}

.icon-pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

.icon-sparkle {
    animation: iconSparkle 3s ease-in-out infinite;
}

/* Keyframe Animations for Icons */
@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

@keyframes iconSparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        filter: brightness(1.3);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1.3);
        opacity: 0.6;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Certification Items */
.certification-item {
    text-align: center;
    padding: 1.5rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #fbbf24;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 6rem 0 4rem;
}

/* Mission & Vision Cards */
.mission-card, .vision-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Value Cards */
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Service Features */
.service-icon-large {
    font-size: 5rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0;
}

.service-features {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-box {
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 0.5rem;
}

.included-item {
    padding: 1rem;
}

.client-type-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

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

/* Contact Forms */
.contact-form-wrapper, .service-inquiry-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
    padding: 1rem 0;
}

/* Footer */
.footer {
    background: var(--dark-color);
}

.footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.footer ul {
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

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

/* Responsive */
@media (max-width: 1440px) {
    #app-wrapper {
        max-width: 100%;
        box-shadow: none;
    }
    
    body {
        background: #ffffff;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
/* Pricing Cards Styling */
.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 1rem 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: visible;
}

/* Package Tier Icons */
.package-tier-icon {
    margin-top: 0.25rem;
}

.tier-icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
    position: relative;
}

.tier-emoji {
    font-size: 2rem;
    line-height: 1;
}

.pricing-card:hover .tier-icon-circle {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.25);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    z-index: 10;
}

.pricing-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

.package-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.price-tag .currency {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
}

.price-tag .amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-tag .duration {
    font-size: 0.7rem;
    color: #9ca3af;
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 1rem;
}

.pricing-features ul {
    margin: 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.4rem 0;
    color: #4b5563;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing-footer {
    margin-top: auto;
    padding-top: 1.5rem;
}

.pricing-footer .btn {
    border-radius: 12px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.pricing-footer .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Packages Carousel Custom Styling */
#packagesCarousel {
    padding: 2rem 0;
}

#packagesCarousel .carousel-control-prev,
#packagesCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

#packagesCarousel .carousel-control-prev {
    left: -60px;
}

#packagesCarousel .carousel-control-next {
    right: -60px;
}

#packagesCarousel .carousel-control-prev-icon,
#packagesCarousel .carousel-control-next-icon {
    width: 50px;
    height: 50px;
}

#packagesCarousel .carousel-indicators {
    bottom: -40px;
}

#packagesCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

#packagesCarousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* Responsive pricing cards */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    #packagesCarousel .carousel-control-prev,
    #packagesCarousel .carousel-control-next {
        display: none;
    }
}
/* Package Medal/Tier Icons */
.package-medal {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 3.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.package-medal::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

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

.medal-silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 50%, #A8A8A8 100%);
    color: #4a4a4a;
    border: 3px solid #ffffff;
}

.medal-silver::before {
    background: linear-gradient(135deg, #C0C0C0, #E8E8E8);
}

.medal-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    color: #8B4513;
    border: 3px solid #FFF8DC;
}

.medal-gold::before {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.medal-platinum {
    background: linear-gradient(135deg, #E5E4E2 0%, #BCC6CC 50%, #D3D3D3 100%);
    color: #2C3539;
    border: 3px solid #F5F5F5;
}

.medal-platinum::before {
    background: linear-gradient(135deg, #E5E4E2, #BCC6CC);
}

.package-medal i {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
