    .bg-black {
        --bs-bg-opacity: 1;
        background-color: rgb(29 29 29) !important;
    }

    .text-gradient-1 {
        background-image: linear-gradient(45deg, #66c3d0, #7a0d4d);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .button.button-dot:after {
        content: '';
        z-index: -1;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        background-color: #E5001F;
        background-image: linear-gradient(45deg, #673AB7 0%, #57a7b3 50%, #112b2f 100%);
        width: 100%;
        height: 100%;
        -webkit-transition:
            linear 0.1s;
        transition:
            linear 0.1s;
    }

    @media (min-width: 992px) {

        .header.header-dark:not(.transparent-dark) .header-menu.nav-link-hover-line .nav .nav-item .nav-link:before,
        .header.transparent-light .header-menu.nav-link-hover-line .nav .nav-item .nav-link:before {
            background: #66c3d0;
        }

        .header .header-logo {
            margin-top: 1px;
            width: 180px;
        }
    }

    @media (max-width: 991px) {



        .header .header-logo {
            margin-top: 1px;
            width: 180px;
        }
    }

    .bg-primary {
        --bs-bg-opacity: 1;
        background-color: rgb(87 167 179) !important;
    }

    .header.header-dark:not(.transparent-dark) .header-extra a:not([class^='button']):not([class^='link-hover']) i,
    .header.transparent-light .header-extra a:not([class^='button']):not([class^='link-hover']) i,
    .header.header-white:not(.transparent-dark) .header-extra a:not([class^='button']):not([class^='link-hover']) i,
    .header.transparent-light .header-extra a:not([class^='button']):not([class^='link-hover']) i {
        color: #3d848e;
    }

    /* WhatsApp kapsayıcı */
    .dg2-whatsapp-wrapper {
        position: fixed;
        bottom: 150px;
        /* Telefonun üstünde */
        right: 20px;
        width: 50px;
        height: 50px;
        z-index: 999999;
    }

    /* Pulse halkası */
    .dg2-whatsapp-wrapper .whatsapp-pulse-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 60px;
        height: 60px;
        background: rgba(37, 211, 102, 0.5);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(1);
        animation: whatsapp-pulse 1s infinite;
        pointer-events: none;
    }

    /* WhatsApp butonu */
    .dg2-whatsapp-button {
        width: 50px;
        height: 50px;
        background-color: #25D366;
        /* WhatsApp yeşili */
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    /* Hoverda renk koyulaşır */
    .dg2-whatsapp-button:hover {
        background-color: #1ebe57;
    }

    /* Telefon kapsayıcı */
    .dg2-phone-wrapper {
        position: fixed;
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        z-index: 999999;
    }

    /* Pulse halkası */
    .dg2-phone-wrapper .pulse-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 60px;
        height: 60px;
        background: rgba(255, 59, 48, 0.5);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(1);
        animation: pulse 1s infinite;
        pointer-events: none;
    }

    /* Telefon butonu */
    .dg2-phone-button-float {
        width: 50px;
        height: 50px;
        background-color: #FF3B30;
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    /* Hoverda renk koyulaşır */
    .dg2-phone-button-float:hover {
        background-color: #cc2a24;
    }

    /* Pulse animasyonları */
    @keyframes whatsapp-pulse {
        0% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.7;
        }

        50% {
            transform: translate(-50%, -50%) scale(1.4);
            opacity: 0.3;
        }

        100% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.7;
        }
    }

    @keyframes pulse {
        0% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.7;
        }

        50% {
            transform: translate(-50%, -50%) scale(1.4);
            opacity: 0.3;
        }

        100% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.7;
        }
    }