/* Global Styles */
:root {
    --primary-color: #2196F3;
    --secondary-color: #1976D2;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 76px;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    height: 60px;
    width: auto;
    margin: 5px 0;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
}

.brand-subtext {
    font-size: 0.9rem;
    color: #666;
}

.navbar-nav .nav-item {
    margin: 0 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link i {
    margin-right: 5px;
    font-size: 1.1em;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(33, 150, 243, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.carousel-item {
    height: 80vh;
    background-color: var(--dark-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    width: 80%;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-content .btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.slide-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Animation Classes */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 5rem 0;
}

.section-header h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header .lead {
    max-width: 700px;
    margin: 0 auto;
    color: var(--secondary-color);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1;
}

.service-body {
    padding: 2rem;
}

.service-body h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-body p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
}

.service-features li span {
    font-size: 1rem;
}

/* Benefits Section */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.benefit-card h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: var(--secondary-color);
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .service-image {
        height: 220px;
    }
    
    .service-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .benefit-card {
        margin-bottom: 1.5rem;
    }
}

/* Services Section */
.services-header {
    margin-bottom: 3rem;
}

.services-header h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-header .lead {
    color: var(--secondary-color);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-section h2 {
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-showcase {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.service-showcase:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.service-tag {
    background: rgba(33, 150, 243, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-details {
    padding: 2rem;
}

.service-details h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-benefits {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
}

/* Service Benefits Image */
.benefits-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefits-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefits-image-container:hover .benefits-image {
    transform: scale(1.05);
}

/* Service Cards Enhancements */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-image {
    position: relative;
    height: 280px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.service-tag {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-content {
    background: white;
    padding: 2rem;
    border-radius: 0 0 15px 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2rem;
    }

    .services-header .lead {
        font-size: 1.1rem;
    }

    .benefits-image-container {
        height: 300px;
    }

    .service-image {
        height: 220px;
    }

    .service-content {
        padding: 1.5rem;
    }
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .service-image {
        height: 250px;
    }

    .service-details {
        padding: 1.5rem;
    }

    .service-benefits {
        padding: 2rem;
    }

    .benefit-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

/* About Section */
.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    margin-bottom: 1rem;
}

.about-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.about-image {
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Accessories Section */
.accessories-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 4rem 0;
}

.accessory-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

.accessory-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.accessory-card:hover .accessory-image img {
    transform: scale(1.1);
}

.accessory-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    opacity: 0;
    transition: all 0.3s ease;
}

.accessory-card:hover .accessory-overlay {
    opacity: 1;
}

.accessory-details {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
}

.accessory-details .badge {
    background: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 8px;
    display: inline-block;
}

.accessory-details h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.accessory-content {
    padding: 1.5rem;
}

.accessory-content h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.accessory-content p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.accessory-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accessory-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.accessory-features i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .accessory-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .accessory-image {
        height: 180px;
    }
    
    .accessory-content {
        padding: 1.2rem;
    }
    
    .accessory-content h3 {
        font-size: 1.2rem;
    }
    
    .accessory-features li {
        font-size: 0.9rem;
    }
}

/* Service Image Gallery */
.service-image-gallery {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image-gallery .main-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

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

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.service-image-gallery:hover .thumbnail-gallery {
    transform: translateY(0);
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.thumbnail:hover {
    opacity: 1;
}

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

.accessories-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.highlight-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.highlight-content {
    flex: 1;
}

.highlight-content h4 {
    margin: 0 0 0.5rem;
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-content p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-image-gallery .main-image {
        height: 300px;
    }

    .thumbnail-gallery {
        position: static;
        transform: none;
        padding: 10px;
    }

    .thumbnail {
        width: 60px;
        height: 45px;
    }

    .highlight-item {
        padding: 0.8rem;
    }
}

/* Contact Section */
.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-form .form-control {
    margin-bottom: 1rem;
}

/* Footer */
.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider,
    .carousel-item {
        height: 60vh;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

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

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-tag {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.service-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}

/* Service Category */
.service-category {
    margin-bottom: 5rem;
}

.service-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-content .lead {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.feature-item span {
    font-weight: 500;
    color: var(--dark-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-content {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .service-content h3 {
        font-size: 1.75rem;
    }

    .feature-item {
        padding: 0.75rem;
    }
}

/* Navbar Brand Styles */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    height: 60px;
    width: auto;
    margin: 5px 0;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
}

.brand-subtext {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 45px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .brand-subtext {
        font-size: 0.8rem;
    }
}

/* Company Profile Styles */
.profile-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000" opacity="0.05"/></svg>');
    opacity: 0.1;
}

.profile-header h1 {
    color: #2C3E50;
    margin-bottom: 1rem;
    position: relative;
}

.profile-header .lead {
    color: #34495e;
    font-size: 1.25rem;
    position: relative;
}

.experience-badge {
    background: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    pointer-events: none;
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.experience-badge .text {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-brands {
    background: white;
    position: relative;
}

.brand-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #3498DB;
}

.brand-card h4 {
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: 600;
}

.brand-card p {
    color: #7f8c8d;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498DB, #2C3E50);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.category-icon {
    font-size: 2.5rem;
    color: #3498DB;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.category-card h3 {
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 600;
}

.category-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #7f8c8d;
    transition: all 0.3s ease;
}

.category-card ul li:hover {
    color: #3498DB;
    padding-left: 5px;
}

.strength-card {
    text-align: center;
    padding: 35px;
    background: white;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #3498DB;
}

.strength-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #3498DB, #2C3E50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.strength-card h4 {
    color: #2C3E50;
    margin-bottom: 15px;
    font-weight: 600;
}

.strength-card p {
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .profile-header {
        padding: 60px 0 40px;
    }
    
    .experience-badge {
        margin-bottom: 30px;
    }
    
    .category-card {
        margin-bottom: 30px;
    }
    
    .brand-card {
        margin-bottom: 20px;
    }
    
    .strength-card {
        margin-bottom: 20px;
    }
}
