/* Base Styles */
:root {
    --primary-color: #d64a97;
    --secondary-color: #7e3182;
    --light-color: #dcdedd;
    --blue-color: #2459c4;
    --green-color: #4da644;
    --dark-color: #343a40;
    --white-color: #ffffff;
    --gray-color: #6c757d;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn {
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #c23a87;
    border-color: #c23a87;
}

.btn-outline-light:hover {
    color: var(--primary-color);
}

.btn-purple {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-purple:hover {
    background-color: #6a2970;
    border-color: #6a2970;
    color: white;
}

.btn-green {
    background-color: var(--green-color);
    border-color: var(--green-color);
    color: white;
}

.btn-green:hover {
    background-color: #3d8a36;
    border-color: #3d8a36;
    color: white;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-purple {
    color: var(--secondary-color) !important;
}

.text-green {
    color: var(--green-color) !important;
}

.text-blue {
    color: var(--blue-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-purple {
    background-color: var(--secondary-color) !important;
}

.bg-green {
    background-color: var(--green-color) !important;
}

.bg-blue {
    background-color: var(--blue-color) !important;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

/* Header */
.header {
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 8px 15px;
    color: var(--dark-color);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: rgba(214, 74, 151, 0.1);
    color: var(--primary-color);
}

/* Hero Banner */
.hero-banner {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-banner h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-banner p.lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('../images/wave-shape.png') center bottom no-repeat;
    background-size: cover;
}

/* Page Banner */
.page-banner {
    padding: 100px 0 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
}

.page-banner h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.banner-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('../images/wave-shape-white.png') center bottom no-repeat;
    background-size: cover;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.service-icon.bg-primary {
    background-color: var(--primary-color);
}

.service-icon.bg-purple {
    background-color: var(--secondary-color);
}

.service-icon.bg-green {
    background-color: var(--green-color);
}

.service-card h3 {
    font-size: 1.5rem;
}



/* Testimonials Section */
.testimonials-section {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f4ff 100%);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyMTAsIDIxMCwgMjU1LCAwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: -1;
}

.section-header {
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #6c5ce7;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #6c5ce7;
    opacity: 0.5;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: #636e72;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: none;
    overflow: hidden;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.15);
}

.card-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(108, 92, 231, 0.05) 100%);
    border-bottom-left-radius: 100%;
    transition: all 0.4s ease;
}

.testimonial-card:hover .card-bg-shape {
    width: 150px;
    height: 150px;
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(108, 92, 231, 0.1);
    font-size: 60px;
    line-height: 1;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote {
    color: rgba(108, 92, 231, 0.15);
    transform: scale(1.1);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 30px;
    flex-grow: 1;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(108, 92, 231, 0.3);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-image {
    position: relative;
    margin-right: 20px;
    flex-shrink: 0;
}

.author-image img {
    width: 140px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-image img {
    transform: scale(1.05);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2d3436;
}

.author-role {
    display: block;
    font-size: 14px;
    color: #6c5ce7;
    font-weight: 500;
}

.author-company {
    font-size: 13px;
    color: #636e72;
}

/* Carousel Settings */
.premium-carousel .owl-stage-outer {
    padding: 30px 0;
    margin: -30px 0;
}

.premium-carousel .owl-item {
    padding: 0 15px;
    transition: all 0.4s ease;
}

.premium-carousel .owl-item.active.center .testimonial-card {
    transform: scale(1.05);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Navigation */
.testimonial-nav {
    position: relative;
    z-index: 2;
}

.nav-circle {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    color: #6c5ce7;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-circle:hover {
    background: #6c5ce7;
    color: white;
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    align-items: center;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dfe6e9;
    border: none;
    margin: 0 5px;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: #6c5ce7;
    transform: scale(1.3);
}

/* Decorative Shapes */
.testimonial-shape-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(108, 92, 231, 0.02) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
    opacity: 0.8;
}

.testimonial-shape-2 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(253, 121, 168, 0.05) 0%, rgba(253, 121, 168, 0.02) 100%);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
}

.testimonial-shape-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(129, 236, 236, 0.03) 0%, rgba(129, 236, 236, 0.01) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 8s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .testimonials-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .premium-carousel .owl-item.active.center .testimonial-card {
        transform: scale(1);
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-shape-1,
    .testimonial-shape-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-role {
        font-size: 13px;
    }
    
    .nav-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}


/* Feature List */
.feature-list .feature-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 120px;
    height: 60px;
    background: rgba(214, 74, 151, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Mission Cards */
.mission-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.mission-card h3 {
    font-size: 1.5rem;
}

/* Team Cards */
.team-card {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    padding: 15px 0;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: white;
    margin: 0 10px;
    font-size: 18px;
}

.team-social a:hover {
    color: var(--light-color);
}

.team-card h4 {
    margin-top: 30px;
    font-size: 1.3rem;
}

.team-card p.text-primary {
    font-weight: 600;
}

/* Process Cards */
.process-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
}

.process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.process-card h3 {
    font-size: 1.3rem;
}

/* NDIS Badge */
.ndis-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    max-width: 350px;
    margin: 0 auto;
}

.ndis-badge img {
    max-width: 200px;
}

/* Service Detail */
.service-detail {
    padding: 30px;
}

.service-icon-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
}

.service-icon-lg.bg-primary {
    background-color: var(--primary-color);
}

.service-icon-lg.bg-purple {
    background-color: var(--secondary-color);
}

.service-icon-lg.bg-green {
    background-color: var(--green-color);
}

.service-detail h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-detail h5 {
    font-size: 1.2rem;
    color: var(--dark-color);
}

.service-detail ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-detail ul li i {
    margin-top: 3px;
}

/* Additional Service Cards */
.additional-service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.additional-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon-sm {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.service-icon-sm.bg-blue {
    background-color: var(--blue-color);
}

.service-icon-sm.bg-orange {
    background-color: #fd7e14;
}

.service-icon-sm.bg-red {
    background-color: #dc3545;
}

.service-icon-sm.bg-teal {
    background-color: #20c997;
}

.service-icon-sm.bg-pink {
    background-color: #e83e8c;
}

.service-icon-sm.bg-yellow {
    background-color: #ffc107;
}

.additional-service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Referral Steps */
.referral-step {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.referral-step h4 {
    font-size: 1.3rem;
}

/* Referral Form */
.referral-form-container {
    background: white;
    border-radius: 10px;
}

.referral-form-container h3 {
    color: var(--primary-color);
}

.form-label {
    font-weight: 600;
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(214, 74, 151, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(214, 74, 151, 0.25);
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(214, 74, 151, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
}

.contact-info-card h4 {
    color: var(--primary-color);
}

.contact-info-card h5 {
    font-size: 1rem;
    color: var(--gray-color);
}

.contact-info-card a {
    color: var(--dark-color);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(214, 74, 151, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-card h4 {
    color: var(--primary-color);
}

/* Map Container */
.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Privacy Note */
.privacy-note {
    background: white;
    border-left: 4px solid var(--primary-color);
}

/* FAQ Accordion */
.accordion-button {
    font-weight: 600;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(214, 74, 151, 0.05);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(214, 74, 151, 0.25);
}

.accordion-body {
    padding: 20px;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer ul.list-unstyled li {
    color: rgba(255, 255, 255, 0.7);
}

.footer .social-icons a {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer .social-icons a:hover {
    background: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: white;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(214, 74, 151, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Animations */
.animate__animated {
    animation-duration: 1s;
}

/* Utility Classes */
.rounded {
    border-radius: 10px !important;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.mb-10 {
    margin-bottom: 6rem !important;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}





















/* Jobs Page Styles */
.job-item {
    transition: all 0.3s ease;
    background: white;
}

.job-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.job-meta {
    font-size: 0.9rem;
}

.job-details-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.job-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.job-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.job-content h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.job-apply-card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.similar-job-card {
    transition: all 0.3s ease;
}

.similar-job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.feature-icon.bg-primary {
    background-color: var(--primary-color);
}

.feature-icon.bg-purple {
    background-color: var(--secondary-color);
}

.feature-icon.bg-green {
    background-color: var(--green-color);
}







   /* Video Section Styles */
.bg-gradient-light-white {
    background: linear-gradient(to bottom, var(--white-color) 0%, var(--light-gray) 100%);
}

.video-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.15) !important;
}

.video-thumbnail {
    width: 180px;
    transition: all 0.3s ease;
    color: var(--dark-color);
}

.video-thumbnail:hover {
    transform: translateY(-3px);
    color: var(--primary-color);
}

.play-icon {
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.video-thumbnail:hover .play-icon {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1.1);
}

.btn-danger {
    background-color: #FF0000;
    border-color: #FF0000;
}

.btn-danger:hover {
    background-color: #CC0000;
    border-color: #CC0000;
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

.z-index-1 {
    z-index: 1;
}