
/* !navbar */
.nav-main-container {
    background-image: url(../img/background-decoration.png);
    background-repeat: no-repeat;
    background-size: cover;
}

nav {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.nav-left {
    display: flex;
    align-items: center;
    margin-left: 0rem;
}

.nav-left img {
    width: 8rem;

}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.nav-right a {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-color);
    font-family: "Roboto Condensed", serif;
    margin: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-right p {
    font-family: "Roboto Condensed", serif;
    font-size: 4rem;
    font-weight: 100;
    user-select: none;
}

.nav-right a img {
    width: 7rem;
}

/* Sticky Navbar */
.nav-main-sticky-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    background-color: var(--body-color);
    padding: 1rem 2rem;
    transform: translateY(-100%); /* Başlangıçta gizli */
    opacity: 0; /* Başlangıçta tamamen şeffaf */
    transition: transform 0.1s ease, opacity 0.5s ease; /* Hem transform hem de opacity için geçiş ekleyelim */
}

/* Navbar göründüğünde */
.nav-main-sticky-container.fade-in {
    transform: translateY(0); /* Görünür hale gelir */
    opacity: 1; /* Opaklık 1 olur, yani görünür */
}

/* Navbar kaybolduğunda */
.nav-main-sticky-container.fade-out {
    transform: translateY(-100%); /* Yukarı kaybolur */
    opacity: 0; /* Tamamen şeffaf olur */
}

/* Diğer stiller aynı kalabilir */
.sticky-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.sticky-nav-left img {
    width: 6rem;
}

.sticky-nav-right {
    display: flex;
    align-items: center;
}

.sticky-nav-right a {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary-color);
    font-family: "Roboto Condensed", serif;
    margin: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-nav-right p {
    font-family: "Roboto Condensed", serif;
    font-size: 4rem;
    font-weight: 100;
    user-select: none;
}

.sticky-nav-right img {
    width: 5rem;
}
/* sticky navbar */

/* mobile navbar */

.mobile-nav-main-container {
    display: none;
    background-color: var(--body-color);
    z-index: 199;
}

.mobile-nav-openbar {
    position: fixed;
    top: 0;
    right: -100%; /* Sağdan dışarıda başlıyor */
    z-index: 200;
    background-image: url(../img/sidebar-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out; /* Kayma animasyonu */
}

.mobile-nav-openbar.open {
    transform: translateX(-100%); /* Sağdan sola kayıyor */
}

.mobile-nav-openbar i {
    position: absolute;
    right: 4rem;
    font-size: 3rem;
    color: var(--primary-color);
    top: 3rem;
    cursor: pointer; /* Tıklanabilir göstermek için */
}

.mobile-nav-openbar a {
    margin: 3rem 0;
    font-size: 2rem;
    color: var(--secondary-font-color);
}

#mobile-menu-button img {
    cursor: pointer;
}

/* mobile navbar */

/* !navbar */
.mobile-nav-main-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
/* !sidebar */

.sidebar-container {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 50rem;
    background-image: url(../img/sidebar-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(100%);
    transition: transform .5s;
}

.sidebar-container.active {
    transform: translateX(0);
}

.sidebar-container-top {
    width: 100%;
    font-size: 3rem;
    display: flex;
    justify-content: end;
    padding: 5rem;
}

.sidebar-container-top i {
    color: var(--primary-color);
}

.sidebar-container-center {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
    width: 100%;
}

.sidebar-container-center_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sidebar-container-center_top img{
    width: 10rem;
}

.sidebar-container-center_top h1 {
    margin-top: 3rem;
    font-size: 2.3rem;
    font-family: "Roboto Condensed", serif;
    font-weight: 400;
    color: var(--primary-color);
}

.sidebar-container-center_top hr {
    width: 85%;
    margin: 2rem;
}

.sidebar-container-center_top p {
    width: 85%;
    text-align: center;
    font-size: 1.4rem;
    font-family: "Roboto Condensed", serif;
    color: var(--secondary-font-color);
}

.sidebar-container-center_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10rem;
    justify-self: flex-end;
}

.sidebar-container-center_bottom h3{
    font-size: 2rem;
    color:  var(--primary-color);
    font-family: "Roboto Condensed", serif; 
    font-weight: 400;
}

.sidebar-container-center_bottom p {
    margin-top: 2rem;
    font-size: 1.4rem;
    font-family: "Roboto Condensed", serif; 
    color: var(--secondary-font-color);
}


/* !sidebar */

.index-welcome-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10rem 15rem;
    margin-top: 5rem;
    gap: 20%;
}

.index-welcome-left {
    display: flex;
    width: 70%;
}

.index-welcome-right {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-welcome-left h1 {
    font-family: "Roboto Condensed", serif;
    font-weight: 400;
    font-size: 5rem;
}

.index-welcome-image-container {
    width: 100%;
    height: 45%;
    margin-top: 5rem;
    position: relative;
}

.index-welcome-image-container img {
    width: 100%;
    height: 45rem;
    object-fit: cover;
    object-position: bottom;
}

.index-welcome-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;  
    background-color: rgba(0, 0, 0, 0.296);
}


/* !web main start */

.web-main-container {
    width: 100%;
}

.popular-services-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10rem;
}

.popular-services-title {
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popular-services-title h1 {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: "Roboto Condensed", serif;
    margin-bottom: 5rem;
}


.popular-services-box-container {
    display: flex;
    width: 85%;
    margin-top: 4rem;
    gap: 2%;
    flex-wrap: wrap;
}

.popular-services-box {
    border: 1px solid var(--primary-color);
    padding: 1rem;
    width: 32%;
}

.popular-services-box:nth-child(2) {
    transform: translateY(-2rem);
}

.popular-services-box:nth-child(3) {
    transform: translateY(2rem);
}

.popular-services-box img {
    width: 100%;
    height: 25rem;
    border-radius: .3rem;
    object-fit: cover;
}

.popular-services-box h3 {
    margin: 1rem 1rem 1rem 0;
    font-size: 2.1rem;
    font-family: "Roboto Condensed", serif;
    font-weight: 400;
    color: var(--primary-color)
}

.popular-services-box p {
    font-size: 1.4rem;
    color: var(--secondary-font-color);
}

.popular-services-box a {
    display: flex;
    margin: 1rem 1rem 0 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 1.3rem 1rem;
    justify-content: center;
    align-items: center;
    color: var(--body-color);
    font-family: "Roboto Condensed", serif;
    font-size: 1.6rem;
}

.business-video-container {
    width: 100%;
    margin-top: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--business-video-bg);
    margin-bottom: 5rem;
    padding: 10rem;
    background-image: url(../img/background-decoration.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-attachment: fixed;
    background-size: cover;
}

.business-video-box {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem;
    background-color: var(--body-color);
    gap: 5%;
}

.business-video-box-left {
    width: 45%;
    position: relative;
}

.business-video-box-left img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    border-radius: .3rem;
}

.business-video-box-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.business-video-box-right h2 {
    margin-bottom: 2rem;
    font-size: 2.4rem;
    color: var(--primary-color);
    font-family: "Roboto Condensed", serif;
    font-weight: 400;
}

.business-video-box-right p {
    font-size: 1.5rem;
    color: var(--secondary-font-color);
}

.business-video-box-left i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    border-radius: 50%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--body-color);
}


.meeting-date-container {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10rem;
}

.meeting-date-left {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
}

.meeting-date-left-informations {
    width: 55%;
}

.meeting-date-right {
    width: 50%;
    background-color: var(--primary-color);
    height: 100%;
    background-image: url(../img/background-decoration.png);
    background-position: right;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-3rem);
}

.meeting-date-left-informations h1 {
    font-size: 5rem;
    font-family: "Roboto Condensed", serif;
    font-weight: 300;
    color: var(--primary-color);
}

.meeting-date-left-informations h1 p{
    color: var(--secondary-font-color);
    font-weight: 100;
}

.meeting-date-left-informations hr {
    margin-top: 2rem;
    width: 100%;
}

.meeting-date-little-answer {
    width: 100%;
    display: flex;
    margin: 1rem 1rem 1rem 0;
    font-size: 1.5rem;
    font-family: "Playfair Display", serif;
    color: var(--secondary-font-color);
}

.meeting-date-long-answer {
    font-size: 1.5rem;
    font-family: "Roboto Condensed", serif;
    color: var(--secondary-font-color);
}

.meeting-date-right .meeting-date-right-title {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
}

.meeting-date-right .meeting-date-right-title h1 {
    color: var(--body-color);
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 2.6rem;
}

.meeting-date-right-form {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 10%;
    margin-top: 5rem;
}

.meeting-date-right-form input {
    display: flex;
    width: 45%;
    padding: 1rem 0rem;
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--body-color);
    border-bottom: 1px solid var(--body-color);
}

.meeting-date-right-form input::placeholder {
    color: var(--body-color);
}

.meeting-date-right-form a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    border: 1px solid var(--body-color);
    color: var(--body-color);
    font-size: 1.5rem;
    font-weight: 500;
    font-family: "Roboto Condensed", serif;
    transition: all .5s;
    margin-bottom: 5rem;
    margin-top: 5rem;
}

.meeting-date-right-form a:hover {
    border: 1px solid var(--body-color);
    background-color: var(--body-color);
    color: var(--primary-color);
}

.web-gallery-container {
    display: flex;
    justify-content: center;
    background-image: url(../img/background-decoration.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    padding: 10rem;
}

.web-gallery-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: var(--body-color);
    padding: 5rem;
}

.web-gallery-title {
    margin-top: 3rem;
    width: 100%;
    text-align: center;
}

.web-gallery-title h1 {
    font-family: "Roboto Condensed", serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.web-gallery-box-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2%;
}

.gallery-box {
    display: flex;
    justify-content: center;
    border: 1px solid var(--primary-color);
    width: 20%;
    padding: 1rem;
    margin-top: 5rem;
}

.gallery-box:nth-child(2n){
    transform: translateY(2rem);
}

.gallery-box:last-child {
    align-content: flex-start;
}

.gallery-box .gallery-image img {
    width: 100%;
    object-fit: cover;
}

.gallery-image {
    position: relative;
}

.gallery-image button {
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: none;
    border: none;
    padding: 1rem 3rem;
    background-color: var(--primary-color);
    color: var(--body-color);
    cursor: pointer;
    display: none;
    transition: all .5s ease;
    border-radius: .5rem;
}

.gallery-box a:hover .gallery-image button {
    display: block;
}

.gallery-box a:hover .gallery-image img {
    filter: brightness(0.4); /* Görseli karartır */
    transition: all 0.5s ease; /* Yumuşak geçiş efekti */
}

.about-us-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
    background-position: bottom;
    background-image: url(../img/about-us-top.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    position: relative;
}

.about-us-top img {
    width: 15rem;
}

.about-us-top h1 {
    color: var(--body-color);
    margin-top: 1rem;
    font-family: "Roboto Condensed", serif;
    font-weight: 300;
    font-size: 2.6rem;
}

.about-us-top h2 {
    color: var(--body-color);
    font-family: "Roboto Condensed", serif;
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: -0.1rem;
}

.about-us-main {
    width: 65%;
    justify-self: center;
    margin: 10rem 0;
    padding: 4rem;
}

.about-us-main h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: .5rem;
    font-family: "PT Sans Narrow", serif;
    font-weight: 500;
}

.about-us-content {
    margin-top: 5rem;
    display: flex;
    gap: 2%;
}

.about-us-content-left {
    width: 48%;
}

.about-us-content-left img {
    width: 100%;
    object-fit: cover;
}

.about-us-content-right {
    width: 48%;
}

.about-us-content-right h1 {
    font-size: 3.5rem;
    font-family: "PT Sans Narrow", serif;
    color: var(--primary-color);
    font-weight: 500;
}

.about-us-content-right p {
    margin-top: 3rem;
    font-size: 2rem;
    font-family: "Roboto Condensed", serif;
    font-weight: 300;
}

.about-us-content-bottom {
    flex-direction: column;
    margin-top: 15rem;
}

.about-us-content-left-bottom {
    width: 100%;
    display: flex;
    gap: 1%;
    flex-wrap: wrap;
    
}

.about-us-content-left-bottom img{
    width: 24.25%;
    object-fit: cover;
    height: 20rem;
    margin-bottom: 2rem;
}

.about-us-content-right-bottom {
    width: 100%;
    text-align: center;
}

.contact-main {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-size: cover;
}

.contact-top {
    width: 60%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.contact-top h1 {
    margin-top: 15rem;
    font-size: 4rem;
    font-family: "Roboto Condensed", serif;
    font-weight: 400;
    color: var(--primary-color);
}

.contact-top p {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    color: var(--secondary-font-color);
}

.contact-content {
    display: flex;
    width: 80%;
    height: fit-content;
    justify-content: center;
    gap: 7%;
    margin-top: 5rem;
    margin-bottom: 15rem;
    padding: 5rem;
    border: 1px solid var(--primary-color);
    position: relative;
    background-color: var(--primary-color);
    background-image: url(../img/background-decoration.png);
    background-size: cover;
}

.contact-content-left {
    display: flex;
    flex-direction: column;
    width: 59%;
}

.contact-content-left input,textarea {
    padding: 1.3rem;
    border: none;
    color: var(--body-color);
    outline: none;
    border-bottom: 1px solid var(--body-color);
    margin-bottom: 4.4rem;
    font-size: 1.5rem;
    font-family: "Roboto Condensed", serif;
    background-color: transparent;
    font-weight: 400;
    width: 100%;
    max-width: 100%;
    max-height: 20rem;
    background-color: rgba(255, 255, 255, 0.034);
}

.contact-content-left textarea {
    height: 10rem;
    min-height: 4.5rem;
    min-width: 100%;
}

.contact-content-right {
    width: 34%;
}

.contact-content-left_first {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.contact-content-left_first input {
    width: 46%;
    display: flex;
}

.contact-content-left button {
    width: 100%;
    background-color: var(--body-color);
    color: var(--primary-color);
    padding: 1.2rem 2rem;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-family: "Roboto Condensed", serif;
}

.contact-content-left button i {
    margin-left: 1rem;
}

.contact-content-right-explain {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.contact-content-right-explain:first-child {
    margin-top: 0;
}

.contact-content-right-explain h2 {
    font-size: 1.9rem;
    color: var(--body-color);
    font-family: "Roboto Condensed", serif;
    font-weight: 500;
    margin-bottom: .5rem;
}


.contact-content-right-explain p {
    font-size: 1.2rem;
    font-family: "Roboto Condensed", serif;
    color: var(--lower-white);
    margin-bottom: 1.2rem;
}

.contact-content-right-explain-options {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-content-right-explain-options a i {
    font-size: 1.5rem;
    margin-right: .6rem;
    text-decoration: none;
}

.contact-content-right-explain-options a {
    display: flex;
    margin: .5rem 0;
    text-decoration: underline;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: "Roboto Condensed", serif;
    color: var(--body-color);
}


.contact-content-right-explain iframe {
    width: 100%;
    height: 9.9rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.modal-content img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    object-fit: contain; /* Resmin oranlarını koruyarak ortalanmasını sağlar */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.our-services-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../img/background-decoration.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.our-services-top {
    display: flex;
    width: 85%;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    padding: 3rem;
    gap: 2%;
    background-color: var(--body-color);
    flex-wrap: wrap;
    border: 1px solid var(--primary-color);
}

.our-services-top-left {
    width: 38%;
}

.our-services-top-left h1 {
    font-size: 3.5rem;
    width: 98%;
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

.our-services-top-left p {
    margin-top: 3rem;
    font-size: 1.5rem;
    font-family: "Roboto Condensed", serif;
    font-weight: 400;
    color: var(--secondary-font-color);
}

.our-services-top-right {
    width: 60%;
}

.our-services-top-right img {
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    height: 50rem;
}

.our-services-contact-btn {
    display: flex;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.our-services-contact-btn i {
    margin-left: 2rem;
    margin-top: .2rem;
}

.our-services-content {
    margin-top: 15rem;
    padding: 3rem;
    width: 85%;
    background-color: var(--body-color);
    margin-bottom: 10rem;
    border: 1px solid var(--primary-color);
}

.our-services-content h1 {
    font-size: 3.2rem;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    justify-self: center;
}

.our-services-content hr {
    margin: 2rem 0;
}

.services-container {
    width: 100%;
    display: flex;
    gap: 4%;
    flex-wrap: wrap;
}

.services-container:nth-child(1) {
    background-color: red ;
}

.service-box {
    display: flex;
    padding: 2rem;
    border-radius: 0 0 .8rem 0;
    width: 30.667%;
    border: 1px solid var(--primary-color);
    background-color: var(--body-color);
    margin-bottom: 5rem;
    background-image: url(../img/dot-bg-white.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.services-container > .service-box:nth-child(2n) {
    background-color: var(--primary-color);
    transform: translateY(1rem);
}

.services-container > .service-box:nth-child(odd) {
    transform: translateX(-1rem) !important;
    transform: translateY(2rem);
}

.services-container > .service-box:nth-child(2n) * {
    color: var(--body-color);
}

.services-container > .service-box:nth-child(2n) p {
    color: var(--lower-white);
}

.services-container > .service-box:nth-child(2n) i {
    background-color: var(--body-color);
    color: var(--primary-color);
}

.service-box-left {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 65%;
}

.service-box-left h3 {
    font-size: 2rem;
    margin-bottom: .8rem;
    font-family: "Roboto Condensed", serif;
    font-weight: 400;
}

.service-box-left a {
    display: flex;
    justify-self: flex-end;
    align-items: flex-end;
    height: 100%;
    font-size: 1.2rem;
    font-family: "Roboto Condensed", serif;
    font-weight: 400;
    color: var(--secondary-font-color);
}

.service-box-left p {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: "Roboto Condensed", serif;
    color: var(--secondary-font-color);
}


.service-box-left a p {
    width: 94%;
    display: flex;
    align-items: center;
    border-radius: .5rem;
    margin: 0 !important;
}

.service-box-left a i {
    margin-right: 1.5rem;
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    color: var(--body-color);
}

.service-box-right {
    display: flex;
    width: 33%;
}

.service-box-right img {
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
    height: 13rem;
}

.services-detail-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.services-detail-title {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services-detail-title h1 {
    font-size: 6rem;
    font-family: "Playfair Display", serif;
    font-weight: 100;
    width: 35%;
    color: var(--primary-color);
}

.services-detail-explain-right {
    width: 30%;
}

.services-detail-explain-right p {
    font-size: 1.5rem;
    color: var(--secondary-font-color);
}

.services-image-box {
    width: 100%;
    position: relative;
    margin-top: 10rem;
}

.services-detail-container img {
    width: 100%;
    margin-top: 5rem;
    height: 100vh;
    object-fit: cover;
    object-position: top right;
}

.services-extra-informations-container {
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
    display: flex;
    width: 85%;
}

.services-extra-informations-container-sss {
    margin-top: 5rem;
}

.services-extra-informations-container-sss h1{
    font-size: 3rem;
    font-family: "PT Sans Narrow", serif;
    font-weight: 100;
}

.services-extra-informations-container-sss hr {
    margin: 1rem 0;
}

.sss-box-container {
    width: 100%;
}

.sss-box-container-top {
    background-color: rgb(234, 234, 234);
    width: 100%;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.sss-box-container-top h6 {
    font-size: 1.8rem;
    font-weight: 400;
    font-family: "PT Sans Narrow", serif;
}

.sss-box-container-top i {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.sss-answer {
    padding: 0 1rem;
    font-size: 1.8rem;
    color: var(--secondary-font-color);
    font-family: "PT Sans Narrow", serif;
    transition: all 0.3s ease-out;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin: 1rem 0;
}

.sss-answer.show {
    opacity: 1; /* Görünür hale gelir */
    max-height: 500px; /* İçeriğin görünebilmesi için yeterli yüksekliği verir */
}

.sss-box-container-top i {
    transition: transform 0.3s ease; /* Dönüşüm animasyonu ekleniyor */
}

.sss-box-container-top i.rotated {
    transform: rotate(180deg); /* 180 derece döner */
}

.services-extra-informations-container-sss-exampleimg {
    display: flex;
    width: 100%;
    gap: 2%;
    flex-wrap: wrap;
}

.services-extra-informations-container-sss-image-container {
    width: 32%;
    padding: 1rem;
    border: 1px solid var(--primary-color);
    margin-bottom: 3rem;
}

.services-extra-informations-container-sss-image-container img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    margin: 0 !important;
    object-position: center;
}

/* !footer */

footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10rem 20rem 0rem 20rem;
    background-color: var(--business-video-bg);
    background-image: url(../img/background-decoration.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment:fixed;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.footer-left {
    display: flex;
    flex-direction: column;
    width: 20%;
    margin-top: 4rem;
}

footer h2 {
    font-size: 2.4rem;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    color: var(--primary-color);
}

footer p {
    font-size: 1.5rem;
    color: var(--secondary-font-color);
    margin-top: 1rem;
    font-family: "Roboto Condensed", serif;
}

.footer-center-text {
    text-align: center;
}


.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60%;
}

.footer-right {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 4rem;
}

.footer-center img {
    width: 7rem;
    transform: translateY(-5rem);
}

.footer-center h2 {
    display: flex;
    transform: translateY(-3rem);
}

.footer-center p {
    display: flex;
    transform: translateY(-2rem);
}

footer hr {
    width: 100%;
    margin-top: 5rem;
}

.footer-bottom {
    display: flex;
}

.footer-bottom-left {
    width: 33.3%;
    display: flex;
    align-items: center;
}

.footer-bottom-left i {
    margin: 2rem 1rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-bottom-center {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 33.3%;
}

.footer-bottom-right {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    width: 33.3%;
}

.footer-bottom-center h3{
    font-family: "Roboto Condensed", serif;
    font-weight: 400;
    font-size: 1.2rem;
}

.footer-bottom-right a{
    font-family: "Roboto Condensed", serif;
    font-weight: 400;
    font-size: 1.2rem;
    text-decoration: underline;
}

.footer-right p {
    text-align: right !important;
}


/* !footer */