
/** ADD YOUR AWESOME CODES HERE **/

/* Dark Theme Global Styles */
.dark-theme {
    background: #0a0a0a;
    color: #ffffff;
}

.dark-theme .section.wb {
    background-color: #0a0a0a;
}

.dark-theme .section.lb {
    background-color: #111111;
}

.dark-theme .section.db {
    background-color: #0a0a0a;
}

/* Professional Home Section */
.main-banner-modern {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
}

.home-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.home-gradient-1 {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.5) 0%, transparent 70%);
    top: -300px;
    left: -300px;
    animation: home-float 25s ease-in-out infinite;
    filter: blur(100px);
}

.home-gradient-2 {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.5) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
    animation: home-float 30s ease-in-out infinite reverse;
    filter: blur(100px);
}

.home-gradient-3 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    filter: blur(120px);
    animation: home-float-center 35s ease-in-out infinite;
}

@keyframes home-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.15);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.85);
    }
}

@keyframes home-float-center {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    33% {
        transform: translate(calc(-50% + 40px), calc(-50% - 40px)) scale(1.15);
    }
    66% {
        transform: translate(calc(-50% - 30px), calc(-50% + 30px)) scale(0.85);
    }
}

.main-banner-modern .heading {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.heading-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.greeting-text {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.main-banner-modern .heading h1 {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 30px 0;
    text-transform: none;
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.quote-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.8;
    margin: 0 auto 40px;
    max-width: 700px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.main-banner-modern .cd-headline {
    margin: 30px 0 50px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.main-banner-modern .cd-headline span {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.main-banner-modern .cd-headline .cd-words-wrapper b {
    color: #667eea;
    font-weight: 600;
}

.home-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.arrow span {
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    animation: arrow-bounce 1.5s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrow-bounce {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive adjustments for home section */
@media (max-width: 991px) {
    .main-banner-modern .heading h1 {
        font-size: 56px;
    }
    
    .greeting-text {
        font-size: 20px;
    }
    
    .quote-text {
        font-size: 18px;
    }
    
    .main-banner-modern .cd-headline span {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .main-banner-modern {
        min-height: 500px;
    }
    
    .main-banner-modern .heading h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }
    
    .greeting-text {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .quote-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .main-banner-modern .cd-headline span {
        font-size: 24px;
    }
    
    .home-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 35px;
        font-size: 14px;
    }
    
    .home-gradient-1,
    .home-gradient-2,
    .home-gradient-3 {
        filter: blur(60px);
    }
}

/* Modern Services Section Styles */
.services-modern {
    padding: 100px 0;
    background: #111111;
    position: relative;
    overflow: hidden;
}

.services-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

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

.services-modern .section-title {
    margin-bottom: 80px;
}

.services-modern .section-title h3 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: -1px;
}

.services-modern .section-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon-wrapper {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.service-icon i {
    font-size: 45px;
    color: #ffffff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.service-card:hover .service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    animation: pulse 2s infinite;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover h3 {
    color: #667eea;
}

.service-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

/* Responsive adjustments */
@media (max-width: 991px) {
    .services-modern {
        padding: 80px 0;
    }
    
    .services-modern .section-title h3 {
        font-size: 36px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .services-modern {
        padding: 60px 0;
    }
    
    .services-modern .section-title {
        margin-bottom: 50px;
    }
    
    .services-modern .section-title h3 {
        font-size: 32px;
    }
    
    .services-modern .section-title p {
        font-size: 16px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon i {
        font-size: 35px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
    
    .service-card p {
        font-size: 14px;
    }
}

/* Animation for service cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

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

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

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* iOS Liquid Glass Testimonials Section */
.testimonials-glass {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.bg-gradient-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: float-gradient 20s ease-in-out infinite;
    filter: blur(80px);
}

.bg-gradient-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.4) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: float-gradient 25s ease-in-out infinite reverse;
    filter: blur(80px);
}

.bg-gradient-3 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    filter: blur(100px);
    animation: float-gradient-center 30s ease-in-out infinite;
}

@keyframes float-gradient {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes float-gradient-center {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    33% {
        transform: translate(calc(-50% + 30px), calc(-50% - 30px)) scale(1.1);
    }
    66% {
        transform: translate(calc(-50% - 20px), calc(-50% + 20px)) scale(0.9);
    }
}

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

.testimonials-glass .section-title {
    margin-bottom: 80px;
}

.testimonials-glass .section-title h3 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

.testimonials-glass .section-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.testimonial-glass-card {
    margin: 20px 15px;
    position: relative;
}

.glass-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 30px;
    padding: 50px 45px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-glass-card:hover .glass-content {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.glass-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
}

.glass-content::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-glass-card:hover .glass-content::after {
    opacity: 1;
}

.quote-mark {
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 35px 0;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonial-glass-card:hover .author-avatar {
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4),
                inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 5px 0;
    padding: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.author-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Owl Carousel Customization for Glass Testimonials */
.testimonials-glass .owl-carousel .owl-item {
    padding: 10px 0;
}

.testimonials-glass .owl-carousel .owl-dots {
    text-align: center;
    margin-top: 60px;
}

.testimonials-glass .owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonials-glass .owl-carousel .owl-dots .owl-dot:hover,
.testimonials-glass .owl-carousel .owl-dots .owl-dot.active {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.testimonials-glass .owl-carousel .owl-nav {
    margin-top: 40px;
}

.testimonials-glass .owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.testimonials-glass .owl-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.2);
}

.testimonials-glass .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
}

.testimonials-glass .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive adjustments for glass testimonials */
@media (max-width: 1200px) {
    .testimonials-glass .owl-carousel .owl-nav button.owl-prev {
        left: -50px;
    }
    
    .testimonials-glass .owl-carousel .owl-nav button.owl-next {
        right: -50px;
    }
}

@media (max-width: 991px) {
    .testimonials-glass {
        padding: 100px 0;
    }
    
    .testimonials-glass .section-title h3 {
        font-size: 40px;
    }
    
    .glass-content {
        padding: 40px 35px;
    }
    
    .testimonial-text {
        font-size: 17px;
    }
    
    .testimonials-glass .owl-carousel .owl-nav button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .testimonials-glass .owl-carousel .owl-nav button.owl-prev {
        left: -40px;
    }
    
    .testimonials-glass .owl-carousel .owl-nav button.owl-next {
        right: -40px;
    }
}

@media (max-width: 767px) {
    .testimonials-glass {
        padding: 80px 0;
    }
    
    .testimonials-glass .section-title {
        margin-bottom: 60px;
    }
    
    .testimonials-glass .section-title h3 {
        font-size: 36px;
    }
    
    .testimonials-glass .section-title p {
        font-size: 16px;
    }
    
    .glass-content {
        padding: 35px 25px;
        border-radius: 25px;
    }
    
    .quote-mark {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .quote-mark svg {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-text {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .author-info h4 {
        font-size: 18px;
    }
    
    .author-info span {
        font-size: 13px;
    }
    
    .testimonials-glass .owl-carousel .owl-nav {
        display: none;
    }
    
    .bg-gradient-1,
    .bg-gradient-2,
    .bg-gradient-3 {
        filter: blur(60px);
    }
}

/* Professional Portfolio Section Styles */
.portfolio-modern {
    padding: 100px 0;
    background: #111111;
}

.portfolio-modern .section-title {
    margin-bottom: 60px;
}

.portfolio-modern .section-title h3 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: -1px;
}

.portfolio-modern .section-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.portfolio-filters {
    margin-bottom: 50px;
    text-align: center;
}

.filter-button-group {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none;
}

.filter-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.filter-btn.active {
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

/* Ensure grid works with Isotope */
.portfolio-grid.isotope {
    display: block;
}

.portfolio-grid.isotope .portfolio-item {
    position: relative;
    float: left;
    width: calc(33.333% - 20px);
    margin: 0 10px 30px;
}

@media (max-width: 991px) {
    .portfolio-grid.isotope .portfolio-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .portfolio-grid.isotope .portfolio-item {
        width: calc(100% - 20px);
    }
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 250px;
}

/* Override Isotope hiding */
.portfolio-item.isotope-item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.portfolio-item.isotope-hidden {
    display: none !important;
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.portfolio-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover .portfolio-image-wrapper img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.portfolio-item:hover .portfolio-link {
    transform: scale(1);
}

.portfolio-link:hover {
    background: #333;
    color: #ffffff;
    transform: scale(1.1) rotate(90deg);
}

/* Responsive adjustments for portfolio */
@media (max-width: 991px) {
    .portfolio-modern {
        padding: 80px 0;
    }
    
    .portfolio-modern .section-title h3 {
        font-size: 36px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .filter-button-group {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .portfolio-modern {
        padding: 60px 0;
    }
    
    .portfolio-modern .section-title {
        margin-bottom: 40px;
    }
    
    .portfolio-modern .section-title h3 {
        font-size: 32px;
    }
    
    .portfolio-modern .section-title p {
        font-size: 16px;
    }
    
    .portfolio-filters {
        margin-bottom: 40px;
    }
    
    .filter-button-group {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .portfolio-link {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filter-button-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Professional About Section Styles */
.about-modern {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.about-modern .section-title {
    margin-bottom: 70px;
}

.about-modern .section-title h3 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: -1px;
}

.about-modern .section-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    padding-right: 40px;
}

.about-text {
    margin-bottom: 50px;
}

.about-text .lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.about-skills {
    margin-top: 40px;
}

.skill-item {
    margin-bottom: 30px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.skill-name {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-percent {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: width 1s ease-in-out;
    position: relative;
}

.skill-progress::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%);
    }
}

.about-image-wrapper {
    position: relative;
    padding-left: 40px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #f0f0f0;
    min-height: 500px;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

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

.badge-content {
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive adjustments for about section */
@media (max-width: 991px) {
    .about-modern {
        padding: 80px 0;
    }
    
    .about-modern .section-title h3 {
        font-size: 36px;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .about-image-wrapper {
        padding-left: 0;
    }
    
    .about-image {
        min-height: 400px;
    }
    
    .about-text .lead-text {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .about-modern {
        padding: 60px 0;
    }
    
    .about-modern .section-title {
        margin-bottom: 50px;
    }
    
    .about-modern .section-title h3 {
        font-size: 32px;
    }
    
    .about-modern .section-title p {
        font-size: 16px;
    }
    
    .about-content {
        margin-bottom: 40px;
    }
    
    .about-text {
        margin-bottom: 40px;
    }
    
    .about-text .lead-text {
        font-size: 17px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .about-skills {
        margin-top: 30px;
    }
    
    .skill-item {
        margin-bottom: 25px;
    }
    
    .skill-name {
        font-size: 14px;
    }
    
    .about-image {
        min-height: 350px;
        border-radius: 15px;
    }
    
    .floating-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .badge-number {
        font-size: 28px;
    }
    
    .badge-text {
        font-size: 11px;
    }
}

/* User-Friendly Payment Section Styles */
.payment-modern {
    padding: 100px 0;
    background: #111111;
    position: relative;
    overflow: hidden;
}

.payment-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.payment-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.payment-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.payment-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.payment-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    position: relative;
}

.payment-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.payment-icon i {
    font-size: 48px;
    color: #ffffff;
}

.payment-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: none;
    letter-spacing: -1px;
}

.payment-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 120px;
}

.feature-item i {
    font-size: 32px;
    color: #667eea;
    margin-bottom: 5px;
}

.feature-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-align: center;
}

.payment-button {
    display: inline-block;
    position: relative;
    padding: 20px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    margin: 30px 0;
}

.payment-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
    color: #ffffff;
}

.button-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-button i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.payment-button:hover i {
    transform: translateX(5px);
}

.button-shine {
    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;
}

.payment-button:hover .button-shine {
    left: 100%;
}

.payment-trust {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-text i {
    color: #667eea;
    font-size: 16px;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-methods span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 5px;
}

.payment-methods i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Responsive adjustments for payment section */
@media (max-width: 991px) {
    .payment-modern {
        padding: 80px 0;
    }
    
    .payment-content {
        padding: 50px 40px;
    }
    
    .payment-content h2 {
        font-size: 36px;
    }
    
    .payment-features {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .payment-modern {
        padding: 60px 0;
    }
    
    .payment-content {
        padding: 40px 30px;
        border-radius: 25px;
    }
    
    .payment-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .payment-icon i {
        font-size: 38px;
    }
    
    .payment-content h2 {
        font-size: 32px;
    }
    
    .payment-description {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .payment-features {
        flex-direction: column;
        gap: 25px;
        margin: 35px 0 40px;
    }
    
    .feature-item {
        min-width: auto;
    }
    
    .feature-item i {
        font-size: 28px;
    }
    
    .payment-button {
        padding: 16px 40px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
    
    .payment-trust {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 12px;
    }
    
    .payment-methods span {
        margin-right: 0;
        margin-bottom: 5px;
    }
}
