:root {
    --primary-color: var(--primary);
    --secondary-color: var(--secondary);
    --success-color: #2ECC71;
    --dark-color: var(--dark-black-color);
    --light-color: var(--light-white-color);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtext {
    font-size: 0.9rem;
    color: var(--text-color);
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Products dropdown */
.custom-dropdown {
    position: relative;
    cursor: pointer;
}

/* Arrow icon */
.arrow-icon {
    display: inline-block;
    margin-left: 6px;
    margin-bottom: 3px;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.custom-dropdown:hover .arrow-icon {
    transform: rotate(-135deg);
}

/* Dropdown container */
.dropdown-menu-custom {
    position: absolute;
    top: 120%;
    left: 0;
    list-style-type: none;
    min-width: 200px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    padding: 10px 0;
    z-index: 999;
}

/* Show dropdown on hover */
.custom-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.dropdown-item-custom {
    display: block;
    padding: 10px 20px;
    color: var(--dark-color);
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

/* Hover effect for dropdown items */
.dropdown-item-custom:hover {
    background: rgba(0, 0, 0, 0.04);
    padding-left: 26px;
    color: var(--primary-color);
}

/* Badge styling */
.badge-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.badge-link:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #0A3F7C 0%, #0D6EF8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
} */

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-section.hero-bg-image {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.484), rgba(0,0,0,0)),url('../../assets/services/service_cover.avif') center center / cover no-repeat;
    min-height: 100vh;
    height: 100vh;
    position: relative;
}

/* Floating Animation */
@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Rotation Animation */
@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rotate-slow {
    animation: rotate-slow 20s linear infinite;
}

/* Title Underline */
/* .title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    margin: 10px auto;
    border-radius: 2px;
} */

/* Fade In Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Service Wheel Container */
.service-wheel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Custom List */
.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.custom-list li:hover {
    padding-left: 35px;
    color: var(--primary-color);
}

/* Product Cards */
.product-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.product-icon {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
    /* color: var(--success-color); */
}

/* Pricing Cards */
.pricing-card {
    /* background: var(--gradient-1); */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);

    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::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%);
    transition: all 0.5s ease;
    transform: scale(0);
}

.pricing-card:hover::before {
    transform: scale(1);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.pricing-card:nth-child(2) {
    background: var(--gradient-2);
}

.pricing-card:nth-child(3) {
    background: var(--gradient-3);
}

/* Tech Cards */
.tech-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.tech-card i {
    color: #1B0198;
    transition: all 0.3s ease;
}

.tech-card:hover i {
    transform: scale(1.2) rotate(-10deg);
    /* color: var(--success-color); */
}

.tech-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-badge {
    padding: 2px 10px;
    border-radius: 20px;
    /* font-size: 14px; */
    /* font-weight: 500; */
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--capsule);
    /* background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); */
    /* background: #3a86ff; */
    display: inline-block;
    white-space: nowrap;
    transition: 0.3s ease;
}

.tech-badge:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.tech-header {
    margin-bottom: 1rem;
}

/* Domain Cards */
.domain-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    height: 100%;
}

.domain-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
    border-left-width: 8px;
}

.domain-card i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.domain-card:hover i {
    transform: scale(1.2);
    /* color: var(--success-color); */
}

/* Domain Modal Styles */
.domain-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.domain-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.domain-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(-50px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.domain-modal.show .domain-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.domain-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px 20px;
    border-bottom: 2px solid #f1f5f9;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1;
}

.domain-modal-header h3 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-close-btn {
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #64748b;
    font-size: 1.2rem;
}

.modal-close-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: rotate(90deg);
}

.domain-modal-body {
    padding: 30px 35px;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    border-bottom: 1px solid #f1f5f9;
    animation: slideInLeft 0.4s ease forwards;
    opacity: 0;
}

.modal-list li:last-child {
    border-bottom: none;
}

.modal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 15px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #1B0198, #559def);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.header-text {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.header-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.35s ease;
}

.domain-card:hover .header-text::after {
    width: 100%;
}

.domain-card:hover .header-text {
    color: var(--primary-color);
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }

    from {
        transform: translateX(-20px);
    }
}

.modal-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.modal-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.modal-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.modal-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.modal-list li:nth-child(5) {
    animation-delay: 0.5s;
}

.modal-list li:nth-child(6) {
    animation-delay: 0.6s;
}

/* Add cursor pointer to domain cards */
.domain-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .domain-modal-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .domain-modal-header {
        padding: 25px 20px 15px;
    }

    .domain-modal-header h3 {
        font-size: 1.4rem;
    }

    .domain-modal-body {
        padding: 25px 20px;
    }

    .modal-list li {
        font-size: 0.95rem;
        padding: 12px 0 12px 35px;
    }

    .modal-close-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Our Customers Carousel Section */
.customer-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 60px;
}

.customer-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.customer-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.customer-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.customer-card-carousel {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    min-height: 400px;
    transition: all 0.3s ease;
}

.customer-logo-carousel {
    width: 100%;
    max-width: 240px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.customer-logo-carousel img {
    max-width: 100%;
    height: auto;
    max-height: 110px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.customer-logo-carousel:hover img {
    transform: scale(1.05);
}

.customer-logo-carousel:hover {
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}

.customer-content-carousel {
    flex: 1;
}

.client_image {
    border-radius: 10px;
}

.customer-name {
    /* font-size: 1.5rem; */
    /* font-weight: 700; */
    color: var(--dark-color);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.customer-description {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
    /* font-size: 1rem; */
}

.customer-description:last-child {
    margin-bottom: 0;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.carousel-control:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    /* margin-top: 30px; */
    margin-bottom: 30px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: #9ca3af;
    transform: scale(1.2);
}

.indicator.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design for Customer Carousel */
/* @media (min-width: 768px) {
    .customer-card-carousel {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .customer-logo-carousel {
        max-width: 200px;
        flex-shrink: 0;
    }
} */

@media (max-width: 767px) {
    .customer-carousel-wrapper {
        padding: 20px 50px;
    }

    .customer-card-carousel {
        padding: 35px 25px;
        min-height: 450px;
    }

    .customer-logo-carousel {
        max-width: 180px;
    }

    .customer-name {
        font-size: 1.3rem;
    }

    .customer-description {
        font-size: 0.95rem;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .customer-carousel-wrapper {
        padding: 20px 40px;
    }

    .carousel-control {
        width: 35px;
        height: 35px;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    /* font-size: 1.1rem; */
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    /* background: linear-gradient(90deg, var(--special-color), var(--special1-color)); */
    background: linear-gradient(90deg, #6c757d, #fff);
}

.footer-links {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
    padding-left: 5px;
}

.footer-links i {
    /* color: var(--special-color); */
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .product-card,
    .pricing-card,
    .tech-card,
    .domain-card {
        margin-bottom: 20px;
    }

    .service-wheel-container {
        margin-bottom: -90px;
        margin-top: -130px;
    }

    .service-wheel-container img {
        max-width: 300px;
    }

    /* .hero-section.hero-bg-image {
        background: url('../../assets/service_8.png') center center / cover no-repeat;
        min-height: 100vh;
        height: 100vh;
        position: relative;
    } */

    .logo-container {
        margin-left: -100px;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-1);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Loading Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    position: relative;
}

/* Background Patterns */
.bg-light {
    background-color: #f8f9fa !important;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
}

/* Card Hover Effects */
.shadow-lg {
    transition: all 0.3s ease;
}

.shadow-lg:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
}