/* ============================================
   Modern Hero Area Styles
============================================ */

.hero__area-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

/* Gradient Background Animation */
.hero__gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #4facfe);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Shapes */
.hero__floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.service__card-featured-gold{
        background: linear-gradient(135deg, #b8860b, #ffd700)!important;
    color: #fff;
}

.hero__floating-shapes .shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.hero__floating-shapes .shape-1 {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero__floating-shapes .shape-2 {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero__floating-shapes .shape-3 {
    width: 100px;
    height: 100px;
    background: #fff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.hero__floating-shapes .shape-4 {
    width: 50px;
    height: 50px;
    background: #fff;
    transform: rotate(45deg);
    top: 30%;
    right: 25%;
    animation-delay: 3s;
}

.hero__floating-shapes .shape-5 {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 15px;
    bottom: 30%;
    right: 40%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(30px) rotate(240deg);
    }
}

/* Hero Content */
.hero__content-modern {
    position: relative;
    z-index: 2;
    color: #fff;
    top: 40px;
}

.hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero__badge i {
    color: #ffd700;
    margin-left: 8px;
}

.hero__title-modern {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.typed-text {
    position: relative;
}

.typed-text::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero__description {
    font-size: 18px;
    line-height: 1.8;
        color: #000000;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
}

/* Quick Services Tags */
.hero__services-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.service-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.service-tag i {
    margin-left: 8px;
}

/* Hero Buttons */
.hero__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.w-btn-gradient {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    color: #333;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.w-btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    color: #333;
}

.w-btn-outline {
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.w-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Hero Stats */
.hero__stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 5px;
    text-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Hero Illustration */
.hero__illustration {
    position: relative;
    z-index: 2;
}

.illustration-wrapper {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card img {
    width: 100%;
    border-radius: 15px;
}

.floating-card.card-1 {
    width: 350px;
    top: 50px;
    right: 100px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    width: 280px;
    top: 200px;
    right: 0;
    animation-delay: 2s;
}

.floating-card.card-3 {
    width: 300px;
    bottom: 50px;
    right: 150px;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    transform: translateY(5px);
}

.scroll-down i {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ============================================
   Modern Services Area
============================================ */

.services__area-creative {
    background: #f8f9fa;
}

.section__title-wrapper-modern {
    text-align: center;
}

.section__sub-title-modern {
    display: inline-block;
    background: linear-gradient(90deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section__sub-title-modern i {
    color: #667eea;
    margin-left: 8px;
}

.section__title-modern {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section__description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Cards */
.service__card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service__card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service__card-modern:hover::before {
    transform: scaleX(1);
}

.service__card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

/* Featured Card */
.service__card-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.service__card-featured .service__title-modern a,
.service__card-featured .service__description-modern,
.service__card-featured .service__features-list li {
    color: #fff;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 215, 0, 0.9);
    color: #333;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Service Icon */
.service__icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px !important;
    margin: 0 auto;
 
    font-size: 36px;
    color: #fff;
    transition: all 0.3s ease;
}

.gradient-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #ff6b9d 0%, #c86dd7 100%);
}

.gradient-cyan {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.gradient-red {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.service__card-modern:hover .service__icon-modern {
    transform: rotateY(360deg) scale(1.1);
}

/* Service Title */
.service__title-modern {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
        text-align: center;
}

.service__title-modern a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service__title-modern a:hover {
    color: #667eea;
}

/* Service Description */
.service__description-modern {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Service Features List */
.service__features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service__features-list li {
    padding: 10px 0;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service__features-list li i {
    color: #667eea;
    font-size: 16px;
}

/* Service Link */
.service__link-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service__link-modern:hover {
    gap: 15px;
    color: #764ba2;
}

/* ============================================
   Process Area
============================================ */

.grey-bg-2 {
    background: #f0f4f8;
}

.process__item-modern {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.process__number {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(102, 126, 234, 0.1);
    z-index: 0;
}

.process__icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process__item-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.process__item-modern:hover .process__icon-modern {
    transform: scale(1.1) rotate(360deg);
}

.process__title-modern {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.process__description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Portfolio Area
============================================ */

.portfolio__area-modern {
    background: #fff;
}

/* Portfolio Tabs */
.portfolio__tabs-modern {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.portfolio__tab {
    background: transparent;
    border: 2px solid #e0e0e0;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio__tab:hover,
.portfolio__tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #fff;
}

/* Portfolio Cards */
.portfolio__card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.portfolio__card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.portfolio__thumb-modern {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.portfolio__thumb-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio__card-modern:hover .portfolio__thumb-modern img {
    transform: scale(1.1);
}

/* Portfolio Overlay */
.portfolio__overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio__card-modern:hover .portfolio__overlay-modern {
    opacity: 1;
}

.portfolio__zoom,
.portfolio__link {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.portfolio__card-modern:hover .portfolio__zoom,
.portfolio__card-modern:hover .portfolio__link {
    transform: translateY(0);
}

.portfolio__zoom:hover,
.portfolio__link:hover {
    background: #ffd700;
    color: #333;
    transform: scale(1.1);
}

/* Portfolio Content */
.portfolio__content-modern {
    padding: 30px;
}

.portfolio__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.portfolio__category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.portfolio__category.gradient-green {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.portfolio__category.gradient-orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.portfolio__category.gradient-pink {
    background: linear-gradient(135deg, #ff6b9d 0%, #c86dd7 100%);
}
.portfolio__category.gradient-cyan {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}
.portfolio__category.gradient-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}
.portfolio__category.gradient-red {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}
.portfolio__category.gradient-purple {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.portfolio__date {
    color: #999;
    font-size: 13px;
}

.portfolio__title-modern {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio__title-modern a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.portfolio__title-modern a:hover {
    color: #667eea;
}

.portfolio__content-modern p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   Technology Stack Area
============================================ */

.tech__logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.tech__logo-item {
    text-align: center;
    transition: all 0.3s ease;
}

.tech__logo-item:hover {
    transform: translateY(-10px);
}

.tech__logo-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.tech__logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.tech__logo-item span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

/* ============================================
   Testimonials Area
============================================ */

.testimonial__card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin: 15px;
}

.testimonial__rating {
    margin-bottom: 20px;
}

.testimonial__rating i {
    color: #ffd700;
    font-size: 18px;
    margin-left: 3px;
}

.testimonial__text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial__author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testimonial__author-info span {
    font-size: 14px;
    color: #999;
}

/* ============================================
   CTA Area Modern
============================================ */

.cta__area-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.cta__gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #4facfe);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.8;
}

.cta__content-modern {
    color: #fff;
    position: relative;
    z-index: 2;
}

.cta__title-modern {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta__description-modern {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta__features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cta__features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.cta__features-list li i {
    color: #ffd700;
    font-size: 20px;
}

.cta__buttons-modern {
    position: relative;
    z-index: 2;
}

.w-btn-white-modern {
    background: #fff;
    color: #667eea;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.w-btn-white-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

.cta__phone-modern {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.cta__phone-modern:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.cta__phone-modern i {
    font-size: 24px;
}

.cta__phone-info span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.cta__phone-info strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

/* ============================================
   Blog Area Modern
============================================ */

.blog__card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.blog__card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog__thumb-modern {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog__thumb-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog__card-modern:hover .blog__thumb-modern img {
    transform: scale(1.1);
}

.blog__category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    z-index: 1;
}

.blog__content-modern {
    padding: 30px;
}

.blog__meta-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog__meta-modern span {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog__meta-modern i {
    color: #667eea;
}

.blog__title-modern {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog__title-modern a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog__title-modern a:hover {
    color: #667eea;
}

.blog__excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog__read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog__read-more:hover {
    gap: 15px;
    color: #764ba2;
}

/* ============================================
   Outline Button Modern
============================================ */

.w-btn-outline-modern {
    background: transparent;
    color: #667eea;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
}

.w-btn-outline-modern:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* ============================================
   Responsive Styles
============================================ */

@media (max-width: 1199px) {
    .hero__title-modern {
        font-size: 48px;
    }
    
    .section__title-modern {
        font-size: 40px;
    }
    
    .floating-card.card-1 {
        width: 300px;
    }
}

@media (max-width: 991px) {
    .hero__title-modern {
        font-size: 40px;
    }
    
    .section__title-modern {
        font-size: 36px;
    }
    
    .hero__illustration {
        margin-top: 50px;
    }
    
    .cta__title-modern {
        font-size: 32px;
    }
    
    .cta__buttons-modern {
        text-align: center;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero__title-modern {
        font-size: 32px;
    }
    
    .section__title-modern {
        font-size: 28px;
    }
    
    .hero__stats {
        gap: 30px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
    .floating-card {
        width: 250px !important;
    }
    
    .service__card-modern,
    .process__item-modern,
    .portfolio__card-modern,
    .blog__card-modern {
        margin-bottom: 30px;
    }
    
    .tech__logos-wrapper {
        gap: 40px;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .w-btn-gradient,
    .w-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero__title-modern {
        font-size: 28px;
    }
    
    .section__title-modern {
        font-size: 24px;
    }
    
    .hero__description,
    .section__description {
        font-size: 16px;
    }
    
    .cta__features-list {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================
   Additional Animations
============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
