/*** Custom Color Variables ***/
:root {
    --light-orange: #FFD7B3;
    --medium-orange: #FFB366;
    --dark-orange: #FF9533;
    --light-blue: #87CEEB;
    --medium-blue: #4A9FD9;
    --dark-blue: #003A66;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}

/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
  /* Logo boyutunu büyütmek için logo-img sınıfı eklendi ve !important ile geçersiz kılındı */
.navbar-brand .logo-img {
    height: 140px !important;   /* Masaüstü logosu (isteğe göre değiştirin) */
    width: auto !important;
    max-height: none !important;
    display: block;
    object-fit: contain;
  }

  /* Navbar yüksekliğini logoya göre ayarla */
  .navbar {
    min-height: 140px;
    align-items: center;
  }

  /* Küçük ekranlarda da büyük görünmesi için tablet-boyut */
  @media (max-width: 991.98px) {
    .navbar-brand .logo-img {
      height: 110px !important; /* Tablet için */
    }
    .navbar {
      min-height: 110px;
    }
  }

  /* Mobil: burada da logo büyük olsun (ör. 90px) */
  @media (max-width: 575.98px) {
    .navbar-brand .logo-img {
      height: 90px !important; /* Mobil için daha büyük değer */
    }
    .navbar {
      min-height: 90px;
    }

    /* Mobilde menü düğmesi ve butonlar dikey ortalansın */
    .navbar .navbar-toggler,
    .navbar .btn,
    .navbar .btn-group {
      align-self: center;
    }
  }

  /* Temizleme: varsa kısıtlayıcı eski kuralları etkisizleştir */
  .navbar-brand h1 { margin: 0; line-height: 1; }
  .navbar-brand img { max-width: none !important; }


/* --- Hero bölümüne özel stiller (index.html head içine yapıştırın) --- */
/* --- --- */
.hero-section {
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
    padding-top: 60px;
    padding-bottom: 40px;
}

.hero-image-wrap {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(20, 20, 40, 0.08);
    object-fit: cover;
}

/* seçim kutuları */
.hero-selectors .selector {
    position: relative;  
    z-index: 1; 
    min-width: 230px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(9, 30, 66, 0.06);
    overflow: visible;
}

.selector-toggle {
    width: 100%;
    text-align: left;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 14px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.selector-label {
    letter-spacing: 1px;
    font-size: 12px;
}

.selector-value {
    font-size: 15px;
}

.selector .selector-list {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    box-shadow: 0 20px 40px rgba(9, 30, 66, 0.08);
    z-index: 50;
    max-height: 260px;
    overflow: auto;
}

.selector.open .selector-list {
    display: block;
}

.selector-list li {
    padding: 12px 16px;
    cursor: pointer;
    color: #333;
}

.selector-list li:hover {
    background: #f8f9fb;
}

/* overlay bildirim */
.notif-card {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(9, 30, 66, 0.06);
}

.notif-card .notif-icon {
    background: #fff7e6;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* floating dropdown küçük kutu */
.floating-dropdown {
    position: absolute;
    top: 110px;
    right: 18px;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 16px;
    border-radius: 12px;
    width: 180px;
    box-shadow: 0 10px 30px rgba(9, 30, 66, 0.05);
}

.floating-dropdown ul {
    padding-left: 0;
    margin: 8px 0 0 0;
    list-style: none;
}

.floating-dropdown li {
    padding: 6px 0;
    color: #555;
}

/* testimonial */
.testimonial-card {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    width: 240px;
    box-shadow: 0 20px 40px rgba(20, 20, 40, 0.06);
}

/* responsive küçük ekranlar */
@media (max-width: 991px) {
    .hero-image {
        max-width: 320px;
    }

    .hero-section .col-lg-7,
    .hero-section .col-lg-5 {
        text-align: center;
    }

    .hero-selectors {
        justify-content: center;
    }

    .testimonial-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }
}

/* --- --- */

.bg-breadcrumb {
    background: linear-gradient(rgba(255, 183, 102, 0.9), rgba(255, 183, 102, 0.8)), url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}

/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}

/*** Carousel Hero Header End ***/


/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../img/breadcrumb.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);

}

.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-white);
    background: rgba(255, 183, 102, 0.8);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(135, 206, 235, 0.6);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}

.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter {
        margin-bottom: 40px;
    }
}

/*** Counter Facts End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}

/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 183, 102, 0.2);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

/*** Features End ***/


/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(135, 206, 235, 0.8);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}

/*** Country End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}

/*** testimonial end ***/


/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(255, 183, 102, 0.7);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}

/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(255, 183, 102, 0.4);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}

/*** copyright end ***/
/* Sayfa arkaplanı ve section */
.flags-section {
  background: #f5f6f8; /* sayfa arkaplanı açık gri */
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Kartlar - temel */
.flags-grid .card {
  border-radius: 14px;                /* yuvarlatılmış köşeler */
  background: #ffffff;                /* beyaz kart */
  border: 1px solid #eef0f3;          /* çok hafif sınır */
  box-shadow: 0 8px 20px rgba(23,28,34,0.04); /* yumuşak gölge */
  padding: 28px 26px;                 /* iç boşluk */
  display: flex;
  flex-direction: column;
  justify-content: space-between;     /* başlık üstte, linkler altta */
  min-height: 220px;                  /* eşit yükseklik için (isteğe göre ayarla) */
  transition: transform .18s ease, box-shadow .18s ease;
}

/* Hover efekti */
.flags-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(23,28,34,0.09);
}

/* Bayrak + başlık satırı */
.flags-grid .flag-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* Bayrak resmi */
.flags-grid .flag-img {
  width: 54px;            /* görseldeki boyut benzeri */
  height: 40px;
  object-fit: cover;
  border-radius: 8px;     /* hafif oval kenar */
  box-shadow: 0 6px 14px rgba(17,24,39,0.05);
  flex-shrink: 0;
}

/* Başlık ve alt başlık (metin) */
.flags-grid .country-name {
  font-size: 1.35rem;     /* büyük, dikkat çekici */
  font-weight: 700;
  color: #111318;
  margin: 6px 0 4px;
  line-height: 1.05;
}
.flags-grid .country-sub {
  font-size: 0.95rem;
  color: #8f9fb1;         /* gri-mavi ton */
  margin: 0;
}

/* Linkler kısmı (kart altı): iki linki kenarlara yaslamak için space-between */
.flags-grid .card-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

/* Link görünümü */
.flags-grid .card-links a {
  color: #8f9fb1;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 6px 0;
}
.flags-grid .card-links a:hover {
  color: #4b5966;
  text-decoration-color: rgba(75,89,102,0.4);
}

/* Küçük ekran ayarları */
@media (max-width: 575.98px) {
  .flags-grid .card {
    padding: 18px;
    min-height: 200px;
  }
  .flags-grid .flag-img { width: 46px; height: 34px; }
  .flags-grid .country-name { font-size: 1.1rem; }
  .flags-grid .country-sub { font-size: 0.85rem; }
  .flags-grid .card-links { margin-top: 12px; gap: 10px; }
}

/* Çok küçük ekranlarda linkleri iki satıra düşürmemek için */
@media (max-width: 400px) {
  .flags-grid .card-links { flex-direction: column; align-items: flex-start; gap: 6px; }
}


.more-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #f37022 0%, #ef6a2b 100%);
  color: #fff;
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 8px 30px rgba(15,15,15,0.06);
}

/* Large number in top-left */
.more-card .big-num {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 10px;
  letter-spacing: -1px;
}

/* Title */
.more-card .title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 6px 0 12px;
}

/* Subtext link row */
.more-card .all-link {
  font-size: 0.98rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* small chevron on right-bottom */
.more-card .chev {
  position: absolute;
  right: 22px;
  bottom: 20px;
  font-size: 1.1rem;
  opacity: 0.95;
}

/* decorative translucent triangle */
.more-card::before {
  content: "";
  position: absolute;
  left: 18%;
  top: 40%;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.06);
  transform: rotate(-20deg);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  pointer-events: none;
}

/* dotted pattern in top-right using radial-gradient */
.more-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 120px;
  height: 120px;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.15) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.9;
  pointer-events: none;
  border-radius: 6px;
}

/* Hover */
.more-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15,15,15,0.12);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .more-card { padding: 20px; min-height: 180px; }
  .more-card .big-num { font-size: 2.6rem; }
  .more-card .title { font-size: 1.25rem; }
}
.btn.btn-primary.btn-lg-square.back-to-top {
    display: none !important;
  }

  .floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column; /* dikey istif */
    gap: 16px;              /* butonlar arası boşluk - overlap olmaz */
    align-items: center;    /* sağa hizalamak isterseniz flex-end yapın */
    z-index: 99999;
    pointer-events: auto;
  }

  .floating-actions a.fab-btn,
  .floating-actions a.back-to-top {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    /* Gölge yatay ofsetsiz: buton gölgesi diğer butonun altında "görünmez" */
    box-shadow: 0 8px 24px rgba(15,15,15,0.08);
    transition: transform .12s ease, box-shadow .12s ease;
    font-size: 22px;
    border: 0;
    background-clip: padding-box;
  }

  /* Hover: yukarı kaydırma yok (translateY yok), sadece hafif scale */
  .floating-actions a.fab-btn:hover,
  .floating-actions a.back-to-top:hover {
    transform: scale(1.06);
    box-shadow: 0 18px 40px rgba(15,15,15,0.12);
  }

  /* Renkler ve normal z-index (çakışma olmasın diye büyük z-index verdik) */
  .floating-actions a.whatsapp { background: linear-gradient(180deg,#25d366,#1da851); z-index:1003; }
  .floating-actions a.phone    { background: linear-gradient(180deg,#0d6efd,#0b5ed7); z-index:1002; }
  .floating-actions a.back-to-top { background: linear-gradient(180deg,#ff8a00,#ff6f00); z-index:1001; }

  /* Icon renk/kontrast için küçük ayar */
  .floating-actions i { transform: translateY(1px); } /* ikon dik görünür */

  /* Küçük ekranlar */
  @media (max-width: 420px) {
    .floating-actions { right: 14px; bottom: 14px; gap: 12px; }
    .floating-actions a.fab-btn,
    .floating-actions a.back-to-top { width: 56px; height: 56px; font-size: 20px; }
  }
  /* CSS kısmı — mobilde fixed görünüm */
@media (max-width: 767.98px) {
  .hero-selectors .selector .selector-list.fixed {
    position: fixed;
    left: 12px;
    right: 12px;
        z-index: 99999 !important;

    /* top değeri JS ile ayarlanacak (style attribute olarak) */
    margin: 0;
    display: none;
    z-index: 3000;
    max-height: 60vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(3,7,18,0.22);
    background: #fff;
  }
  .hero-selectors .selector.is-open {
  z-index: 99990 !important;
}
  .hero-selectors .selector.is-open .selector-list.fixed {
    display: block;
  }
  .hero-selectors .selector .selector-toggle {
    position: relative;
    z-index: 100000;
  }
}
  /* --- Genel: hero kısmını stacking context yapalım --- */
.hero-section {
  position: relative; /* stacking context oluşturur */
  z-index: 5;
}

/* Selector ve listeyi üst katmana al */
.hero-selectors,
.selector {
  position: relative;
  z-index: 1050; /* bootstrap modal gibi bile üstte olmasını istiyorsanız 1050+ kullanın */
}

/* Açılan liste (desktop) */
.selector .selector-list {
  z-index: 1060;
}

/* Açık durumda selector tamamen en üstte olsun */
.selector.open {
  z-index: 2000;
}

/* --- Mobil uyarlamalar --- */
@media (max-width: 991.98px) {
  /* Mobilde listeler page-flow içinde açılıyor; yine de en üstte görünmesi için z-index veriyoruz */
  .selector,
  .selector .selector-list,
  .selector.open {
    position: relative;
    z-index: 2000;
  }

  /* Eğer bayraklarınızın kartları (flags-section .card) transform/opacity/position kullanıyorsa
     onlar da yeni stacking context oluşturuyor olabilir; bu durumda flags-section için daha düşük z-index verin */
  .flags-section {
    position: relative;
    z-index: 1;
  }
}

/* Opsiyonel: seçim listesi açıldığında hero bölümünün altındaki içerik kartlarının seçeneğin
   gölgesini/kenarlarını kesmemesi için (isteğe bağlı) hero'ya biraz padding-bottom ekleyebilirsiniz */
.hero-section.with-open-selector {
  padding-bottom: 1.5rem; /* gerektiğinde artırın (ör. 2.5rem) */
}

/* Flags section: card safe layout, flag left - info right */
.flags-section .card {
  overflow: hidden;          /* hiçbirşey kart dışına taşmasın */
  border-radius: 12px;
  box-sizing: border-box;
  background: #fff;
}

/* Flag + info row */
.flags-section .flag-row {
  display: flex;
  align-items: center;       /* bayrak ile başlık dikey ortalanır */
  gap: 16px;
  padding: 20px;
}

/* Bayrak görseli: sabit görsel kutusu, taşma yok */
.flags-section .flag-img {
  width: 56px;
  height: 40px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Sağdaki metin bloğu içindeki uzun metinlerin kartı taşırmaması için */
.flags-section .flag-row > div {
  flex: 1 1 auto;   /* genişleyip daralabilir */
  min-width: 0;     /* flex item içinde metinlerin kırılmasını sağlar */
  overflow: hidden;
}

/* Başlık ve alt başlık */
.flags-section .country-name {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 1.25rem;
}

.flags-section .country-sub {
  margin: 0 0 12px;
  color: #6b7280;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Kart altındaki linkler (sol ve sağa yerleşsin) */
.flags-section .card-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px 18px 20px;
}

.flags-section .card-links a {
  color: #6b7280;
  text-decoration: underline;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

/* --- Mobil: her satırda 1 kart (alt alta) --- */
/* Eğer HTML'de col-6 bırakıldıysa bu override ile küçük ekranlarda tam genişlik yapılır */
@media (max-width: 767.98px) {
  .flags-grid > .col-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .flags-section .flag-row {
    padding: 16px;
    gap: 12px;
  }

  .flags-section .flag-img {
    width: 48px;
    height: 34px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.10);
  }

  .flags-section .country-name {
    font-size: 1.15rem;
  }
}

/* Ek güvenlik: kart içindeki gölgelerin, border-radius'un dışarı taşmaması */
.flags-section .card, .flags-section .card * {
  box-sizing: border-box;
}

/* footer */
.footer {
    background: linear-gradient(180deg, #00c6ef 0%, #00b8e6 100%); /* canlı mavi / camgöbeği ton */
    color: #ffffff;
  }

  .footer .container {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  /* Başlıklar turuncu */
  .footer .footer-item h4 {
    color: #ffb366; /* turuncu başlık */
    font-weight: 700;
  }

  /* H6'lar ve küçük başlıklar daha açık beyaz */
  .footer .footer-item h6 {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
  }

  /* Paragraflar ve linkler beyaz */
  .footer .footer-item p,
  .footer .footer-item a,
  .footer .footer-item .mb-0 {
    color: #ffffff;
  }

  /* Link stilleri: beyaz normal, hover turuncu */
  .footer .footer-item a {
    display: block;
    color: #ffffff;
    opacity: 0.95;
    text-decoration: none;
    margin-bottom: 8px;
  }
  .footer .footer-item a:hover {
    color: #ffb366;
    text-decoration: none;
  }

  /* İkon renkleri turuncu (veya beyaz karışımı) */
  .footer .footer-item i.fas.fa-angle-right,
  .footer .footer-item i.fa-map-marker-alt,
  .footer .footer-item i.fas.fa-envelope,
  .footer .footer-item i.fas.fa-phone,
  .footer .footer-item i.fas.fa-print {
    color: #ffb366;
    margin-right: 8px;
  }

  /* Sosyal buton düzeni: beyaz ikon, turuncu vurgu */
  .footer .social-icon {
    color: #ffffff;
  }
  .footer .social-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.12); /* hafif beyaz yarı saydam yuvarlak */
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    margin-right: 6px;
  }
  .footer .social-btn i {
    color: #ffffff;
    font-size: 16px;
  }
  .footer .social-btn:hover {
    background: #ffb366;
    color: #ffffff;
    border-color: rgba(255,138,0,0.18);
  }

  /* Newsletter input ve buton */
  .footer .form-control {
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    caret-color: #ffffff;
  }
  .footer ::placeholder {
    color: rgba(255,255,255,0.75);
  }
  .footer .signup-btn {
    background: #ffb366; /* turuncu buton */
    color: #ffffff;
    border: none;
    padding: 8px 18px;
  }
  .footer .signup-btn:hover {
    background: #ffb366;
  }

  /* Bazı Bootstrap sınıflarını override et (text-secondary vb.) */
  .footer .text-secondary {
    color: #ffb366 !important;
  }

  /* Mobil düzenlemeleri */
  @media (max-width: 767.98px) {
    .footer .container { padding-top: 24px; padding-bottom: 24px; }
    .footer .social-btn { width: 44px; height: 44px; }
    .footer .footer-item { text-align: center; }
    .footer .footer-item .d-flex.align-items-center { justify-content: center; }
  }


  /*** YENİ ALAN ***/

/* Include this after your main CSS (e.g., add <link href="css/vize-kayan-ve-aciklama.css" rel="stylesheet">) */

/* ---------- Kayan Bar (üstteki bordo) ---------- */
.kayan-bar {
  background: #0ecaf0;              /* bordo arkaplan */
  color: #fff;
  height: 78px;                     /* büyük, ekran görüntüsündeki gibi */
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
}

/* Track that moves */
.kayan-track {
  display: inline-flex;
  gap: 4rem;
  align-items: center;
  white-space: nowrap;
  padding-left: 2rem;
  animation: kayan-anim 16s linear infinite;
  font-size: clamp(18px, 3vw, 36px); /* büyük metin, responsive */
  font-weight: 700;
  letter-spacing: .5px;
}

/* her öğe */
.kayan-item {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: #fff;
}

/* hover ile durdur (desktop) */
.kayan-bar:hover .kayan-track { animation-play-state: paused; }

/* Erişilebilirlik: reduced motion */
@media (prefers-reduced-motion: reduce) {
  .kayan-track { animation: none; }
}

/* animation */
@keyframes kayan-anim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-40%); } /* içerik uzunluğuna göre görün; gerekirse %-i ayarlayın */
}

/* ---------- İçerik kartı: üst foto, altta dikkat çekici metin ---------- */
#aciklama-kutu, .aciklama-kutu {}

/* Foto alanı */
.main-photo {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(17, 24, 32, .06);
  display: block;
}

/* Kültür vizesi callout */
.kultur-callout {
  background: linear-gradient(90deg, #fff7e8, #eaf8ff);
  border-left: 4px solid #f0b400;
  padding: 12px;
  border-radius: 8px;
  text-align: left;
  color: #322a2a;
  box-shadow: 0 8px 20px rgba(15, 50, 70, .04);
  font-size: 14px;
}

/* Sağ metin: küçük kartlar (mini-item) */
.mini-item {
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
  box-shadow: 0 10px 24px rgba(9, 35, 50, .04);
  transition: transform .12s ease;
  font-size: 14px;
}
.mini-item strong { color: #4b0f1f; }
.mini-item:hover { transform: translateY(-4px); }

/* compact multi-line grid at bottom */
.mini-grid div {
  background: linear-gradient(180deg,#f7fbff 0%, #ffffff 100%);
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #4b4b4b;
  font-size: 14px;
}

/* buttons */
#vize-kayan-ve-aciklama .btn-primary { background:#4b0f1f; border-color:#4b0f1f; }
#vize-kayan-ve-aciklama .btn-outline-secondary { border-color:#cfcfcf; color:#333; }

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .kayan-bar { height: 64px; }
  .kayan-track { animation-duration: 14s; font-size: clamp(16px, 4.2vw, 28px); }
  .kultur-callout { font-size: 13px; }
}

@media (max-width: 575.98px) {
  .kayan-bar { height: 56px; }
  .kayan-track { font-size: 18px; animation-duration: 12s; }
  .mini-item, .mini-grid div { font-size: 13px; padding: 9px; }
  .kayan-bar { overflow-x: hidden; } /* mobilde taşma kontrolü */
}

/* Header */


        /* Add to your stylesheet (ör. style.css) */

        /* Container: dikey yerleşim, ortalanmış */
        .logo-with-text-vertical {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            /* logo ile yazı arasındaki boşluk */
            padding: 6px 0;
        }

        /* Logo boyutu (küçültüldü) - ihtiyaca göre ayarlayın */
        .logo-img-vertical {
            width: 64px;
            /* örnek: 64px. Daha küçük/ büyük isterseniz değiştirin */
            height: auto;
            display: block;
        }

        /* Yazıların ortalanmış blok sarmalayıcısı */
        .logo-text-vertical {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Altın degradeli metin efekti (başlık) */
        .logo-title-vertical,
        .logo-subtitle-vertical {
            font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            background-image: linear-gradient(90deg, #b8862b 0%, #e8c06c 35%, #ffd774 60%, #b77b2a 100%);
            text-transform: uppercase;
            margin: 0;
        }

        /* Başlık stili */
        .logo-title-vertical {
            font-size: 14px;
            /* header alanına göre ayarla: 14-20px arası deneyin */
            font-weight: 700;
            letter-spacing: 1.8px;
            line-height: 1;
        }

        /* Alt başlık (küçük, harf aralıklı) */
        .logo-subtitle-vertical {
            font-size: 9px;
            /* başlık altı küçük yazı */
            font-weight: 600;
            letter-spacing: 3.5px;
            opacity: 0.95;
            margin-top: 2px;
        }

        /* Küçük ekranlarda biraz daha küçült */
        @media (max-width: 576px) {
            .logo-img-vertical {
                width: 56px;
            }

            .logo-title-vertical {
                font-size: 12px;
                letter-spacing: 1.2px;
            }

            .logo-subtitle-vertical {
                font-size: 8px;
                letter-spacing: 2px;
            }
        }

        /* Hafif parlaklık / gölge (isteğe bağlı) */
        .logo-title-vertical,
        .logo-subtitle-vertical {
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 2px 4px rgba(0, 0, 0, 0.06);
        }

        .btn-call-outline-blue {
            background: #ffffff;
            /* beyaz iç */
            color: #0b72bf;
            /* yazı mavi */
            border: 2px solid #0b72bf;
            /* mavi kenarlık */
            box-shadow: none;
            min-width: 190px;
            font-weight: 600;
            transition: background .12s ease, color .12s ease, transform .12s ease, box-shadow .12s ease;
            border-radius: .375rem;
        }

        .btn-call-outline-blue i {
            color: #0b72bf;
        }

        /* Hover / focus: invert to filled blue for görsel etki (isteğe göre kaldırabilirsiniz) */
        .btn-call-outline-blue:hover,
        .btn-call-outline-blue:focus {
            background: linear-gradient(180deg, #0b72bf, #0860a3);
            color: #fff;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(11, 114, 191, 0.14);
        }

        @media (max-width: 576px) {
            .contact-quick-actions .btn {
                min-width: 100%;
                justify-content: center;
            }

            .contact-quick-actions .btn.ms-auto {
                margin-left: 0 !important;
            }
        }
    