:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #2FBEF6 0%, #1a9cd6 100%);
    --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
}

/* ============================================
   ENHANCED HERO SECTION
============================================ */
.slider-header {
    position: relative;
    overflow: hidden;
}

.slider-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41,41,98,0.05) 0%, rgba(47,190,246,0.08) 100%);
    pointer-events: none;
}

.hero_left .title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.hero_left .title span {
    display: block;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doc_btn {
    background: var(--secondary-gradient) !important;
    border: none !important;
    padding: 14px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.doc_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.doc_btn:hover::before {
    width: 300%;
    height: 300%;
}

.doc_btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ============================================
   ENHANCED REVIEW BOXES - REDESIGNED
============================================ */
.review-box {
    background: white !important;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    border: 2px solid transparent;
}

.review-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-gradient);
}

.review-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: #2FBEF6;
}

.review-box .google-review {
    background: white !important;
    padding: 15px 10px !important;
    margin-top: -50px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.review-box:hover .google-review {
    transform: scale(1.1);
}

.review-box h6 {
    color: #292962 !important;
    margin-top: 15px;
}

.review-box h5 {
    color: #2FBEF6 !important;
    font-size: 28px !important;
}

.review-box a {
    color: #292962 !important;
    font-size: 14px !important;
    position: relative;
}

.review-box a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2FBEF6;
    transition: width 0.3s ease;
}

.review-box a:hover::after {
    width: 100%;
}

/* Star Rating Animation */
.review-box::after {
    content: '⭐⭐⭐⭐⭐';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    opacity: 0.1;
    pointer-events: none;
}

/* ============================================
   FLOATING REVIEW BADGE (STICKY)
============================================ */
.floating-reviews {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-review-badge {
    background: white;
    border-radius: 15px;
    padding: 15px 12px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    min-width: 80px;
    text-align: center;
}

.floating-review-badge:hover {
    transform: translateX(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
    border-color: #2FBEF6;
}

.floating-review-badge img {
    width: 50px;
    height: auto;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.floating-review-badge:hover img {
    transform: scale(1.15) rotate(5deg);
}

.floating-review-badge .rating-text {
    font-size: 13px;
    font-weight: 700;
    color: #292962;
    margin: 0;
}

.floating-review-badge .stars {
    color: #FFD700;
    font-size: 14px;
    margin-top: 5px;
}

/* Hide floating reviews on mobile */
@media (max-width: 768px) {
    .floating-reviews {
        display: none;
    }
}

/* ============================================
   ENHANCED SERVICE CARDS
============================================ */
.content.content1 {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.content.content1::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(47,190,246,0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
    opacity: 0;
}

.content.content1:hover::before {
    opacity: 1;
    transform: translate(25%, 25%);
}

.content.content1:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: #2FBEF6;
}

.content.content1 .on-img {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f4ff 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.content.content1:hover .on-img {
    transform: scale(1.05) rotate(3deg);
}

.content.content1 h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #292962;
}

.content.content1 h3 a {
    color: #292962;
    text-decoration: none;
    transition: all 0.3s ease;
}

.content.content1:hover h3 a {
    color: #2FBEF6;
}

.btn_Apply {
    background: var(--secondary-gradient);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.btn_Apply::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn_Apply:hover::before {
    width: 300%;
    height: 300%;
}

.btn_Apply:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
}

/* ============================================
   ENHANCED HOW IT WORKS SECTION
============================================ */
.how_work {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.how_work:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: #2FBEF6;
}

.step_num {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: var(--secondary-gradient);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    margin-right: 10px;
    box-shadow: 0 4px 15px rgba(47,190,246,0.3);
}

/* ============================================
   ENHANCED REVIEW CAROUSEL
============================================ */
.review_page {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    margin: 10px;
    border-left: 4px solid #2FBEF6;
    transition: all 0.3s ease;
}

.review_page:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.review_rating_star {
    color: #FFD700;
    font-size: 18px;
}

/* ============================================
   TRUST INDICATORS
============================================ */
.social {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-align: center;
}

.social:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: #2FBEF6;
}

.whytrust_box {
    background: var(--secondary-gradient);
    color: white !important;
    border-radius: 50%;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 40px !important;
    box-shadow: 0 4px 20px rgba(47,190,246,0.3);
    transition: all 0.3s ease;
}

.social:hover .whytrust_box {
    transform: scale(1.1) rotate(10deg);
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Add floating animation to images */
.slider-header img {
    animation: float 3s ease-in-out infinite;
}

/* ============================================
   MOBILE OPTIMIZATIONS
============================================ */
@media (max-width: 768px) {
    .hero_left .title {
        font-size: 24px;
    }
    
    .review-box {
        min-width: 140px;
        padding: 20px 15px;
    }
    
    .content.content1 {
        margin-bottom: 20px;
    }
}

/* ============================================
   ENHANCED CITIES SECTION DESIGN
============================================ */

.cities-section-wrap {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f4ff 100%);
    position: relative;
    overflow: hidden;
}

.cities-section-wrap::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47,190,246,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #292962 0%, #2FBEF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7989;
    font-weight: 500;
}

/* Certificate Cards Grid */
.certificate-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cert-location-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cert-location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2FBEF6 0%, #1a9cd6 100%);
}

.cert-location-card.featured::before {
    height: 6px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

.cert-location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: #2FBEF6;
}

/* Certificate Header */
.cert-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2FBEF6 0%, #1a9cd6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(47,190,246,0.3);
    transition: all 0.3s ease;
}

.cert-location-card:hover .cert-icon {
    transform: scale(1.1) rotate(5deg);
}

.cert-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #292962;
    margin: 0;
    flex: 1;
}

.badge-popular {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255,215,0,0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Cities Container */
.cities-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    max-height: 180px;
    overflow: hidden;
    position: relative;
}

.city-tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f4ff 100%);
    border: 2px solid #e0e7ff;
    border-radius: 25px;
    color: #292962;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.city-tag:hover {
    background: linear-gradient(135deg, #2FBEF6 0%, #1a9cd6 100%);
    color: white;
    border-color: #2FBEF6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47,190,246,0.3);
}

.city-tag.international {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    position: relative;
}

.city-tag.international::before {
    content: '🌍';
    margin-right: 5px;
}

/* View More Button */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2FBEF6 0%, #1a9cd6 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(47,190,246,0.2);
}

.view-more-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(47,190,246,0.4);
    color: white;
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cities-cta-section {
    background: linear-gradient(135deg, #292962 0%, #2FBEF6 100%);
    color: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.cities-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cities-cta-section h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cities-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.btn-primary-custom {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #292962;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.5);
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .certificate-locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cert-header h3 {
        font-size: 1.2rem;
    }

    .cities-cta-section {
        padding: 30px 20px;
    }

    .cities-cta-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cert-location-card {
        padding: 20px;
    }

    .cert-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .city-tag {
        padding: 6px 12px;
        font-size: 13px;
    }
}

