
        :root {
            --primary:#e8511e;
            --primary-dark: #4F46E5;
            --secondary: #e8511e;
            --accent: #14B8A6;
            --dark: #0F172A;
            --dark-light: #1E293B;
            --light: #F8FAFC;
            --text: #0F172A;
            --text-secondary: #00000;
            --success: #10B981;
            --warning: #F59E0B;
            --primary-blue: #1e3a8a;
            --secondary-blue: #3b82f6;
            --accent-orange: #f97316;
            --dark-black: #1a1a1a;
            --text-dark: #2d3748;
            --text-body: #4a5568;
            --text-light: #718096;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-color: #e2e8f0;
            --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            --gradient-orange: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
            --gradient-mixed: linear-gradient(135deg, #1e3a8a 0%, #f97316 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            background: var(--light);
            font-weight: 400;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .display-font {
            font-family: 'Space Grotesk', monospace;
            font-weight: 700;
            letter-spacing: -0.03em;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--light);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--primary), var(--secondary));
            border-radius: 5px;
        }

         /* Navbar */
.custom-navbar {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(99,102,241,0.1);
}

.custom-navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.95);
}

/* Nav links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text) !important;
    padding: 0.75rem 1.25rem !important;
    position: relative;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

/* Hover underline effect */
.navbar-nav .nav-link::before {
    content:'';
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:0;
    height:2px;
    background: linear-gradient(90deg,var(--primary),var(--secondary));
    transition: width 0.3s ease;
    border-radius:2px;
}
.navbar-nav .nav-link:hover::before {
    width:70%;
}


        /* CTA Button */
        .btn-cta {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 0.85rem 2rem;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
            font-size: 0.95rem;
            letter-spacing: 0.02em;
        } 

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
            color: white;
        }

        /* Hero Section */
        .hero-section {
            margin-top: 80px;
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
            color: white;
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 60%);
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-50px, 50px) rotate(180deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-family: 'Outfit', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
            font-weight: 400;
            line-height: 1.6;
        }

        .hero-gradient-text {
            background: orange;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { filter: hue-rotate(0deg); }
            50% { filter: hue-rotate(20deg); }
        }

        .video-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        /* Section Styles */
        .section-padding {
            padding: 6rem 0;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            letter-spacing: -0.03em;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 3px;
        }

        .section-subtitle {
            color: black;
            font-size: 1.15rem;
            margin-bottom: 3rem;
            font-weight: 400;
        }

        /* Service Cards */ 
        .service-card {
            background: orange;
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(99, 102, 241, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
            border-color: var(--primary);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 75px;
            height: 75px;
            background: black;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: white;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotate(5deg) scale(1.05);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 700;
        }

        .service-card p {
            color: black;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Process Steps */
        .process-step {
            background: white;
            border-radius: 20px;
            padding: 0.5rem;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            border: 2px solid rgba(99, 102, 241, 0.1);
        }

        .process-step:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.12);
            border-color: var(--primary);
        }

        .process-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
            font-family: 'Space Grotesk', monospace;
        }

        .process-step h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 700;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--dark), var(--dark-light));
            color: white;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
        }

        .stat-item {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            background: orange;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 500;
        }
        .why-rankup{
            background: #b8d2e8;
        }

        /* Portfolio Grid */
        .portfolio-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 4/3;
            background: var(--text-secondary);
            cursor: pointer;
            border: 2px solid rgba(99, 102, 241, 0.1);
            transition: all 0.3s ease;
        }

        .portfolio-item:hover {
            transform: scale(1.02);
            border-color: var(--primary);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(236, 72, 153, 0.95));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-info {
            text-align: center;
            color: white;
            padding: 2rem;
        }

        .portfolio-info h4 {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .portfolio-info p {
            font-size: 1rem;
            opacity: 0.95;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            height: 100%;
            border: 2px solid rgba(99, 102, 241, 0.1);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.12);
            border-color: var(--primary);
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-weight: 400;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            font-family: 'Space Grotesk', monospace;
        }

        .author-info h5 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            color: var(--dark);
            font-weight: 700;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
        }

        .stars {
            color: #FBBF24;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        /* FAQ Section */
        .accordion-button {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark);
            background: white;
            border-radius: 12px !important;
            padding: 1.5rem;
        }

        .accordion-item {
            border: 2px solid rgba(99, 102, 241, 0.1);
            border-radius: 12px !important;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
            border-color: var(--primary);
        }

        .accordion-body {
            padding: 1.5rem;
            font-size: 1rem;
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark), var(--dark-light));
            color: white;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
            /*animation: pulse 15s ease-in-out infinite;*/
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.2) rotate(180deg); }
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            letter-spacing: -0.03em;
        }

       .rankup-footer {
    background: #000;
    color: #ccc;
    
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 40px;
}

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile (2 columns) */
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.footer-col {
    border-right: 1px solid #222;
    padding-right: 20px;
}

.footer-col:last-child {
    border-right: none;
}

.footer-col h6 {
    color: #fff;
    /*font-size: 14px;*/
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: white;
    /*font-size: 13px;*/
    margin-bottom: 8px;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ff7a00;
}

.news-logos img {
    width: 70px;
    margin-right: 10px;
    background: #fff;
    padding: 8px;
    border-radius: 50%;
}

/* About Section */
.footer-about {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 35px 0;
    margin-top: 40px;
}

.footer-about-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-logo img {
    max-width: 100px;
}

/* Text */
.footer-about-content p {
    color:white;
    font-size: 14px;
    line-height: 1.8;
    max-width: 850px;
    margin-bottom: 15px;
}

.footer-about-content strong {
    color: #fff;
}

/* Contact Row */
.footer-contact span {
    margin-right: 30px;
    color: #ff7a00;
    display: inline-flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 8px;
    font-size: 14px;
}
@media (max-width: 768px) {
    .footer-about-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact span {
        display: block;
        margin-bottom: 8px;
    }
}


/* Bottom */
.footer-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-links a {
    margin-left: 15px;
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff7a00;
}


        /* Badge Styles */
        .badge {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }

            .mega-menu-content {
                position: relative;
                box-shadow: none;
                padding: 1.5rem;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }
        .why-rankup-card{
            background: black;
            border-radius: 50px;
        }
        .why-rankup-card p, .why-rankup-card h4{
            color:white !important;
        }
        
        
        
        
        /* Section Base */
.process-section {
    position: relative;
    z-index: 1;
}

/* Process Card */
.process-step {
    background: #fff;
    border-radius: 16px;
    
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Number Style */
.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    animation: pulse 2.5s infinite;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(99,102,241,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(99,102,241,0); }
    100% { box-shadow: 0 0 0 0 rgba(99,102,241,0); }
}

.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease forwards;
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Floating Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 12s infinite ease-in-out;
    z-index: 0;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: #6366f1;
    top: 10%;
    left: 5%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #4f46e5;
    bottom: 15%;
    right: 8%;
    animation-duration: 18s;
}

.shape-3 {
    width: 90px;
    height: 90px;
    background: #818cf8;
    top: 50%;
    right: 25%;
    animation-duration: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
}





.google-review-section {
    background: #f8f9fa;
}

/* Google Header */
.google-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.google-header img {
    height: 28px;
}

/* Rating Summary */
.google-rating-summary h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.rating-stars {
    color: #fbbc04;
    font-size: 20px;
}

.google-rating-summary p {
    color: #5f6368;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Actions */
.google-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-google-review {
    background: #1a73e8;
    color: #fff;
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-google-review:hover {
    background: #155ec3;
    transform: translateY(-2px);
    color: #fff;
}

.view-all {
    color: #1a73e8;
    font-size: 14px;
    text-decoration: none;
    align-self: center;
}

.view-all:hover {
    text-decoration: underline;
}

/* Review Card */
.google-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Reviewer */
.review-top {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1a73e8;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-meta {
    font-size: 13px;
    color: #70757a;
}

/* Stars */
.review-stars {
    color: #fbbc04;
    font-size: 14px;
    margin-bottom: 8px;
}

.review-stars span {
    color: #70757a;
    font-size: 12px;
    margin-left: 6px;
}

/* Text */
.review-text {
    font-size: 15px;
    color: #3c4043;
    line-height: 1.6;
}

/* Badge */
.google-badge {
    margin-top: 14px;
    font-size: 13px;
    color: #188038;
    font-weight: 500;
}





.client-logos-section {
    padding: 80px 0;
    background: #0f172a;
    color: #fff;
    overflow: hidden;
}

.client-logos-section h3 {
    font-weight: 600;
    opacity: 0.9;
}

/* Marquee */
.logo-marquee {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

/* Gradient fade edges */
.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, #0f172a 0%, transparent 100%);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, #0f172a 0%, transparent 100%);
}

/* Track */
.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

/* Card Item */
.logo-item {
    flex: 0 0 auto;
    padding: 0 18px;
}

.logo-item img {
    width: 300px;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.logo-item img:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.55);
}

/* Animation */
@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on Hover */
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-item img {
        width: 240px;
        height: 130px;
    }
}




.authority-marquee {
    background: #000000;
    overflow: hidden;
    padding: 18px 0;
    position: relative;
    border-top: 2px solid #ff7a00;
    border-bottom: 2px solid #ff7a00;
}

.authority-track {
    display: flex;
    width: max-content;
    animation: scrollText 22s linear infinite;
}

.authority-track span {
    white-space: nowrap;
    color: yellow;
    font-size: 18px;
    font-weight: 700;
    padding: 0 32px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Animation */
@keyframes scrollText {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on Hover */
.authority-marquee:hover .authority-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .authority-track span {
        font-size: 15px;
        padding: 0 22px;
    }
}


/*pricing section*/
/* ===== PRICING SECTION ENHANCEMENTS ===== */
#service-pricing {
    background: radial-gradient(circle at top, #f0f7ff, #f8f9fb);
}

/* CARD BASE */
.pricing-card {
    background: linear-gradient(145deg, #ffffff, #f3f6fb);
    padding: 32px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.12);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* GRADIENT GLOW EFFECT */
.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(13,110,253,0.15),
        transparent
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

/* HOVER LIFT */
.pricing-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.25);
}

/* FEATURED CARD */
.pricing-card.featured {
    background: linear-gradient(160deg, #0d6efd, #6610f2);
    color: #fff;
}

.pricing-card.featured .pricing-list li span,
.pricing-card.featured .plan-title {
    color: #fff;
}

/* POPULAR BADGE */
.pricing-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    box-shadow: 0 10px 25px rgba(255,122,24,0.4);
}

/* PLAN TITLE */
.plan-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FEATURED TITLE COLOR */
.pricing-card.featured .plan-title {
    -webkit-text-fill-color: #fff;
}

/* PRICING LIST */
.pricing-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px dashed rgba(0,0,0,0.15);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* FEATURED LIST */
.pricing-card.featured .pricing-list li {
    border-bottom: 1px dashed rgba(255,255,255,0.35);
}

/* LIST ITEM HOVER */
.pricing-list li:hover {
    transform: translateX(6px);
}

/* PRICE HIGHLIGHT */
.pricing-list li span {
    font-weight: 700;
    color: #0d6efd;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FEATURED PRICE */
.pricing-card.featured .pricing-list li span {
    -webkit-text-fill-color: #fff;
}

/* BUTTONS */
.pricing-card .btn {
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 18px;
    transition: all 0.35s ease;
}

/* PRIMARY BUTTON */
.pricing-card .btn-primary {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border: none;
}

.pricing-card .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(13,110,253,0.5);
}

/* OUTLINE BUTTON */
.pricing-card .btn-outline-primary {
    border: 2px solid #0d6efd;
    color: #0d6efd;
}

.pricing-card .btn-outline-primary:hover {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    transform: scale(1.05);
}

/* SMOOTH ENTRANCE ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    animation: fadeUp 0.9s ease forwards;
}
/* FORCE EQUAL HEIGHT */
#service-pricing .row {
    display: flex;
    flex-wrap: wrap;
}

.pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* PUSH CTA BUTTONS TO BOTTOM */
.pricing-card .btn {
    margin-top: auto;
}
/* FEATURED CARD CTA FIX */
.pricing-card.featured .btn-outline-primary {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.pricing-card.featured .btn-outline-primary:hover {
    background: #fff;
    color: #0d6efd;
}

/* PRIMARY CTA ON FEATURED CARD */
.pricing-card.featured .btn-primary {
    background: #ffffff;
    color: #0d6efd;
    font-weight: 700;
}

.pricing-card.featured .btn-primary:hover {
    background: #f1f5ff;
    color: #0d6efd;
    box-shadow: 0 15px 35px rgba(255,255,255,0.4);
}
/* ENSURE ALL CARDS SAME HEIGHT */
#service-pricing .row {
    display: flex;
    flex-wrap: wrap;
}

.pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* PRICING LIST TAKES REMAINING SPACE */
.pricing-list {
    flex-grow: 1;
}

/* CTA CONTAINER */
.pricing-card .btn {
    width: 100%;
}

/* UNIFORM BUTTON SPACING */
.pricing-card .btn-outline-primary {
    margin-top: 16px;
}

.pricing-card .btn-primary {
    margin-top: 10px;
}
.rankup-footer .callFloat {
    position: fixed;
    left: 10px;
    bottom: 70px;
    z-index: 99999999999;
    width: auto;
}
.rankup-footer .flot {
    position: fixed;
    bottom: 10px;
    left: 15px;
    z-index: 99999999999;
    width: auto;
}

/* STICKY SOCIAL CONTAINER */
.sticky-social {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

/* SOCIAL BUTTON */
.sticky-social .social {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: all 0.35s ease;
    text-decoration: none;
}

/* HOVER ANIMATION */
.sticky-social .social:hover {
    transform: translateX(8px) scale(1.1);
}

/* BRAND COLORS */
.social.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}


.social.call {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
}

.social.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social.facebook {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
}
.social.twitter {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}
.social.linkedin {
    background: linear-gradient(135deg, #0a66c2, #004182);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .sticky-social {
        left: auto;
        right: 15px;
        top: auto;
        bottom: 80px;
        transform: none;
        flex-direction: column;
    }

    .sticky-social .social {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}




.find-us-logos.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.find-us-logos a img {
    width: 90px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 6px;
}

.find-us-logos a img:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .find-us-logos.grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .find-us-logos a img {
        width: 70px;
    }
}

.theme-color { color: #ff5a00; } /* Replace with your theme color */

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}

/* Desktop hover for dropdowns */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu { display: block; }
  .dropdown-submenu:hover > .dropdown-menu { display: block; }
}


/*market area */

    .breadcrumb-section {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.breadcrumb-content h1 {
    color: #ffffff;
}

.text-accent {
    color: #e8511e;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #1e72b7;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-tagline {
    opacity: 0.8;
}

.locations-folder-section {
    background: #f8fafc;
}

/* COMMON FOLDER */
.folder-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.folder-item i {
    font-size: 28px;
    color: #facc15;
}

/* STATE FOLDER (MAIN ROW) */
.folder-state {
    width: 100%;
    padding: 22px 24px;
    font-size: 20px;
    background: linear-gradient(135deg, #18203d, #18203d, #2c5364);
    color: #ffffff;
}

.folder-state i {
    color: #fde047;
}

/* HOVER */
.folder-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.folder-state:hover {
    transform: none;
}

/*market area end */

/*contact area*/

/* ================= GLOBAL ================= */
.contact-section,
.contact-details-section {
    position: relative;
    overflow: hidden;
}

/* Decorative background shapes */
.contact-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232,81,30,0.15), transparent 70%);
    border-radius: 50%;
}

.contact-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(24,32,61,0.18), transparent 70%);
    border-radius: 50%;
}

/* ================= FORM CARD ================= */
.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    position: relative;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #e8511e, #18203d);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.form-control {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.form-control:focus {
    border-color: #e8511e;
    box-shadow: 0 0 0 0.15rem rgba(232,81,30,0.15);
}

/* ================= SIDEBAR CTA ================= */
.sidebar-cta {
    background: linear-gradient(135deg, #18203d, #2c5364);
    color: #ffffff;
    padding: 45px 35px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 30px 60px rgba(24,32,61,0.35);
    position: relative;
    overflow: hidden;
}

.sidebar-cta::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.sidebar-cta h4 {
    font-size: 26px;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.9);
}

/* ================= CONTACT INFO CARDS ================= */
.contact-details-section {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.contact-details-section .contact-card {
    text-align: center;
    padding: 35px 25px;
}

.contact-details-section .contact-card i {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,81,30,0.12);
    border-radius: 50%;
    font-size: 30px;
    color: #e8511e;
    margin-bottom: 15px;
}

/* ================= MAP ================= */
.map-section iframe {
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
/* ================= FLOATING ICONS ================= */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-icons .icon {
    position: absolute;
    font-size: 38px;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

/* Individual icon positions */
.icon-1 {
    top: 15%;
    left: 8%;
    color: #e8511e;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 20%;
    right: 10%;
    color: #18203d;
    animation-delay: 2s;
}

.icon-3 {
    top: 35%;
    right: 25%;
    color: #e8511e;
    animation-delay: 4s;
}

/* ================= FLOATING SHAPES ================= */
.floating-shape {
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(232,81,30,0.12), rgba(24,32,61,0.12));
    border-radius: 50%;
    filter: blur(40px);
    animation: floatSlow 10s ease-in-out infinite;
}

.shape-contact {
    bottom: -120px;
    right: -120px;
}

/* ================= MAP SHAPE ================= */
.map-section {
    position: relative;
}

.map-overlay-shape {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(232,81,30,0.25), transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* ================= ANIMATIONS ================= */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes floatSlow {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
    100% { transform: translateY(0px) scale(1); }
}

.services-content-section {
    background: #f8fafc;
    padding-top: 100px; 
    padding-bottom: 100px;
}

.services-content-section h2 {
    font-size: 2.5rem;
    color: #18203d;
}


/* Wrapper to control width */
.custom-blog-card {
    border: none;
    background: transparent;
    max-width: 400px; /* Adjust based on preference */
    margin: 0 auto; /* Center it */
}

/* Image Section Styling */
.card-image-wrapper {
    background: linear-gradient(135deg, #ffb347 0%, #ffcc33 100%); /* Fallback background color */
    border-radius: 20px 20px 0 0; /* Round only top corners */
    overflow: hidden;
    height: 280px; /* Fixed height to ensure uniform look */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills area */
}

/* The White Box overlapping the image */
.card-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-top: -60px; /* THIS creates the overlap effect */
    margin-left: 20px; /* Creates the inset look */
    margin-right: 20px; /* Creates the inset look */
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft shadow */
    min-height: 300px;
}

/* The Yellow Date Box */
.date-badge {
    background-color: #fecb3e; /* Match the yellow from image */
    width: 60px;
    height: 60px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.1;
}

.date-badge .day {
    font-size: 20px;
    font-weight: 700;
}

.date-badge .month {
    font-size: 14px;
    font-weight: 500;
}

/* Typography */
.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-excerpt {
    font-size: 0.95rem;
    color: #6c757d; /* Bootstrap muted color */
    line-height: 1.6;
    margin-bottom: 0;
}
/*contact area end */


        .ruw-section-container {
            
            background-color: #fff;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            text-align: center;
            box-sizing: border-box;
        }

        /* Reset for elements inside this container */
        .ruw-section-container * {
            box-sizing: border-box;
        }

        /* Heading */
        .ruw-main-heading {
            
            font-size: 2.8rem;
            font-weight: 400;
            margin-bottom: 25px;
            margin-top: 0;
            color: #000;
        }

        /* Intro Text Paragraphs */
        .ruw-intro-p {
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #444;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .ruw-brand-highlight {
            font-weight: 600;
            color: #000;
        }

        .ruw-spacer {
            margin-bottom: 50px;
        }

        /* Grid Layout */
        .ruw-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 Columns */
            gap: 30px;
            margin-bottom: 50px;
        }

        /* Individual Card Styling */
        .ruw-card {
            border: 1px solid #e1e1e1;
            border-radius: 8px;
            padding: 25px 20px;
            display: flex;
            align-items: center;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: #fff;
            cursor: pointer;
        }

        .ruw-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transform: translateY(-5px);
            border-color: #bbbbbb;
        }

        /* Icon Styling */
        .ruw-icon-wrapper {
            font-size: 2.2rem;
            margin-right: 20px;
            min-width: 50px; 
            text-align: center;
            color: #000; 
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Card Text Styling */
        .ruw-card-title {
            
            font-weight: 600;
            font-size: 1.1rem;
            color: #000;
            line-height: 1.35;
        }

        /* Footer Text Styling */
        .ruw-footer-text {
            font-size: 0.95rem;
            color: #555;
            max-width: 1000px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .ruw-services-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablet */
            }
        }

        @media (max-width: 600px) {
            .ruw-services-grid {
                grid-template-columns: 1fr; /* 1 Column on Mobile */
                gap: 20px;
            }
            .ruw-main-heading {
                font-size: 2rem;
            }
            .ruw-card {
                padding: 20px 15px;
            }
        }
        
        
        
        /*blogs css*/
        
        /* General Typography & Background */
        .rankup-section-bg {
            background-color: #f3f6f9; /* Soft light blue-gray */
            
            padding: 80px 0;
        }

        .rankup-main-title {
            
            font-weight: 700;
            color: #1a1a1a;
            position: relative;
            display: inline-block;
            margin-bottom: 50px;
        }
        
        .rankup-main-title::after {
            content: '';
            display: block;
            width: 60%;
            height: 4px;
            background: #0d6efd; /* Bootstrap Primary Blue */
            margin: 10px auto 0;
            border-radius: 2px;
        }

        /* --- Custom Blog Card --- */
        .rankup-post-card {
            background: #ffffff;
            border: none;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 35px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .rankup-post-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

        /* Image Wrapper with Zoom Effect */
        .rankup-img-container {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .rankup-post-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .rankup-post-card:hover .rankup-post-img {
            transform: scale(1.08);
        }

        /* Category Tag on Image */
        .rankup-cat-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: #0d6efd;
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 6px 15px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10;
        }

        /* Card Content */
        .rankup-card-body {
            padding: 30px;
        }

        .rankup-meta-info {
            font-size: 0.85rem;
            color: #6c757d;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .rankup-post-heading {
            
            font-weight: 700;
            font-size: 1.6rem;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .rankup-post-heading a {
            text-decoration: none;
            color: #212529;
            transition: color 0.3s;
        }

        .rankup-post-heading a:hover {
            color: #0d6efd;
        }

        .rankup-desc-text {
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .rankup-link-btn {
            font-weight: 700;
            color: #0d6efd;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }

        .rankup-link-btn:hover {
            border-bottom-color: #0d6efd;
        }

        /* --- Custom Sidebar Widgets --- */
        .rankup-sidebar-sticky {
            position: sticky;
            top: 25px; /* Stick 25px from top of screen */
        }

        .rankup-widget-box {
            background: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            margin-bottom: 30px;
            border: 1px solid #f0f0f0;
        }

        .rankup-widget-title {
            
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            position: relative;
        }

        .rankup-widget-title::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 40px;
            height: 3px;
            background: #0d6efd;
        }

        /* Custom Search */
        .rankup-search-input {
            border-radius: 50px 0 0 50px;
            border: 1px solid #dee2e6;
            padding-left: 20px;
        }
        
        .rankup-search-btn {
            border-radius: 0 50px 50px 0;
            background-color: #212529;
            border: 1px solid #212529;
            color: white;
            transition: background 0.3s;
        }

        .rankup-search-btn:hover {
            background-color: #000;
        }

        /* Custom Categories List */
        .rankup-cat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            color: #495057;
            text-decoration: none;
            transition: all 0.2s;
            border-bottom: 1px dashed #e9ecef;
        }

        .rankup-cat-item:last-child {
            border-bottom: none;
        }

        .rankup-cat-item:hover {
            color: #0d6efd;
            padding-left: 5px;
        }

        /* Custom Recent Posts */
        .rankup-mini-post {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .rankup-mini-thumb {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            object-fit: cover;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .rankup-mini-title {
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 5px;
        }

        .rankup-mini-title a {
            text-decoration: none;
            color: #333;
            transition: color 0.2s;
        }

        .rankup-mini-title a:hover {
            color: #0d6efd;
        }

        .rankup-mini-date {
            font-size: 0.75rem;
            color: #999;
            text-transform: uppercase;
        }

        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .rankup-sidebar-sticky {
                position: static; /* Disable sticky on mobile */
                margin-top: 50px;
            }
        }
        /*blogscss end */
        
        /*owl crousel css*/
        .owl-theme .owl-nav {
            margin-top: 30px;
        }

        .owl-theme .owl-nav [class*='owl-'] {
            background: #fff !important;
            color: #000 !important;
            border-radius: 50% !important;
            width: 45px;
            height: 45px;
            line-height: 45px !important;
            padding: 0 !important;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            font-size: 1.5rem !important;
            transition: all 0.3s ease;
            margin: 0 10px;
        }

        .owl-theme .owl-nav [class*='owl-']:hover {
            background: #0d6efd !important;
            color: #fff !important;
            transform: scale(1.1);
        }

        /* Dots styling */
        .owl-theme .owl-dots .owl-dot span {
            width: 12px;
            height: 12px;
            margin: 5px 5px;
            background: #ccc;
        }

        .owl-theme .owl-dots .owl-dot.active span {
            background: #0d6efd;
            width: 25px; /* Elongated dot for active state */
            transition: width 0.3s ease;
        }
        /*owl crousel css end */
        /*case study */
        .case-study-content {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
        }

        .case-study-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 2rem;
        }
       /* Key Results Box */
        .results-box {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 2rem 0;
            border-left: 5px solid #198754;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #198754;
            line-height: 1;
        }

        /* Testimonial Block */
        .client-quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #495057;
            border-left: none;
            background-color: #f8faff;
            padding: 30px;
            border-radius: 12px;
            position: relative;
        }
        .client-quote i { font-size: 2rem; color: #0d6efd; opacity: 0.2; position: absolute; top: 10px; left: 10px; }

        /* Sidebar Specifics */
        .rankup-sidebar-sticky { position: sticky; top: 20px; }
        .widget-box { background: #fff; padding: 25px; border-radius: 10px; margin-bottom: 30px; border: 1px solid #eee; }
        .widget-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 15px; border-bottom: 2px solid #f0f0f0; padding-bottom: 10px; }
        
        .toc-link { display: block; padding: 8px 0; color: #555; text-decoration: none; font-size: 0.95rem; }
        .toc-link:hover { color: #0d6efd; padding-left: 5px; transition: 0.2s; }
        
        .tech-badge { background: #eef2ff; color: #0d6efd; padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; margin-right: 5px; margin-bottom: 5px; display: inline-block; font-weight: 600; }
        /*case study end*/
        
        /*portfolio css */
        /* Filter Buttons */
        .portfolio-filters .btn-outline-primary {
            border-radius: 50px;
            padding: 8px 25px;
            margin: 0 5px 10px;
            border-color: #dee2e6;
            color: #6c757d;
        }

        .portfolio-filters .btn-outline-primary:hover,
        .portfolio-filters .btn-outline-primary.active {
            background-color: #0d6efd;
            border-color: #0d6efd;
            color: #fff;
        }
        /* --- BROWSER MOCKUP FOR IFRAMES --- */
        .browser-mockup {
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            background: #fff;
            overflow: hidden;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s ease;
        }

        .browser-mockup:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        /* The Top Bar (Address Bar style) */
        .browser-header {
            background: #f1f3f4;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #e0e0e0;
        }

        .browser-dots {
            display: flex;
            gap: 6px;
            margin-right: 15px;
        }

        .dot { width: 10px; height: 10px; border-radius: 50%; }
        .dot.red { background: #ff5f56; }
        .dot.yellow { background: #ffbd2e; }
        .dot.green { background: #27c93f; }

        .browser-address {
            background: #fff;
            color: #555;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            flex-grow: 1;
            border: 1px solid #ddd;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-family: monospace;
        }

        /* The Iframe Itself */
        .project-iframe {
            width: 100%;
            height: 400px; /* Fixed height for the preview window */
            border: none;
            display: block;
        }

        /*portfolio css rnd */