.custom-hero-padding {
    padding: 134px 0 100px 0 !important;
}
/* Hide scrollbar */
.services-carousel-wrapper {
    max-width: 100%;
    overflow: hidden;
}

.services-carousel {
    display: flex;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    gap: 16px;
}

.services-carousel::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}

/* Show 2.5 cards at a time */
.service-card {
    min-width: calc((100% - 32px) / 2.5) !important;
    max-width: calc((100% - 32px) / 2.5) !important;
    flex: 0 0 calc((100% - 32px) / 2.5) !important;
}

/* Dots styling */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background-color: #00d4ff;
    width: 30px;
    border-radius: 6px;
}

.service-card p {
    min-height: 160px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-card {
        min-width: calc((100% - 16px) / 1.5) !important;
        max-width: calc((100% - 16px) / 1.5) !important;
        flex: 0 0 calc((100% - 16px) / 1.5) !important;
    }
}

@media (max-width: 768px) {
    .service-card {
        min-width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}
/* partners */
/* Partners slider wrapper - Dark background */
.partners-slider-wrapper {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    background: transparent;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Gradient fade on edges - dark version */
.partners-slider-wrapper::before,
.partners-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(30, 41, 59, 1) 0%, rgba(30, 41, 59, 0) 100%);
}

.partners-slider-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, rgba(30, 41, 59, 1) 0%, rgba(30, 41, 59, 0) 100%);
}

/* Partners slider */
.partners-slider {
    display: flex;
    gap: 80px;
    animation: scroll 40s linear infinite;
    width: fit-content;
    align-items: center;
}

/* Pause on hover */
.partners-slider:hover {
    animation-play-state: paused;
}

/* Partner item - GLASS EFFECT */
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    
    /* Glass morphism effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.partner-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 10px 30px rgba(0, 212, 255, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.partner-item img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/********* map *************/
.threat-map-wrapper {
    padding: 0 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.threat-map-wrapper iframe {
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}



.cyber-threat-section {
    background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
    padding: 100px 0;
    position: relative;
}

.cyber-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.stat-box {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-map-img {
    opacity: 0.6;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
}

/* Threat map wrapper */
.threat-map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* Overlay button positioned on top of "Protect Yourself" */
.iframe-overlay-btn {
    position: absolute;
    top: 11px;
    right: 25px;
    background: #00d4ff;
    color: #1a1f2e;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.iframe-overlay-btn:hover {
    background: #00b8e6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    color: #1a1f2e;
}

/* Responsive positioning */
@media (max-width: 768px) {
    .iframe-overlay-btn {
        top: 10px;
        right: 10px;
        padding: 10px 20px;
        font-size: 12px;
    }
}
/*** pllier ***/
/* Timeline at top */
.methodology-timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.timeline-progress {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #00d4ff 100%);
    border-radius: 2px;
}

.timeline-dots {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid #1a1f2e;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-dot.active {
    background: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

/* Methodology steps - base state for all */
.methodology-step {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid rgba(0, 212, 255, 0.3);
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

/* Hover state - applies the active styling */
.methodology-step:hover {
    background: rgba(0, 212, 255, 0.08);
    border-left-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
    transform: translateX(5px);
}

.methodology-step:hover .step-number {
    background: #00d4ff;
    color: #1a1f2e;
    border-color: #00d4ff;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
}

.methodology-step:hover .step-line {
    background: linear-gradient(90deg, #00d4ff 0%, transparent 100%);
}

/* Step numbers - base state */
.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

/* Decorative line under number - base state */
.step-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.5) 0%, transparent 100%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Typography */
.methodology-step h3 {
    font-size: 24px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .methodology-step {
        margin-bottom: 20px;
    }
}

.step-grid {
    display: flex;
    width: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: 8px;
}

.step-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.step-text {
    flex: 0 0 33.33%;
    background-color: #253c61;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.step-text p {
    font-size: 15px;
    line-height: 1.6;
}

.step-number-case {
    flex: 0 0 33.33%;
    background: linear-gradient(135deg, #1a8fa8 0%, #1a6f88 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}

.step-number-case h1 {
    font-size: 96px;
    font-weight: bold;
    color: #00d4ff;
    margin: 0;
    line-height: 1;
}

.step-number-case hr {
    border: none;
    border-top: 2px solid #00d4ff;
    width: 60px;
    margin: 15px 0;
}

.step-number-case h2 {
    font-size: 11px;
    letter-spacing: 2px;
    color: #00d4ff;
    margin: 0;
    font-weight: 600;
}

.step-icons {
    flex: 0 0 33.33%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}

.step-icons img {
    max-width: 100%;
    max-height: 100%;
    width: 90%;
    height: 90%;
    object-fit: contain;
}
/* Contact */

/* Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 120px 0 80px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form Container */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1e293b;
    color: #fff;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border: none;
    border-radius: 10px;
    padding: 16px 32px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

/* Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.info-card {
    position: relative;
}

.info-icon {
    margin-bottom: 15px;
}

.info-card h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    font-size: 1rem;
}

.info-card a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #00d4ff;
}

/* Social Links */
.social-links {
    margin-top: 10px;
}

.social-links h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    color: #00d4ff;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    margin-top: 60px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    filter: grayscale(20%) brightness(0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    padding: 60px 40px;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #fff;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-header h2 {
        font-size: 1.6rem;
    }

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

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .social-icons {
        justify-content: center;
    }

    .btn-submit,
    .btn-cta {
        width: 100%;
    }
}

/* Timeline at top */
.methodology-timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.timeline-progress {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #00d4ff 100%);
    border-radius: 2px;
}

.timeline-dots {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid #1a1f2e;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-dot.active {
    background: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

/* Methodology steps */
.methodology-step {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid rgba(0, 212, 255, 0.3);
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.methodology-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #00d4ff;
    transform: translateX(5px);
}

.methodology-step-active {
    background: rgba(0, 212, 255, 0.08);
    border-left: 4px solid #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}

/* Step numbers */
.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.step-number-active {
    background: #00d4ff;
    color: #1a1f2e;
    border-color: #00d4ff;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
}

/* Decorative line under number */
.step-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.5) 0%, transparent 100%);
    margin-bottom: 20px;
}

.step-line-active {
    background: linear-gradient(90deg, #00d4ff 0%, transparent 100%);
}

/* Typography */
.methodology-step h3 {
    font-size: 24px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .methodology-step {
        margin-bottom: 20px;
    }
}

.step-grid {
    display: flex;
    width: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 0;
}

.step-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.step-text {
    flex: 0 0 33.33%;
    background-color: #253c61;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.step-text p {
    font-size: 15px;
    line-height: 1.6;
}

.step-number-case {
    flex: 0 0 33.33%;
    background: linear-gradient(135deg, #1a8fa8 0%, #1a6f88 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}

.step-number-case h1 {
    font-size: 96px;
    font-weight: bold;
    color: #00d4ff;
    margin: 0;
    line-height: 1;
}

.step-number-case hr {
    border: none;
    border-top: 2px solid #00d4ff;
    width: 60px;
    margin: 15px 0;
}

.step-number-case h2 {
    font-size: 11px;
    letter-spacing: 2px;
    color: #00d4ff;
    margin: 0;
    font-weight: 600;
}

.step-icons {
    flex: 0 0 33.33%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}

.step-icons img {
    max-width: 100%;
    max-height: 100%;
    width: 90%;
    height: 90%;
    object-fit: contain;
}

/* Responsive design */
@media (max-width: 1200px) {
    .step-grid {
        min-height: 240px;
    }
    
    .step-text {
        padding: 30px 20px;
    }
    
    .step-text h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .step-text p {
        font-size: 14px;
    }
    
    .step-number-case h1 {
        font-size: 80px;
    }
}

@media (max-width: 992px) {
    .step-grid {
        flex-direction: column;
        min-height: auto;
        margin-bottom: 0;
    }
    
    .step-content {
        flex-direction: column;
        width: 100%;
    }
    
    .step-text {
        flex: 0 0 auto;
        width: 100%;
        padding: 30px 25px;
        order: 1;
    }
    
    .step-text h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .step-text p {
        font-size: 14px;
    }
    
    .step-number-case {
        flex: 0 0 auto;
        width: 100%;
        min-height: 150px;
        padding: 25px 20px;
        order: 2;
    }
    
    .step-number-case h1 {
        font-size: 72px;
    }
    
    .step-icons {
        flex: 0 0 auto;
        width: 100%;
        min-height: 120px;
        padding: 20px 20px;
        order: 3;
    }
    
    .step-icons img {
        max-width: 70%;
        max-height: 70%;
    }
}

@media (max-width: 768px) {
    .step-grid {
        border-radius: 6px;
    }
    
    .step-text {
        padding: 25px 20px;
    }
    
    .step-text h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .step-text p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .step-number-case {
        min-height: 140px;
        padding: 20px 15px;
    }
    
    .step-number-case h1 {
        font-size: 64px;
    }
    
    .step-number-case hr {
        width: 50px;
        margin: 12px 0;
    }
    
    .step-number-case h2 {
        font-size: 10px;
    }
    
    .step-icons {
        min-height: 100px;
        padding: 15px 15px;
    }
    
    .step-icons img {
        max-width: 60%;
        max-height: 60%;
    }
}

@media (max-width: 480px) {
    .step-grid {
        border-radius: 4px;
    }
    
    .step-text {
        padding: 20px 15px;
    }
    
    .step-text h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .step-text p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .step-number-case {
        min-height: 120px;
        padding: 15px 12px;
    }
    
    .step-number-case h1 {
        font-size: 48px;
    }
    
    .step-icons {
        min-height: 90px;
        padding: 12px 12px;
    }
    
    .step-icons img {
        max-width: 35%;
        max-height: 35%;
    }
}

/* Fix for oversized logo */
#logo img.logo-main {
    max-height: 80px; /* Adjust this value to your preferred size */
    width: auto;
    height: auto;
}

#logo img.logo-mobile {
    max-height: 50px; /* Slightly smaller for mobile */
    width: auto;
    height: auto;
}

/* Optional: Add some padding if needed */
#logo {
    display: flex;
    align-items: center;
}

/* Hero section - Three logos styling */
.hero-logos-container {
    margin: 3rem 0;
}

.hero-logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem; /* Increased from 4rem */
    flex-wrap: wrap;
}

.hero-logo-item {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-logos-wrapper {
        gap: 3.5rem; /* Increased from 2.5rem */
    }
    
    .hero-logo-item {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-logos-wrapper {
        gap: 2rem; /* Increased from 1.5rem */
    }
    
    .hero-logo-item {
        max-width: 140px;
    }
}

/* Globe menu styling */
/* Globe menu styling - Override template defaults */
.globe-menu {
    position: relative !important;
}

.globe-menu > a i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.globe-menu:hover > a i {
    transform: rotate(15deg);
}

/* Dropdown container - Transparent background */
.globe-dropdown {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    background: transparent !important; /* Changed from white to transparent */
    border-radius: 0 !important;
    padding: 15px 10px !important;
    box-shadow: none !important; /* Removed shadow */
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    min-width: 150px !important;
    width: auto !important;
    z-index: 9999 !important;
    display: block !important;
    margin: 0 !important;
}

.globe-menu:hover .globe-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Reset list styling */
.globe-dropdown li {
    list-style: none !important;
    margin: 8px 0 !important;
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
    background: transparent !important;
}

.globe-dropdown li a {
    display: block !important;
    padding: 5px !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    background: transparent !important;
}

.globe-dropdown li a:hover {
    background: rgba(255, 255, 255, 0.1) !important; /* Subtle hover effect */
    transform: scale(1.05) !important;
}

/* Force image display */
.globe-dropdown li img {
    width: 100% !important;
    max-width: 160px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 4px !important;
    transition: transform 0.2s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
}

/* Responsive */
@media (max-width: 991px) {
    .globe-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 10px 0 !important;
        margin-top: 10px !important;
    }
    
    .globe-dropdown li {
        display: inline-block !important;
        margin: 0 5px !important;
        width: auto !important;
    }
    
    .globe-dropdown li img {
        max-width: 80px !important;
    }
}

section.jarallax .btn-main.fx-slide {
    padding: 20px 50px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    min-width: 320px !important;
}

/* ===== SCROLL TO TOP BUTTON ===== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #5b7ce6 0%, #7c93ed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(91, 124, 230, 0.4);
}

/* État visible */
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover effect */
.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 32px rgba(91, 124, 230, 0.5);
    background: linear-gradient(135deg, #4c6fd9 0%, #6b82e0 100%);
}

/* Active (click) effect */
.scroll-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

/* Icon styling */
.scroll-to-top svg {
    color: white;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-3px);
    animation: bounce 0.6s ease infinite;
}

/* Bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(-3px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Pulse animation subtile */
.scroll-to-top::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5b7ce6, #7c93ed);
    opacity: 0;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}