.grecaptcha-badge { visibility: hidden; } 

@font-face {
    font-family: 'Gabriola';
    src: url('gabriola.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

html {
    scroll-behavior: smooth;
}

.Gabriola{
    font-family: 'Gabriola', sans-serif;
    font-size: 15px;
}

body {
    font-family: 'El Messiri', sans-serif;
    background-color: #141414;
    overflow: hidden;
}

.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-load.loaded {
    opacity: 1;
}

img {
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

/*Radio Button Styling*/
input[type="radio"]{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px; 
    height: 16px;
    background-color: white; 
    border: 2px solid #ffffff; 
    display: inline-block;
    position: relative;
}

input[type="radio"]:checked{
    border: 2px solid #ffffff;
}

input[type="radio"]::after{
    content: "";
    display: block;
    width: 10px; 
    height: 10px;
    background-color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0; 
}

input[type="radio"]:checked::after {
    opacity: 1;
}

/*Check Box Styling*/
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px; 
    height: 16px;
    background-color: white;
    border: 2px solid #ffffff; 
    display: inline-block;
    position: relative;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background-color: #0066FF; 
    border-color: #0066FF;
}

input[type="checkbox"]:checked::after {
    content: "✔";
    color: rgb(52, 101, 249);
    font-size: 17px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gold-text {
    font-weight: bold;
    text-transform: uppercase;
    background: url('https://cdn-oss.todakstudios.com/image/new-navbar.png');
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.title {
    background-image: url('https://cdn-oss.todakstudios.com/image/new-newspaper.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4af37; 
}
  
/* Feature Section */
.carousel-3D-swiper-section {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    /* min-height: 500px; */
}

.carousel-3D-swiper-title {
    text-align: center;
    font-size: 3rem;
    color: orangered;
}

.carousel-3D-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.carousel-3D-swiper .swiper-slide {
    position: relative;
    width: 300px;
    opacity: 0.3; 
    transition: opacity 0.3s ease-in-out;
}

.carousel-3D-swiper .swiper-slide-active {
    opacity: 1;
}

.carousel-3D-swiper .image-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

.carousel-3D-swiper .image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.swiper-button-prev,
.swiper-button-next {
    color: white !important;
    width: 0px !important;     
}

