body {
    font-family: omnesregular;
    transition: 0.4s;
}


.ccnewKremBeyaz
{
    color:#f4e9d5 !important;
}
.ccnewKremBeyazBack
{
    background-color :#f4e9d5 !important;
}
.ccnewTuruncu
{
    color :#ff7c14 !important;
}
.ccnewTuruncuBack
{
    background-color :#ff7c14 !important;
}
.ccnewKirmizi
{
    color :#cf2532 !important;
}
.ccnewKirmiziBack
{
    background-color :#cf2532 !important;
}
.ccnewKahverengi
{
    color :#65271a !important;
}
.ccnewKahverengiBack
{
    background-color :#65271a !important;
}


.header {
    background-color: #1e1e1e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
    position: relative;
}



/* Logo */
.logo img {
    height: 80px;
}

.language-selector {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1001;
}

.language-selector .btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #f08c00;
    color: #f08c00;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.language-selector .btn:hover {
    background-color: #f08c00;
    color: #1e1e1e;
}

.dropdown-menu {
    background-color: #1e1e1e;
    color: white;
    border: none;
    margin-top: 10px;
    padding: 0;
    border-radius: 10px;
    z-index: 1050;
}






.dropdown-menu .dropdown-item {
    padding: 10px;
    color: #f08c00;
    text-align: center;
    text-decoration: none;
    font-family: 'omnesbold';
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f08c00;
    color: white;
}

/* Hamburger Menü */
.hamburger {
    position: absolute;
    top: 15px;
    right: 20px;
    display: none; /* Varsayılan olarak gizli */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1200;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobil Menü */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1e1e1e;
    display: none; /* Başlangıçta gizli */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 0;
}

.nav.active {
    display: flex;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    
    font-family: 'omnesbold';
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f08c00;
}


/* Masaüstü ve Mobil Ayrımı */
@media (min-width: 768px) {
    .nav-link{
        font-size: 18px;
    }
    .product-display {
        display: flex;
        justify-content: right;
        align-items: center;
        gap: 20px;
        margin-top: -310px;
        margin-bottom: -120px;
    }
    
    .product-display img {
        width: 700px;
        height: auto;
    }
    .franchise1-section h2
    {
        font-size: 65px;
    }

    .sube-section h2
    {
        font-size: 65px;
    }

    .news-section h2
    {
        font-size: 65px;
    }
    .nav {
        display: flex; /* Masaüstünde menüyü görünür yap */
        position: relative;
        height: auto;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        background: none;
        padding: 0;
    }

    .nav.active {
        display: flex; /* Masaüstünde her zaman görünür */
    }

    .nav-list {
        flex-direction: row;
        gap: 15px;
    }

    .hamburger {
        display: none; /* Masaüstünde gizle */
       
    }

    .language-selector {
        position: static;
    
    }
    
    .card img {
    height: 400px;
}

}


/* Mobil Stil */
@media (max-width: 768px) {


.card img {
    height: 480px;
}

    .nav-link{
        font-size: 21px;
    }

    .product-display {
        display: flex;
        justify-content: right;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
        margin-bottom: -20px;
    }
    
    .product-display img {
        width: 100%;
        height: auto;
    }
    
    .franchise1-section h2
    {
        font-size: 35px;
    }
    
    .sube-section h2
    {
        font-size: 45px;
    }

    .franchise-section
    {
        height: 400px;
    }
    .news-section h2
    {
        font-size: 50px;
    }
    .info-box .follow-us
    {
       
        margin-top: 25px;
        margin-right: 37px;
    }
    .about-title
    {
        line-height: 1;
        
    }
    .about-description{
        line-height: 1.3;
    }

    .feature-item {
        padding: 10px; /* Mobilde padding'i küçült */
        margin-bottom: 10px; /* Kutular arasında boşluk oluştur */
        border-radius: 20px; /* Daha küçük yuvarlak köşeler */
        text-align: center; /* İçeriği merkeze hizala */
    }

    
    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: #1e1e1e;
        flex-direction: column;
        display: none;
        padding: 0;
    }

   

    .nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-left: 20px;
    }

    .nav-link {
        padding: 10px 20px;
        width: 100%;
    }

   

    .language-selector {
        top: auto;
        right: 90px;
    }

    .dropdown-menu {
        right: 15px;
        left: auto;
        width: 150px; /* Daha küçük cihazlar için genişlik ayarı */
    }

    .hamburger {
        display: flex;
        margin-top:25px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
}


.omnesblack {
    font-family: 'omnesblack';
}

.omnesbold {
    font-family: 'omnesbold';
}

.omnesregular {
    font-family: 'omnesregular';
}

.omnesmedium {
    font-family: 'omnesmedium';
}



/*********************/

#slider.promo-section {
    background-color: #ee8800;
    color: white;
    padding: 0 !important;
}

#slider .promo-text h1 {
    font-size: 3rem;
    font-weight: bold;
}

#slider .promo-text {
    text-align: left;
    padding: 80px 10px;
}

#slider .promo-text h2 {
    font-size: 3.5rem;
    font-family: 'omnesbold';
    line-height: 50px;
    margin-bottom: 25px;
}

#slider .promo-text h2 span {
    font-size: 115px;
}

#slider .promo-text p {
    font-size: 36px;
    margin: 25px 0;
    line-height: 35px;
    font-family: omnesregular;
}

#slider .promo-text .btn {
    font-size: 1.2rem;
    padding: 10px 30px;
    border-radius: 50px;
}

#slider .img-fluid {
    max-width: 100%;

}

#slider .text-danger {
    font-size: 55px;
    font-family: 'omnesbold';
    line-height: 48px;
    position: relative;
}

#slider .text-danger span {
    font-size: 80px;
}

#slider .promo-text p span {
    font-family: 'omnesbold';
}



/*********************/
.feature-item h6 {
    font-size: 20px;
    text-transform: uppercase;
    transition: 0.4s;
}

.feature-item strong {
    font-size: 28px;
    font-family: 'omnesblack';
    transition: 0.4s;
}

h2.about-title {
    font-size: 36px;
    margin-bottom:30px;
}

p.about-description {
    font-size: 23px;
}

section.content-section {
    margin-bottom: 130px;
}

.bg-danger {
    background-color: #f4e9d5 !important;
}

.color-red {
    color: #ce2731 !important;
}

.bg-warning {
    background-color: #ff7c14 !important;
}

.rounded-pill {
    border-radius: 50px !important;
}

/*********************/
.franchise-section {
    background-color: #ce2731;
    color: white;
    text-align: left;
    padding: 40px 0;
    position: relative;
    margin: 80px 0;
}

/* Başvuru metin kısmı */
.franchise-section h1 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 10px;

}

.franchise-section p {
    background-color: #f08c00;
    color: white;
    display: inline-block;
    padding: 4px 30px 7px 30px;
    border-radius: 30px;
    font-size: 16px;
    margin-top: 10px;
    margin-left: 70px;
}



/* Buton stili */
.franchise-section .apply-btn {
    background-color: #f08c00;
    color: white;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    margin-top: 20px;
    text-decoration: none;
}

h2.fw-bold.text-danger.omnesbold {
    font-size: 77px;
    transition: 0.4s;
}

.map-container {
    margin-top: 20px;
   
}

.google-map {
    height: 550px;
    border-bottom: 10px solid #ff7c14;
    border-top: 10px solid #ff7c14;
}

/*********************/
.news-section {
    text-align: center;
    padding: 50px 0;
}

.news-section h2 {
    
    color: #ce2731;
    margin-bottom: 30px;
}

.franchise1-section {
    text-align: center;
    padding: 50px 0;
}

.sube-section {
    text-align: center;
    padding: 50px 0;
}

.sube-section h2 {
    
    color: #ce2731;
    margin-bottom: 30px;
}

span.ball {
    background: #ffcd2c;
    width: 10px;
    height: 10px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50px;
    margin: 10px;
}

.card {
    border: none;
    border-radius: 0px;
    color: #ce2731;
    overflow: hidden;
    padding: 10px;
    height: 100%;
    text-align: left;
}

.card img {

    object-fit: cover;
}

.card-title {
    font-family: 'omnesblack';
    font-size: 22px;
    margin-top: 15px;
}

.card-text {
    font-size: 15px;
    color: #000000;
    line-height: 20px;
    font-family: 'omnesmedium';
}

.news-footer {
    margin-top: 50px;
}

.news-footer a {
    background-color: #ce2731;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 17px;
    font-family: 'omnesmedium';
}

.news-footer a:hover {
    text-decoration: none;
    color: #ffcd2c;
}

/*********************/

.stats-section {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    gap: 20px;
}

.stat-box {
    padding: 20px;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 8px;
    flex: 1;
}

.stat-box.red {
    background-color: #ce2731;
}

.stat-box.orange {
    background-color: #f08c00;
}

.stat-box.black {
    background-color: #000000;
    position: relative;
}

.stat-box.black .badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #f08c00;
    border-radius: 50%;
    padding: 10px;
    font-size: 0.8rem;
}

.all-branches {
    text-align: center;
    margin-top: 20px;
}

.all-branches a {
    background-color: #ce2731;
    color: white;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 30px;
}

/********************/

.info-box {
    text-align: center;
    padding: 20px;
    color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.5rem;
}

.info-box.red {
    background-color: #cf2532;
}

.info-box.orange {
    background-color: #ff7c14;
}

.info-box.black {
    background-color: #65271a;
    position: relative;
}

.info-box .follow-us {
    position: absolute;
    top: -20px;
    right: -30px;
    background-color: #ff7c14;
    border-radius: 50%;
    padding: 27px 10px;
    font-size: 18px;
    line-height: 22px;
    width: 97px;
    height: 97px;

    font-family: 'omnesbold';
}

.btn-custom {
    background-color: #ce2731;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
}

/********************/
.info-container {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    /* Light background */
}

.info-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.container.text-center.istat {
    padding: 0 5%;
    margin-bottom: 100px;
}

.container.text-center.istat span {
    font-size: 100px;
    font-family: 'omnesbold';
    transition: 0.4s;

}

.container.text-center.istat .info-box {
    font-size: 45px;
    font-family: 'omnesbold';
    line-height: 55px;
    padding: 40px 0;
    transition: 0.4s;
}
.container.product-display.animate__animated.animate__fadeInUp.animate__fadeInLeft.animate__delay-1s {
    pointer-events: none;
}
/********************/
.footer {
    background-color: #ff7c14;
    padding: 10px 0;
    color: white;
}

.footer .social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
}
.kalin
{
    font-family: 'omnesbold';
}

footer .bottom-footer {
    background-color: #65271a;
    padding: 20px 0;
    text-align: center;
    color: white;
}

footer .bottom-footer img {
    max-height: 50px;
}

footer .bottom-footer p {
    margin: 5px 0;
    font-family: 'omnesregular';
}

.carousel-indicators [data-bs-target] {
    border-radius: 50px;
    width: 15px;
    height: 15px;
    border: 3px solid white;
    opacity: 1;
    background: none;
}

.col-12.col-sm-12.col-md-6.col-lg-6.col-xl-6.col-xxl-3 {
    margin-bottom: 20px;
}

.carousel-indicators .active {
    opacity: 1;
    background: white;
}

button.carousel-control-prev,
button.carousel-control-next {
    display: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        /* Biraz büyütme efekti */
        opacity: 0.9;
        /* Hafif bir şeffaflık */
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}





@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgb(240 140 0 / 80%);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

#franchise-zincir {
    cursor: pointer;
    animation: pulse-animation 2s infinite ease-in-out;
    display: inline-block;
    padding: 10px;
    padding-left: 40px;
    padding-right: 40px;
}

img.flag-icon {
    width: 60px !important;
}

.map-section {
    background-image: url('images/subelerimiz.jpg');
    /* Görüntü dosya adınızı buraya girin */
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}



@media(max-width:1400px) {
    .feature-item h6 {
        font-size: 14px;
    }

    .feature-item strong {
        font-size: 22px;
    }

  

}


@media(max-width:1200px) {


    .container.text-center.istat span {
        font-size: 60px;
        font-family: 'omnesbold';
    }

    .container.text-center.istat .info-box {
        font-size: 30px;
        font-family: 'omnesbold';
        line-height: 45px;
        padding: 30px 0;
    }

    h2.fw-bold.text-danger.omnesbold {
        font-size: 50px;
    }

 

 

    .franchise-section h1 {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .franchise-section p {
        background-color: #f08c00;
        color: white;
        display: inline-block;
        padding: 4px 30px 7px 30px;
        border-radius: 30px;
        font-size: 15px;
        margin-top: 10px;
        margin-left: 0px;
    }

}

@media(max-width:1400px) {
    #slider .promo-text h2 span {
        font-size: 70px;
    }

    #slider .promo-text h2 {
        font-size: 2.4rem;
        font-family: 'omnesbold';
        line-height: 35px;
        margin-bottom: 25px;
    }

    #slider .text-danger span {
        font-size: 55px;
    }

    #slider .text-danger {
        font-size: 35px;
        font-family: 'omnesbold';
        line-height: 34px;
    }

    #slider .promo-text p {
        font-size: 24px;
        margin: 25px 0;
        line-height: 26px;
        font-family: omnesregular;
    }

    #slider .promo-text .btn {
        font-size: 1rem;
        padding: 10px 20px;
        border-radius: 50px;
    }

    #slider .promo-text {
        text-align: left;
        padding: 50px 10px;
    }

}

/*konsept */


