        @import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');
        @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Strait&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

      :root {
            --pixonom-blue: #2A79A7;
            --pixonom-dark-blue: #004a77;
            --pixonom-light-blue-bg: #e0f8f4;
            --pixonom-red: #E63946;
            --text-dark: #333;
        }


        h1 {
            text-align: center;
        }

        .form-group {
            margin-bottom: 15px;
        }

        input {
            width: 100%;
            padding: 8px;
            box-sizing: border-box;
        }

        button {
            padding: 10px;
            background-color: #4CAF50;
            color: white;
            border: none;
            width: 120px;
            cursor: pointer;
            margin-bottom: 10px;
        }

        .card {
            height: 250px;
            perspective: 1000px;
            border: none;
        }

         .frame {
            width: 100%;
            height: 600px;
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans,
                Droid Sans, Helvetica Neue, sans-serif;
            padding: 20px;
            font-size: 14px;
            border: none;
        }

        .warning {
            background-color: #df68a2;
            padding: 3px;
            border-radius: 5px;
            color: white;
        }

        #call-container {
            display: none;
            text-align: center;
        }

        #leave-btn {
            background-color: #f44336;
        }

        .callcontainer {
            background-color: #4f5966;
            height: 60px!important;
            width: 100%;
            position: fixed;
            bottom: 0;
            display: flex;
            right: 0;
        }

        .participants {
            margin-top: 20px;
            border: 1px solid #ccc;
            padding: 10px;
        }

        .side-menu {
            position: fixed;
            right: -300px;
            top: 0;
            width: 300px;
            height: 100%;
            background-color: #f8f9fa;
            box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease-in-out;
            z-index: 1000;
            overflow-y: auto;
            padding: 20px;
            box-sizing: border-box;
        }

        .side-menu.active {
            right: 0;
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 24px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }

        .open-button {
            padding: 10px 20px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }

        .open-button:hover {
            background-color: #45a049;
        }

        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .card:hover .card-inner {
            transform: rotateY(180deg);
        }

        .card-front,
        .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.5rem;
        }

        .card-front {
            background-color: var(--pixonom-light-blue-bg);
            border-radius: 15px;
            color: var(--pixonom-blue);
        }

        .card-back {
            border-radius: 15px;
            color: #fff;
            transform: rotateY(180deg);
        }

        .signup-form-container {
            background-color: var(--pixonom-light-blue-bg);
            padding: 2rem;
            border-radius: 20px;
            max-width: 450px;
            width: 100%;
        }

        .iletisim-form-container {
                    background-color: var(--pixonom-light-blue-bg);
                    padding: 2rem;
                    border-radius: 20px;
                    max-width: 80%;
                    width: 100%;
                }

                .signup-form-container h3 {
                    color: var(--factory-blue) !important;
                    font-weight: 700;
                    font-size: 1.2rem;
                    margin-bottom: 1.5rem;
                    font-family: "Roboto Condensed";
                    font-optical-sizing: auto;
                    font-weight: 500;
                }
        .sign-area{
            background-color: var(--pixonom-light-blue-bg);
            padding: 2rem;
            border-radius: 20px;
            max-width: 100%;
            width: 100%;
        }

                .sign-area h3 {
                    color: var(--factory-blue) !important;
                    font-weight: 700;
                    font-size: 1.2rem;
                    margin-bottom: 1.5rem;
                    font-family: "Roboto Condensed";
                    font-optical-sizing: auto;
                    font-weight: 500;
                }
        

        .form-label {
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--factory-blue) !important;
            font-family: "Roboto Condensed";
            font-optical-sizing: auto;
            font-weight: 500;
            padding-bottom: 5px;
        }

        .form-control,
        .form-select {
            border-radius: 8px;
            border: 1px solid #ced4da;
            background-color: #fff;
            font-family: "Roboto Condensed";
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--factory-blue);
            box-shadow: 0 0 0 0.25rem rgba(26, 94, 138, 0.25);
        }

        /* Custom styles for select with icon */
        .custom-select-wrapper {
            position: relative;
        }

        .custom-select-wrapper .icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            pointer-events: none;
            /* Allows clicking through the icon to the select */
        }

        .custom-select-wrapper .form-select {
        }

        /* Mobile input with flag */
        .input-group-text {
            background-color: #fff;
            border-right: 0;
            border-radius: 8px 0 0 8px;
            font-weight: 500;
             font-family: "Roboto Condensed";
        }

        .input-group .form-control {
        }

        .flag-icon {
            width: 20px;
            margin-right: 0.5rem;
        }

        .btn-giris {
            background-color: var(--factory-blue);
            color: white;
            font-weight: 700;
            letter-spacing: 2px;
            padding: 0.75rem;
            border-radius: 8px;
            border: none;
            transition: background-color 0.2s;
            font-family: "Roboto Condensed";
        }

        .btn-giris:hover {
            background-color: #144b6f;
        }

        :root {
            --factory-blue: #1A5E8A;
            /* Button and primary color */
            --factory-text-blue: #2A79A7;
            /* General text color */
            --factory-light-bg: #e0f8f4;
            --factory-red: #E63946;
        }

        body {
             font-family: "Rubik Mono One", monospace;
              padding-top: 90px;
            margin: 0 auto;
        }

        main {
            flex-grow: 1;
            /* Allows main content to fill space */
        }

        .logo-wrapper {
            line-height: 1;
        }

        .factory-logo {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--factory-text-blue);
            text-decoration: none;
            display: block;
        }

        .factory-logo.dot {
            color: var(--factory-red);
        }

        .factory-text {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--factory-text-blue);
            letter-spacing: 4px;
        }

        /* --- Header Contact Info --- */
        .header-contact a {
            color: var(--factory-text-blue);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            margin-left: 1.5rem;
        }

        .header-contact i {
            font-size: 1.1rem;
            vertical-align: middle;
        }

        /* --- Login Card --- */
        .login-card {
            background-color: var(--factory-light-bg);
            padding: 2.5rem;
            border-radius: 20px;
        }

        .login-card label {
            color: var(--factory-text-blue);
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .login-card .form-control {
            border-radius: 8px;
            border: 1px solid #ccc;
            padding: 0.75rem 1rem;
        }

        .login-card .btn-giris {
            background-color: var(--factory-blue);
            color: white;
            font-weight: 700;
            letter-spacing: 2px;
            padding: 0.75rem;
            border-radius: 8px;
            border: none;
        }

        .login-card .signup-link {
            color: var(--factory-text-blue);
            font-weight: 500;
            font-size: 0.9rem;
            font-family: "Roboto Condensed";
        }

        .login-card .signup-link a {
            color: var(--factory-blue);
            font-weight: 700;
            text-decoration: none;
            font-family: "Roboto Condensed";
        }

        footer {
            background-color: var(--factory-blue);
            padding: 1.5rem 0;
        }

        footer .factory-logo {
            color: #fff;
            font-size: 2.5rem;
        }

        .pixonom-logo {
            width: 220px;
        }

        .pixonom-logo .dot {
            color: var(--pixonom-red);
        }

        .navbar {
            background-color: transparent !important;
        }

        .navbar-nav .nav-link {
            color: var(--pixonom-blue);
            font-weight: 500;
        }

        .icon-link {
            color: var(--pixonom-blue);
            text-decoration: none;
            font-weight: 500;
            margin-right: 1.5rem;
        }

        .icon-link i {
            font-size: 1.2rem;
            vertical-align: middle;
            margin-right: 0.3rem;
        }

        .hero-section h1 {
            color: var(--pixonom-blue);
            font-weight: 700;
            letter-spacing: 2px;
            font-size: 2.5rem;
        }

        .hero-section h2 {
            color: var(--pixonom-blue);
            font-weight: 700;
            letter-spacing: 1.5px;
            font-size: 1.2rem;
            margin-top: 0.5rem;
        }

        .feature-card {
            background-color: var(--pixonom-light-blue-bg);
            border-radius: 15px;
            color: var(--pixonom-blue);
            font-size: 2.3rem;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: left;
            min-height: 350px;
            height: 100%;
            padding: 1.5rem;
            border: none;
            font-family: "Roboto Condensed";
            font-optical-sizing: auto;
            font-weight: 100;
        }

        .feature-card-back {
            background-color: var(--pixonom-light-blue-bg);
            border-radius: 15px;
            color: white;
            font-size: 2.3rem;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: left;
            min-height: 350px;
            height: 100%;
            padding: 1.5rem;
            border: none;
            font-family: "Roboto Condensed";
            font-optical-sizing: auto;
            font-weight: 100;
        }


        .info-section h3 {
            color: var(--pixonom-blue);
            font-weight: 700;
            letter-spacing: 1.5px;
        }

        .info-section p {
            color: var(--pixonom-dark-blue);
            font-family: "Roboto Condensed", sans-serif;
            font-optical-sizing: auto;
            font-size: 2rem;
            line-height: 1;
            font-weight: 300;
        }

        footer {
            background-color: var(--pixonom-dark-blue);
        }

        footer .pixonom-logo {
            color: #fff;
        }

        footer .icon-link {
            color: #fff;
            font-family: "Roboto Condensed", sans-serif;
            font-optical-sizing: auto;
            line-height: 1;
            font-weight: 100;
        }

        .page-header h1 {
            color: var(--pixonom-blue);
            font-weight: 700;
            letter-spacing: 2px;
        }

        .value-card {
            background-color: var(--pixonom-light-blue-bg);
            border-radius: 15px;
            color: var(--pixonom-blue);
            font-weight: 700;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 120px;
            height: 100%;
            padding: 1.5rem;
        }

        .about-section h2 {
            color: var(--pixonom-dark-blue);
            font-weight: 700;
            font-family: "Strait", sans-serif;
            font-size: 3.5rem !important;
            padding-bottom: 10px;
            display: inline-block;
        }

        .service-icon-wrapper {
            width: 120px;
            height: 120px;
            background-color: var(--pixonom-light-blue-bg);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }


        .languagepicker {
            background-color: #FFF;
            color: var(--pixonom-light-blue-bg);
            display: inline-block;
            padding: 0;
            height: 40px;
            overflow: hidden;
            transition: all .3s ease;
            vertical-align: top;
            float: left;
            margin-top: 7px;
        }

        .langarea {

            position: absolute;
            float: right;
            right: 0;
            top: 9px;
        }

        .languagepicker:hover {
            /* don't forget the 1px border */
            height: 61px;
            display: inline-block;
        }

        .languagepicker a {
            color: var(--pixonom-dark-blue) !important;
            text-decoration: none;
            cursor: pointer;
        }

        .languagepicker li {
            display: block;
            padding: 0px 20px;
            line-height: 40px;
            border-top: 1px solid #EEE;
        }

        .languagepicker li:hover {
            background-color: #EEE;
        }

        .languagepicker a:first-child li {
            border: none;
            background: #FFF !important;
        }

        .languagepicker li img {
            margin-right: 5px;
        }

        .large:hover {
            height: 170px;
            display: inline-block;
        }

        .service-item .icon {
            font-size: 3.5rem;
            /* İkonu kutuya sığdırmak için boyut ayarı */
            color: var(--pixonom-blue);
        }

        .service-item h3 {
            color: var(--pixonom-dark-blue);
            font-weight: 700;
            font-family: "Strait", sans-serif;
            font-size: 2rem !important;
        }

       

        @media (max-width: 768px) {
            .languagepicker {
                background-color: #FFF;
                display: inline-block;
                padding: 0;
                height: 40px;
                overflow: hidden;
                transition: all .3s ease;
                vertical-align: top;
                float: left;
                margin-top: 70px;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section h2 {
                font-size: 1rem;
            }
        }

     #etkilesim-kutusu {
    position: fixed;
    top: 60px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    z-index: 1000;
    font-family: Arial, sans-serif;
    max-width: 300px;
    display: none;
    }

#etkilesim-kutusu h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

#etkilesim-kutusu p {
  margin: 5px 0 0;
  font-size: 14px;
}

.hidden-by-default {
    display: none!important;

}

/* Kontrol Butonları Alanı */
.control-buttons-container {
    display: flex;
    width: 100%;
    height: 60px;
    justify-content: center;
    gap: 10px;
    padding-top: 11px;
}

/* Tüm kontrol butonları için ortak stil */
.control-btn {
    bottom: 0;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 30px;
    border: none; /* Stil tutarlılığı için eklendi */
    cursor: pointer; /* Kullanılabilirlik için eklendi */
}

/* Buton ikonları için ortak stil */
.control-icon {
    width: 35px;
}

/* Gri butonlar için ek sınıf */
.btn-gray {
    background-color: gray;
}

/* Butonlara özel konum/renk stilleri */
#toggleShareBtn {
    display: none; /* Başlangıçta gizli */
}

#fullscreen-btn {
    position: absolute;
    right: 60px;
}

#close-btn {
    position: absolute;
    right: 10px;
    background-color: rgb(244, 67, 54);
}

/* Diğer elementler */
.participants {
    position: fixed;
    bottom: 0;
    left: 0;
    border: 0px;
}

.preloader-wrapper img {
    margin-bottom: 20%;
}