@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");



@keyframes flipOnce {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

.flip-animation {
    animation: flipOnce 0.6s ease;
}



:root {
    --primary_color: #FCAD1C;
    --secondary_color: #231F20;
    --text_dark_color: #222222;
    --text_light_color: #fff;
    --hover: #b8b8b8;
    --description_p_color: #606060;
    --white: #fafafa;
}

.list-group-item.active {
    z-index: 2;
    color: var(--white);
    background-color: var(--primary_color);
    border-color: var(--primary_color);
}

.rounded-8px {
    border-radius: 8px !important;
}

.rounded-10px {
    border-radius: 10px !important;
}

.rounded-12px {
    border-radius: 12px !important;
}

.rounded-25px {
    border-radius: 25px !important;
}

.text-12px {
    font-size: 12px;
}

.text-14px {
    font-size: 14px;
}

.text-16px {
    font-size: 16px;
}

.text-18px {
    font-size: 18px;
}

.text-20px {
    font-size: 20px;
}

.text-22px {
    font-size: 22px;
}

.text-24px {
    font-size: 24px;
}

.card {
    border-radius: 12px;
}

body {
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-size: 14px;
    background: #F4F1F8;
    color: var(--text_dark_color);
}

#cookieConsent {
    width: 100%;
    position: fixed;
    bottom: 0px;
    z-index: 9999;
    padding: 10px;
}

#cookieConsent .cookie-card {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    z-index: 9999;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
}

#cookieConsent .cookie-card img {
    margin-bottom: 16px;
    height: 50px;
}



.btn-custom {
    background: var(--primary_color) !important;
    color: var(--white) !important;
    border-radius: 12px !important;
}

.btn-custom-2 {
    background: var(--secondary_color) !important;
    color: var(--white) !important;
    border-radius: 12px !important;
}

.btn-custom-gradient {
    background: #FCAD1C;
    background: linear-gradient(90deg, rgb(252, 173, 28) 0%, rgb(215, 157, 51) 100%);
    color: var(--white) !important;
    border-radius: 12px !important;
    transition: all 0.3s linear;
    border: 0px;
}

.btn-custom-gradient:hover {
    background: #FCAD1C;
    background: linear-gradient(90deg, rgb(215, 157, 51) 0%, rgb(252, 173, 28) 100%);
    border-radius: 12px !important;
    color: var(--white) !important;
}

.bg-custom {
    background: var(--primary_color) !important;
}

.bg-custom-2 {
    background: var(--secondary_color) !important;
}

.text-custom {
    color: var(--primary_color) !important;
}

.text-custom-2 {
    color: var(--text_dark_color) !important;
}

.text-custom-3 {
    color: var(--description_p_color) !important;
}

a {
    text-decoration: none;
    transition: all 0.3s linear;
    font-family: "Manrope", sans-serif;
}

a:hover {
    text-decoration: none;
    color: var(--hover);
}

.clear {
    clear: both;
}

.rectangle-left {
    background: url(../images/rectangle-left.png) no-repeat right center;
    width: 100px;
    height: 360px;
    position: absolute;
    z-index: 999;
    top: 495px;
}

.rectangle-top {
    background: url(../images/rectangle-top.png) no-repeat bottom center;
    width: 106px;
    height: 40px;
    position: absolute;
    z-index: 999;
    top: 0px;
    right: 10px;
}

.rectangle-right {
    background: url(../images/rectangle-right.png) no-repeat left center;
    width: 60px;
    height: 144px;
    position: absolute;
    z-index: 999;
    top: 400px;
    right: 0px;
}

.rectangle-underconstruction {
    background: url(../images/underconstruction.png) no-repeat left center;
    width: 245px;
    height: 245px;
    position: absolute;
    z-index: 999;
    top: 450px;
    left: 20px;
}

/* Varsayılan: kapalı (ama layout için block) */
.custom-dropdown .dropdown-menu {
    display: block;                 /* BS display'i kontrol etmesin diye */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    transform: translateY(4px);
    transition: opacity .2s ease, transform .2s ease;
}

/* Desktop: hover veya klavyeyle odaklanınca aç */
@media (hover: hover) and (pointer: fine) {
  .custom-dropdown:hover > .dropdown-menu,
  .custom-dropdown:focus-within > .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }
}

/* Mobil & genel: Bootstrap tıklayınca .show ekler; görünür yap */
.custom-dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Link stilleri */
.custom-dropdown .dropdown-menu a {
    font-size: 13px;
    color: var(--secondary_color);
}

/* Hover/focus renkleri (primary arkayı kaldır veya özelleştir) */
.custom-dropdown .dropdown-item:hover {
    background: var(--primary_color);
    color: #fff;
}
.custom-dropdown .dropdown-item:focus,
.custom-dropdown .dropdown-item:active {
    background: transparent !important;
    color: inherit !important;
    outline: none !important;
}

/* (ÖNEMLİ) Eski kodundaki bu kısmı SİL:
@media (max-width: 991px) {
  .custom-dropdown:hover>.dropdown-menu { display: none; ... } 
}
*/


header {
    width: 100%;
    background: url(../images/headersubpagebg.jpg) no-repeat center center;
    background-size: 100% auto;
    padding: 10px 0px;
}

header.homepage {
    position: absolute;
    z-index: 2;
    background: none;
    top: 0px;
}

.nav {
    --bs-nav-link-padding-y: 1.2rem;
}

.navbar a {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
}

.navbar a:hover {
    color: var(--primary_color);
}

.nav-link:focus,
.nav-link:hover {
    color: var(--primary_color);
}

.navbar a.nav-link-top {
    color: var(--white);
    font-weight: 400;
    font-size: 12px;
}

.navbar .menuCustomerCare {
    display: flex;
    align-items: center;
    justify-content: start;
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
}

.navbar .menuCustomerCare .CustomerCareTitle {
    font-size: 11px;
    font-weight: 400;
    color: var(--text_light_color);
    text-align: right;
}

.navbar .menuCustomerCare .CustomerCareContent {
    font-size: 13px;
    font-weight: 600;
    color: var(--text_light_color);
}

.navbar .menuCustomerCare .icon {
    margin: 0px 8px 0px 8px;
    font-size: 22px;
    color: var(--text_light_color);
}


#slider {
    width: 100%;
    height: 675px;
    margin: 0px;
    padding: 0px;
}


#slider .swiper {
    width: 100%;
    height: 675px;
    padding: 0px;
}

#slider .swiper .swiper-slide {
    width: 100%;
    padding: 0px;
    height: 675px;
}

#slider .swiper .swiper-slide video {
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
}

#slider .swiper .swiper-slide img {
    width: 100%;
    height: 675px;
    object-fit: cover;
    object-position: center;
    position: absolute;
}

#slider .swiper .swiper-slide .content {
    font-weight: bold;
    font-size: 56px;
    height: 100%;
    position: relative;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#slider .swiper .swiper-slide .content h2 {
    color: var(--text_light_color);
    font-weight: bold;
    margin-bottom: 0px;
}

#slider .swiper .swiper-slide .content span {
    color: var(--primary_color)
}

#slider .swiper .swiper-slide .content span.primary {
    color: var(--primary_color)
}

.title-line {
    width: 120px;
    height: 3px;
    background: #FCAD1C;
    display: block;
    margin: 20px auto;
}

#features {
    width: 100%;
    margin: 40px 0px;
}

#features h2 {
    font-size: 36px;
    color: var(--text_dark_color);
    margin: 0px;
    font-weight: 300;
}

#features p.title-description {
    padding: 0px 200px;
    text-align: center;
    color: var(--text_dark_color);
}

#features .card {
    min-height: 171px;
}

#features .icon {
    width: 60px;
    height: 60px;
    background-color: #FCAD1C;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 30px;
}

#features .icon i {
    transform: rotate(-45deg);
    font-size: 30px;
    color: white;
}

#features h3 {
    font-size: 16px;
    font-weight: bold;
}


#services {
    width: 100%;
    margin: 70px 0px;
    transition: all 0.3s linear;
}

#services h2 {
    font-size: 36px;
    color: var(--text_dark_color);
    margin: 0px;
    font-weight: 300;
}

#services p.title-description {
    padding: 0px 200px;
    text-align: center;
    color: var(--text_dark_color);
}


#services .number {
    width: 48px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary_color);
    color: var(--text_light_color);
    font-size: 24px;
    border-radius: 50%;
    margin-bottom: 10px;
    font-weight: bold;
    transition: all 0.3s linear;
}

#services h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s linear;
}

#services .more {
    color: var(--primary_color);
    font-weight: bold;
    transition: all 0.3s linear;
}

#services a:hover .number {
    background-color: var(--text_light_color);
    color: var(--primary_color);
}

#services .card {
    transition: all 0.3s linear;
    min-height: 290px;
}

#services .card .card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

#services a:hover .card {
    background-color: var(--primary_color);
}

#services a:hover h3 {
    color: var(--text_light_color);
}

#services a:hover .more {
    color: var(--text_light_color);
}

#services p {
    transition: all 0.3s linear;
}

#services a:hover p {
    color: var(--text_light_color);
}

#blog {
    width: 100%;
    margin: 40px 0px;
    padding: 80px 0px;
    background: var(--secondary_color) url(../images/blogBg.png) no-repeat top right;
}

#blog h2 {
    font-size: 36px;
    color: var(--text_light_color);
    margin: 0px;
    font-weight: 300;
}

#blog p.title-description {
    padding: 0px 200px;
    text-align: center;
    color: var(--text_light_color);
}

#blog .card {
    min-height: 171px;
}

#blog .card .card-img-top {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}


#blog .card .icon {
    width: 48px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary_color);
    color: var(--text_light_color);
    font-size: 24px;
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.3s linear;
    margin-right: 10px;
}


#blog h3 {
    font-size: 18px;
    color: var(--text_dark_color);
    margin: 10px 0px;
}


#testimonials {
    width: 100%;
    margin: 70px 0px;
    transition: all 0.3s linear;
}

#testimonials h2 {
    font-size: 36px;
    color: var(--text_dark_color);
    margin: 0px;
    font-weight: 300;
    text-align: center;
}

#testimonials p.title-description {
    padding: 0px 200px;
    text-align: center;
    color: var(--text_dark_color);
}



#testimonials .card {
    transition: all 0.3s linear;
    min-height: 290px;
}

.rectangle {
    background: url(../images/rectangle-testimonials.png) no-repeat right center;
    width: 81px;
    height: 81px;
    position: absolute;
    z-index: 999;
    top: 0px;
    left: 0px;
    border-top-left-radius: 12px;
}

#testimonials .card .card-body {
    padding: 20px;
}

#testimonials .card .card-body .testimonial-image {
    flex: 0 0 calc(45% - 10px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#testimonials .card .card-body .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    border-radius: 12px;
}


#testimonials .card .card-body .testimonial-content {
    flex: 0 0 calc(55%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

}

#testimonials .card .card-body .testimonial-content h3 {
    font-size: 20px;
    font-weight: bold;
}

#testimonials .card .card-body .testimonial-content .content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

#testimonials .card .card-body .testimonial-content .stars {
    background: white;
    padding: 5px 10px;
    color: var(--primary_color);
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin-top: -15px;
}

#emailsubscribe {
    background-color: #FFFFFF;
    overflow: hidden;
    padding: 80px 0px 80px 0px;
}

#emailsubscribe .card {
    border: 0px;
    padding: 60px 30px;
    background: #F4F1F8 url(../images/emailsubscribeBg.png) no-repeat right center;
}

#emailsubscribe .email-image {
    position: absolute;
    bottom: -60px;
    right: 0px;
    object-fit: contain;
    height: 300px;
    z-index: 0;
    pointer-events: none;
}

#emailsubscribe h2 {
    font-size: 36px;
    color: var(--text_dark_color);
    margin: 0px;
    font-weight: 300;
    margin-bottom: 24px;
}

#emailsubscribe p {
    color: var(--description_p_color);
    margin-bottom: 24px;
}


footer {
    background: var(--secondary_color);
    padding: 60px 0px 20px 0px;
}


.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-content .socials {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    font-size: 14px;
    color: var(--text_light_color);
    margin-top: 10px;
}

.footer-content .socials a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-content .socials a:hover {
    color: #ccc;
}

.footer-box {
    flex: 1 1 150px;
    min-width: 150px;
}

.footer-box.subscribe {
    flex: 1 1 300px;
    min-width: 180px;
}

.footer-box h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text_light_color);
}

.footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-box ul li a:hover {
    text-decoration: underline;
}

.footer-box p {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.footer-bottom img {
    filter: brightness(0) invert(1);
    width: 120px;
}


#subpage {
    width: 100%;
    margin: 30px 0px 30px 0px;
}


#subpage h1 {
    font-size: 36px;
    color: var(--secondary_color);
    margin: 10px;
    font-weight: 300;
    text-align: center;
}

.breadcrumb {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0px 0px 30px 0px;
}

.breadcrumb .breadcrumb-item {
    font-size: 12px;
    color: var(--secondary_color);
}

.breadcrumb .breadcrumb-item a {
    color: var(--secondary_color);
}

.breadcrumb .breadcrumb-item.active {
    font-size: 12px;
    color: var(--primary_color);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}



#sampleContract {
    width: 100%;
    margin: 70px 0px;
    transition: all 0.3s linear;
    min-height: 320px;
}

#sampleContract h2 {
    font-size: 36px;
    color: var(--text_dark_color);
    margin: 0px;
    font-weight: 300;
    text-align: center;
}

#sampleContract h3 {
    font-size: 18px;
    color: var(--text_dark_color);
    margin: 0px;
    font-weight: 300;
}

#sampleContract p.title-description {
    padding: 0px 200px;
    text-align: center;
    color: var(--text_dark_color);
}

#sampleContract .sampleIcon {
    font-size: 32px;
    color: var(--primary_color);
}