/* Custom Stylish Cursor Styles */

/* Custom Image Cursor - Force Override */

/* Force cursor on specific elements */
.navbar, .hero, .services, .about, .portfolio, .contact, .footer {
    cursor: url('../img/your-cursor-image.png'), url('img/your-cursor-image.png'), auto !important;
}

.custom-cursor-follower {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
    transform: translate(-50%, -50%);
}

/* Cursor hover effects */
.custom-cursor.hover {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 20px #ffeb3b) brightness(1.2) saturate(1.3);
    animation: pulse 0.5s ease-in-out;
}

.custom-cursor-follower.hover {
    width: 70px;
    height: 70px;
    border-color: rgba(255, 193, 7, 0.6);
    border-width: 3px;
}

/* Cursor click effect */
.custom-cursor.click {
    animation: clickEffect 0.3s ease;
    filter:  drop-shadow(0 0 20px #ffeb3b) brightness(1.5) saturate(1.5);
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes clickEffect {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(0.8); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/* Cursor trail effect */
.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(255, 193, 7, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    animation: trailFade 0.5s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Special cursor for buttons and links */
.btn, a, button, .nav-link, .portfolio-filter-tab {
    cursor: none !important;
}

/* Magnetic effect for buttons */
.btn {
    transition: transform 0.3s ease;
}

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

/* Text cursor effect for input fields */
.custom-cursor.text {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.8)) hue-rotate(30deg);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Sparkle effect */
.sparkle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #ffc107;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9996;
    animation: sparkleAnim 1s ease-out forwards;
}

@keyframes sparkleAnim {
    0% {
        opacity: 1;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

/* Hide default cursor on mobile */
@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }
    .custom-cursor,
    .custom-cursor-follower,
    .cursor-trail,
    .sparkle {
        display: none !important;
    }
}

/* Additional hover effects for specific elements */
.navbar-brand:hover .custom-cursor,
.hero-title:hover .custom-cursor,
.text-warning:hover .custom-cursor {
   
}

/* Smooth transitions for all interactive elements */
.services-item,
.project-item,
.testimonial-item,
.contact-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-item:hover,
.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

/* Enhanced button hover effects */
.btn-warning:hover {
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.btn-outline-warning:hover {
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

/* Enhanced Services Cards Styling */
.services-item {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d) !important;
    border: 2px solid transparent !important;
    border-radius: 20px !important;
    padding: 2.5rem !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.services-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ffc107, #ffdd1a, #2e009b, #000f63);
    border-radius: 20px;
    padding: 2px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-item::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 18px;
    z-index: -1;
}

.services-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 193, 7, 0.2);
}

.services-item:hover::before {
    opacity: 1;
}

/* Enhanced Service Icons */
.services-inner-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ffc107, rgb(255, 212, 72));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.services-inner-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ffc107, #ffeb35, #080055, #000550);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-item:hover .services-inner-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
}

.services-item:hover .services-inner-icon::before {
    opacity: 1;
}

.services-inner-icon i {
    font-size: 2.5rem !important;
    color: #1a1a1a !important;
    font-weight: bold;
    transition: all 0.3s ease;
}

.services-item:hover .services-inner-icon i {
    color: #000000 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Enhanced Service Card Content */ 
.services-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffc107, #e9ba1e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.services-item:hover h4 {
    background: linear-gradient(45deg, #ffc107, #ffc400, #e9ba1e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.services-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.services-item:hover p {
    opacity: 1;
    transform: translateY(-2px);
}

/* Enhanced Service Buttons */
.services-item .btn {
    background: linear-gradient(45deg, #ffc107, #ffe600ee) !important;
    border: none !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;  
    border-radius: 25px !important;
    color: #1a1a1a !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.services-item .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.services-item .btn:hover::before {
    left: 100%;
}

.services-item .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.5);
    color: #ffffff !important;
}

/* Service Number Badge */
.service-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffc107, #fff235);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.services-item:hover .service-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

/* Feature Tags */
.service-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.services-item:hover .feature-tag {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.5);
    transform: translateY(-2px);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.services-item:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.services-item:nth-child(even) {
    animation: float 6s ease-in-out infinite reverse;
}

/* Pause animation on hover */
.services-item:hover {
    animation-play-state: paused;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .services-item {
        margin-bottom: 2rem;
        padding: 2rem !important;
    }

    .services-inner-icon {
        width: 80px;
        height: 80px;
    }

    .services-inner-icon i {
        font-size: 2rem !important;
    }

    .service-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -8px;
        right: -8px;
    }
}

/* Additional hover effects for the entire services section */
.services {
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(233, 30, 99, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

/* Override previous basic hover effects */
.services-item:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow:
        0 25px 50px rgba(255, 193, 7, 0.2),
        0 0 0 1px rgba(255, 193, 7, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    animation-play-state: paused;
}

/* About Slider Styles - Next Level Design */
.about-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    padding: 2rem;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 193, 7, 0.1),
        0 0 0 1px rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.1);
    max-width: 100%;
    margin: 0 auto;
}

.about-slide {
    padding: 1rem 0;
    width: 100%;
    max-width: 100%;
}

/* Enhanced Image Container Styles */
.about-img-container {
    position: relative;
    height: 450px;
    overflow: hidden;
  
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
   

    background-clip: padding-box;
}

.about-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ffc107, #ffeb3b, #ffc107);
  
    padding: 2px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-img-container:hover::before {
    opacity: 1;
}

.about-decorative-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(45deg, #ffc107, #ffeb3b, #ffd54f, #fff176);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.08;
    animation: rotate 25s linear infinite;
    filter: blur(1px);
}

.mission-bg {
    background: linear-gradient(45deg, #ffc107, #ffca28, #ffd54f, #ffeb3b);
}

.values-bg {
    background: linear-gradient(45deg, #ffc107, #ffb300, #ffa000, #ff8f00);
}

.team-bg {
    background: linear-gradient(45deg, #ffc107, #ffc400, #ffcc02, #ffd600);
}

@keyframes rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.about-main-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 18px;
    filter: brightness(0.9) contrast(1.1);
}

.about-img-container:hover .about-main-img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
}

/* Enhanced Badge Styles */
.about-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 50%, #fff176 100%);
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    z-index: 3;
    box-shadow:
        0 15px 40px rgba(255, 193, 7, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.about-badge:hover {
    transform: scale(1.15) rotate(8deg) translateY(-5px);
    box-shadow:
        0 25px 60px rgba(255, 193, 7, 0.6),
        0 10px 25px rgba(0, 0, 0, 0.4);
}

.mission-badge {
    background: linear-gradient(135deg, #ffc107 0%, #ffca28 50%, #ffd54f 100%);
}

.values-badge {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 50%, #ffa000 100%);
}

.team-badge {
    background: linear-gradient(135deg, #ffc107 0%, #ffc400 50%, #ffd600 100%);
}

.badge-content h2 {
    font-weight: 900;
    line-height: 1;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 2.5rem;
}

.badge-content p {
    font-size: 0.9rem;
    margin: 0;
    color: #2d2d2d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Content Styles */
.about-content {
    padding-left: 1.5rem;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ffc107, #ffeb3b, #fff176);
    border-radius: 2px;
    opacity: 0.6;
}

.slide-indicator {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.slide-number {
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 50%, #fff176 100%);
    color: #1a1a1a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    box-shadow:
        0 8px 25px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.slide-number:hover {
    transform: scale(1.1) rotate(360deg);
}

.slide-title {
    color: #ffc107;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #ffc107, #ffeb3b);
    border-radius: 2px;
}

/* Features Grid */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.5rem;
}

.feature-item span {
    color: #fff;
    font-weight: 500;
}

/* Mission Stats */
.mission-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(0, 188, 212, 0.3);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.stat-box:hover {
    background: rgba(0, 188, 212, 0.2);
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.9rem;
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(360deg);
}

.value-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.value-item h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Team Expertise */
.team-expertise {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expertise-item {
    background: rgba(255, 152, 0, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 152, 0, 0.3);
}

.expertise-label {
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(45deg, #ff9800, #ff5722);
    border-radius: 10px;
    transition: width 2s ease;
    position: relative;
}

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

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

/* Next Level Navigation Styles */
.about-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 50%, #fff176 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: all;
    box-shadow:
        0 10px 30px rgba(255, 193, 7, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

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

.nav-btn:hover {
    transform: scale(1.15) rotate(360deg);
    box-shadow:
        0 15px 40px rgba(255, 193, 7, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.4);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Enhanced Slide Dots */
.slide-dots {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1rem;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 193, 7, 0.3);
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.dot.active::before,
.dot:hover::before {
    width: 100%;
    height: 100%;
}

.dot.active,
.dot:hover {
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    transform: scale(1.3);
    box-shadow:
        0 5px 15px rgba(255, 193, 7, 0.4),
        0 0 0 3px rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.dot.active {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow:
            0 5px 15px rgba(255, 193, 7, 0.4),
            0 0 0 3px rgba(255, 193, 7, 0.1);
    }
    50% {
        box-shadow:
            0 8px 25px rgba(255, 193, 7, 0.6),
            0 0 0 6px rgba(255, 193, 7, 0.2);
    }
}

/* Enhanced Responsive Styles for About Slider */
@media (max-width: 1200px) {
    .about-slider-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .about-content {
        padding-left: 1rem;
    }

    .about-img-container {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .about-slider-container {
        padding: 1.2rem;
        border-radius: 20px;
    }

    .about-content {
        padding-left: 0.8rem;
        margin-top: 1.5rem;
    }

    .about-img-container {
        height: 350px;
        margin-bottom: 1rem;
    }

    .nav-btn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .slide-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about-slider-container {
        padding: 1rem;
        margin: 0 0.5rem;
        border-radius: 15px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .about-content::before {
        display: none;
    }

    .about-img-container {
        height: 280px;
        margin-bottom: 1.5rem;
    }

    .about-badge {
        bottom: 15px;
        right: 15px;
        padding: 1.2rem 1rem;
    }

    .badge-content h2 {
        font-size: 2rem;
    }

    .mission-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-features {
        gap: 0.8rem;
    }

    .feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .about-slider-nav {
        padding: 0 0.5rem;
    }

    .slide-indicator {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .slide-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .slide-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .slide-title::after {
        width: 30px;
        height: 2px;
    }

    .slide-dots {
        gap: 1rem;
        margin-top: 2rem;
    }

    .dot {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 576px) {
    .about-slider-container {
        padding: 0.8rem;
        margin: 0 0.25rem;
    }

    .about-slide {
        padding: 0.5rem 0;
    }

    .about-img-container {
        height: 250px;
    }

    .about-badge {
        bottom: 10px;
        right: 10px;
        padding: 1rem 0.8rem;
    }

    .badge-content h2 {
        font-size: 1.8rem;
    }

    .badge-content p {
        font-size: 0.8rem;
    }

    .slide-indicator {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .slide-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slide-title {
        font-size: 0.9rem;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .value-item {
        padding: 1rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
    }

    .mission-stats {
        gap: 0.8rem;
    }

    .stat-box {
        padding: 1rem;
    }

    .stat-box h3 {
        font-size: 1.5rem;
    }
}

/* Container fixes */
.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

#about .container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure no horizontal overflow */
.about-slide .row {
    margin-left: 0;
    margin-right: 0;
}

.about-slide .col-lg-6 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Services Page Enhanced Styling */
.service-detail-item {
    position: relative;
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a, #2d2d2d) !important;
    border: 2px solid transparent !important;
    border-radius: 25px !important;
    padding: 2.5rem !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(255, 193, 7, 0.1);
    backdrop-filter: blur(10px);
}

.service-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ffc107, #ffeb3b, #fff176, #ffd54f);
    border-radius: 25px;
    padding: 2px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-detail-item::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a, #2d2d2d);
    border-radius: 23px;
    z-index: -1;
}

.service-detail-item:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(255, 193, 7, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-detail-item:hover::before {
    opacity: 1;
}

/* Enhanced Service Icons */
.service-icon {
    position: relative;
    text-align: center;
    margin-bottom: 2rem !important;
}

.service-icon i {
    background: linear-gradient(135deg, #ffc107, #ffeb3b, #fff176);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(255, 193, 7, 0.3));
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.service-detail-item:hover .service-icon::before {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1.2) rotate(360deg);
}

.service-detail-item:hover .service-icon i {
    transform: scale(1.1) rotateY(360deg);
    filter: drop-shadow(0 8px 25px rgba(255, 193, 7, 0.5));
}

/* Enhanced Service Titles */
.service-detail-item h3 {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    background: linear-gradient(45deg, #ffc107, #ffeb3b, #fff176);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}

.service-detail-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #ffc107, #ffeb3b);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-detail-item:hover h3::after {
    width: 100px;
}

/* Enhanced Service Descriptions */
.service-detail-item p {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.service-detail-item:hover p {
    opacity: 1;
    transform: translateY(-2px);
}

/* Enhanced Service Lists */
.service-detail-item ul {
    margin-bottom: 2rem !important;
}

.service-detail-item ul li {
    padding: 0.8rem 0 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    position: relative;
    padding-left: 2rem !important;
}

.service-detail-item ul li:hover {
    background: rgba(255, 193, 7, 0.05);
    transform: translateX(10px);
    border-radius: 8px;
    padding-left: 2.5rem !important;
}

.service-detail-item ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem !important;
    transition: all 0.3s ease;
}

.service-detail-item ul li:hover i {
    transform: translateY(-50%) scale(1.2);
    color: #ffeb3b !important;
}

/* Enhanced Service Buttons */
.service-detail-item .btn {
    background: linear-gradient(135deg, #ffc107, #ffeb3b, #fff176) !important;
    border: none !important;
    padding: 15px 35px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border-radius: 30px !important;
    color: #1a1a1a !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow:
        0 8px 25px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail-item .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.service-detail-item .btn:hover::before {
    left: 100%;
}

.service-detail-item .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(255, 193, 7, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #0a0a0a !important;
}

/* Floating Animation for Services */
.service-detail-item:nth-child(odd) {
    animation: serviceFloat 8s ease-in-out infinite;
}

.service-detail-item:nth-child(even) {
    animation: serviceFloat 8s ease-in-out infinite reverse;
}

@keyframes serviceFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    50% {
        transform: translateY(-15px) rotateX(2deg);
    }
}

.service-detail-item:hover {
    animation-play-state: paused;
}

/* Service Price/Quote Section */
.service-price {
    margin-top: 2rem !important;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 193, 7, 0.2);
    position: relative;
}

.service-price::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #ffc107, #ffeb3b);
    transition: width 0.3s ease;
}

.service-detail-item:hover .service-price::before {
    width: 100px;
}

/* Enhanced Background Effects */
.service-detail-item::after {
    background:
        linear-gradient(145deg, #0a0a0a, #1a1a1a, #2d2d2d),
        radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 235, 59, 0.03) 0%, transparent 50%);
}

/* Service Categories Styling */
.service-detail-item[data-category="marketing"] {
    border-left: 4px solid #ffc107;
}

.service-detail-item[data-category="development"] {
    border-left: 4px solid #ffeb3b;
}

.service-detail-item[data-category="design"] {
    border-left: 4px solid #fff176;
}

.service-detail-item[data-category="creative"] {
    border-left: 4px solid #ffd54f;
}

/* Responsive Design for Services Page */
@media (max-width: 1200px) {
    .service-detail-item {
        padding: 2rem !important;
    }

    .service-icon i {
        font-size: 3.5rem !important;
    }

    .service-icon::before {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 992px) {
    .service-detail-item {
        padding: 1.8rem !important;
        margin-bottom: 2rem;
    }

    .service-detail-item h3 {
        font-size: 1.6rem !important;
    }

    .service-icon i {
        font-size: 3rem !important;
    }

    .service-icon::before {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .service-detail-item {
        padding: 1.5rem !important;
        border-radius: 20px !important;
        margin-bottom: 1.5rem;
    }

    .service-detail-item h3 {
        font-size: 1.4rem !important;
        text-align: center;
    }

    .service-icon {
        text-align: center;
        margin-bottom: 1.5rem !important;
    }

    .service-icon i {
        font-size: 2.5rem !important;
    }

    .service-icon::before {
        width: 80px;
        height: 80px;
    }

    .service-detail-item ul li {
        padding: 0.6rem 0 !important;
        font-size: 0.95rem !important;
    }

    .service-detail-item .btn {
        width: 100%;
        padding: 12px 25px !important;
        font-size: 0.95rem !important;
    }

    .service-detail-item:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

@media (max-width: 576px) {
    .service-detail-item {
        padding: 1.2rem !important;
        border-radius: 15px !important;
    }

    .service-detail-item h3 {
        font-size: 1.3rem !important;
    }

    .service-icon i {
        font-size: 2.2rem !important;
    }

    .service-icon::before {
        width: 70px;
        height: 70px;
    }

    .service-detail-item p {
        font-size: 1rem !important;
    }

    .service-detail-item ul li {
        padding: 0.5rem 0 !important;
        font-size: 0.9rem !important;
        padding-left: 1.5rem !important;
    }

    .service-detail-item ul li:hover {
        padding-left: 2rem !important;
    }
}

/* Services Page Background Enhancement */
.container-fluid.py-5.bg-dark {
    background:
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%),
        radial-gradient(circle at 25% 25%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 235, 59, 0.05) 0%, transparent 50%) !important;
    position: relative;
    overflow: hidden;
}

.container-fluid.py-5.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 49%, rgba(255, 193, 7, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255, 235, 59, 0.02) 50%, transparent 51%);
    pointer-events: none;
    z-index: 0;
}

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

/* Service Number Badge for Services Page */
.service-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107, #ffeb3b, #fff176);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    color: #1a1a1a;
    box-shadow:
        0 10px 30px rgba(255, 193, 7, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-detail-item:hover .service-number {
    transform: scale(1.2) rotate(360deg) translateY(-5px);
    box-shadow:
        0 15px 40px rgba(255, 193, 7, 0.7),
        0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Service Features Tags for Services Page */
.service-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem !important;
}

.service-features .feature-tag {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.4);
    color: #ffc107;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-item:hover .service-features .feature-tag {
    background: rgba(255, 193, 7, 0.25);
    border-color: rgba(255, 193, 7, 0.6);
    transform: translateY(-3px);
    color: #ffeb3b;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.service-features .feature-tag:nth-child(1) {
    animation-delay: 0.1s;
}

.service-features .feature-tag:nth-child(2) {
    animation-delay: 0.2s;
}

.service-features .feature-tag:nth-child(3) {
    animation-delay: 0.3s;
}

/* Enhanced Glow Effects for Services */
.service-detail-item:hover {
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(255, 193, 7, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 193, 7, 0.2) !important;
}

/* Service Category Border Colors */
.service-detail-item[data-category="marketing"]:hover {
    border-left-color: #ffc107 !important;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        -5px 0 20px rgba(255, 193, 7, 0.3);
}

.service-detail-item[data-category="development"]:hover {
    border-left-color: #ffeb3b !important;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(255, 235, 59, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        -5px 0 20px rgba(255, 235, 59, 0.3);
}

.service-detail-item[data-category="design"]:hover {
    border-left-color: #fff176 !important;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(255, 241, 118, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        -5px 0 20px rgba(255, 241, 118, 0.3);
}

.service-detail-item[data-category="creative"]:hover {
    border-left-color: #ffd54f !important;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(255, 213, 79, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        -5px 0 20px rgba(255, 213, 79, 0.3);
}

/* About Page Enhanced Styling */

/* Story Section */
.story-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.story-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
}

.story-badge:hover {
    transform: scale(1.1) rotate(5deg);
}

.story-highlights .highlight-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

.story-highlights .highlight-item:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateX(10px);
}

/* Mission Section */
.mission-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.1), rgba(255, 235, 59, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-img:hover .mission-overlay {
    opacity: 1;
}

.mission-badge {
    background: rgba(255, 193, 7, 0.9);
    padding: 2rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.mission-points .point-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.mission-points .point-item:hover {
    transform: translateX(10px);
}

/* Approach Section */
.approach-item {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.approach-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.approach-item:hover::before {
    opacity: 0.05;
}

.approach-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
}

.approach-icon {
    position: relative;
    display: inline-block;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.approach-item:hover .icon-circle {
    transform: scale(1.1) rotate(360deg);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #1a1a1a;
    color: #ffc107;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid #ffc107;
}

/* Team Section */
.team-member {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
}

.member-img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    overflow: hidden;
    border: 4px solid #ffc107;
    transition: all 0.3s ease;
}

.member-img:hover {
    border-color: #ffeb3b;
    transform: scale(1.05);
}

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

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 193, 7, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.member-img:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffc107;
    color: #1a1a1a;
    transform: scale(1.1);
}

.team-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
}

.team-stat:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-5px);
}

.team-stat h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

/* Value Items Enhanced */
.value-item {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.value-item:hover::before {
    opacity: 0.05;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-item:hover .value-icon i {
    transform: scale(1.1) rotateY(360deg);
    transition: all 0.5s ease;
}

/* CTA Section */
.cta-buttons .btn {
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
}

.cta-buttons .btn-warning:hover {
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.cta-buttons .btn-outline-warning:hover {
    background: #ffc107;
    color: #1a1a1a;
    border-color: #ffc107;
}

/* Owl Carousel Custom Styles */
.about-carousel .owl-stage-outer {
    overflow: visible;
}

.about-carousel .owl-item {
    opacity: 0.7;
    transition: all 0.5s ease;
}

.about-carousel .owl-item.active {
    opacity: 1;
}

/* Animation for slide content */
.about-slide {
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
