/*----------------------------------------------------
CSS Table Of Content

1. Global Contents
2. Menu Section
3. Home Header Section
4. Home Services Section
5. Home About Section
6. Home Blog Section
7. Home references Section
8. Footer
9. Page Global Contents

----------------------------------------------------*/

.shine-effect {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-50%) skewX(-20deg);
  opacity: 0;
  pointer-events: none;
  z-index: 12;
}

@keyframes shine {
  0% {
    transform: translateX(-150%) skewX(-0deg);
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(150%) skewX(-0deg);
    opacity: 0;
  }
}

.ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border: 5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: ripple 2s infinite ease-out;
  z-index: 1;
}

.ripple:nth-child(2) {
  animation-delay: .3s;
}

.ripple:nth-child(3) {
  animation-delay: .6s;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}



/*---------- 1. Global Contents ----------*/
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir.otf');
}

@font-face {
    font-family: 'LibraBold'; /* Buraya bir isim verin */
    src: url('../fonts/LibraSerifModern-Bold.otf'); /* .ttf dosyasının yolunu ekleyin */
}

@font-face {
    font-family: 'Libra'; /* Buraya bir isim verin */
    src: url('../fonts/LibraSerifModern-Regular.otf'); /* .ttf dosyasının yolunu ekleyin */
}

:root {
    --dark-color: #1d1e1c !important;
    --grey-color: #f9f9f9 !important;
    --text-color: #222 !important;
    --dark-grey-color: #444 !important;
    --white-color: #ffffff !important;
    --primary-color: #f88c2c !important;
    --secondary-color: #003e98 !important;
    --border-color: #dee2e6 !important;
    --bg-color: #042245 !important;

    --primary-font: 'Inter Tight' !important;
    --secondary-font: 'Libra' !important;
}

.no-resp,
.no-mobile {
    display: flex;
}

.no-pad {display: block;}

.only-resp,
.only-mobile,
.only-pad {
    display: none;
}

body {
    margin: 0;
    padding: 0;
    z-index: 1;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    overflow-x: hidden;
    -moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

body .container {
    max-width: 1310px;
}

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

.ul-li ul {
    margin: 0;
    padding: 0;
}

.ul-li ul li {
    list-style: none;
    display: inline-block;
}

.ul-li-block ul {
    margin: 0;
    padding: 0;
}

.ul-li-block ul li {
    display: block;
    list-style: none;
}

[data-background] {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
}

p {
    margin: 0;
}

a:hover,
a:focus {
    text-decoration: none;
}

button {
    cursor: pointer;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
input:hover,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    color: inherit;
}

h1 { font-size: 3rem; font-weight: 700;}
h2 { font-size: 2.5rem; font-weight: 600}
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }
p,li  { font-size: 1rem; }

.pd-30 {padding: 30px;}
.pd-40 {padding: 40px;}
.pd-50 {padding: 50px;}

input:focus,
textarea:focus {
    border-color: var(--primary-color) !important
}

.home-section {
    padding: 100px 0;
    font-family: var(--primary-font);
}

.home-section .section-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4em;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 10px;
    text-align: center;
    z-index: 12;
}

.home-section .section-title

.home-section .section-title i {
    color: var(--primary-color);
}

.home-section .section-text {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.2em;
    text-align: center;
    color: var(--text-color);
    z-index: 12;
    padding: 0 150px
}

.home-section .section-text.text {
    padding: 0;
    text-align: unset;
    justify-content: flex-start;
}

.home-section .section-content {
    margin-top: 100px;
    z-index: 12;
}

.page-button a {
    padding: 17px 40px;
    border-radius: 6px;
    border: none;
    color: var(--white-color);
    font-family: var(--primary-font);
    font-weight: bold;
    font-size: 16px;
    background: linear-gradient(to right, var(--secondary-color), #00C2FF);
    background-size: 200% auto;
    background-position: left center;
    transition: background-position 0.5s ease-out;
}

.page-button i {
    margin: 0 0 0 5px;
    transition: all .3s;
}

.page-button a:hover {
    background-position: right center;
}

.page-button:hover i {
    transform: rotate(45deg);
}

/*---------- 2. Menu Section ----------*/
.menu-section {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    height: 110px;
    padding: 0 200px;
}

.menu-section .section {
    display: flex;
    align-items: center;
    position: relative;
}

.menu-section .section .logo {
    position: absolute;
    left: -200px;
    background: var(--white-color);
    width: 500px;
    height: 110px;
    display: flex;
    justify-content: center
}

.menu-section .section .logo img {
    width: 100px;
}

.menu-section .section .menu-items {
    width: 100%;
    display: flex;
    justify-content: center;
}

.menu-section .section .menu-items .menu-item {
    font-family: var(--primary-font);
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 20px;
    position: relative;
}

.menu-section .section .menu-items .menu-item.active {
    color: var(--primary-color);
}

.menu-section .section .menu-items .menu-item .menu-link:hover {
    color: var(--primary-color);
}

.menu-section .section .menu-items .menu-item .sub-menu {
    position: absolute;
    padding: 15px 25px 15px 15px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    top: 50px;
    width: max-content;
    text-transform: none;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transform-origin: top;
    transform: scale(1, 0);
    transition: all 0.3s ease-in-out;
}

.menu-section .section .menu-items .menu-item .sub-menu .sub-menu-2,
.menu-section .section .menu-items .menu-item .sub-menu .sub-menu-3 {
    position: absolute;
    border-radius: 6px;
    padding: 0 25px 0 15px;
    top: -10px;
    left: 100%;
    background: rgba(0, 0, 0, 0.7);
    width: max-content;
    visibility: hidden;
    opacity: 0;
    transform-origin: top;
    transform: scale(1, 0);
    transition: all 0.3s ease-in-out;
}

.menu-section .section .menu-items .menu-item .sub-menu .sub-menu-item,
.menu-section .section .menu-items .menu-item .sub-menu .sub-menu-2-item,
.menu-section .section .menu-items .menu-item .sub-menu .sub-menu-3-item {
    margin: 10px 0;
    position: relative;
}

.menu-section .section .menu-items .menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
}

.menu-section .section .menu-items .menu-item .sub-menu .sub-menu-item:hover .sub-menu-2 {
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
}

.menu-section .section .menu-items .menu-item .sub-menu .sub-menu-2-item:hover .sub-menu-3 {
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
}

.menu-section .section .menu-items .menu-item .sub-menu a {
    padding: 8px 20px !important;
    color: var(--white-color);
    transition: all .3s;
    font-size: 14px;
    font-weight: normal;
}

.menu-section .section .menu-items .menu-item .sub-menu a:hover {
    color: var(--primary-color);
}

.menu-section .section .language {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.menu-section .section .language .options {
    display: flex;
}

.menu-section .section .language .options p {
    margin: 0 2px;
}

.menu-section .section .language .options p a {
    padding: 5px;
    font-size: 16px;
    font-weight: bold;
    color: var(--white-color);
}

.menu-section .section .language .options p a.active {
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 5px;
}

/*---------- 3. Home Header Section ----------*/
.header-section {
    position: relative;
    align-content: end;
    height: calc(100vh - 40px);
    width: calc(100vw - 40px);
    margin-top: 20px;
    margin-left: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.header-section:after {
    content: '';
    width: 100%;
    height: 30%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0));
    position: absolute;
    top: 0;
    left: 0;
}

.header-section:before {
    content: '';
    width: 100%;
    height: 30%;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, .5));
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.header-section .slider {
    position: relative;
}

.header-section .slider .slide {
    height: calc(100vh - 40px);
    width: calc(100vw - 40px);
    position: relative;
}

.header-section .slider .slide:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.2);
    position: absolute;
    top: 0;
}

.header-section .slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-section .slider .slide .slide-data {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    left: 200px;
    width: 60%;
    color: var(--white-color);
    font-family: var(--primary-font);
}

.header-section .slider .slide .slide-data .title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 0 10px
}

.header-section .slider .slide .slide-data .text {
    font-size: 60px;
    font-weight: bold;
    width: 60%;
    line-height: 60px;
}

.header-section .header-content {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    z-index: 2;
}

.header-section .header-content .content-left {
    color: var(--white-color);
    display: flex;
    padding-left: 200px;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: bold;
}

.header-section .header-content .content-left .text {
    margin: 0 50px 0 0;
}

.header-section .header-content .content-left .text:last-child {
    margin: 0;
}

.header-section .header-content .content-left .text i {
    margin: 0 5px 0 0;
    color: var(--primary-color)
}

.header-section .header-content .content-right {
    width: 500px;
    background: var(--white-color);
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*---------- 4. Home Services Section ----------*/
.services-section .section-content .item {
    aspect-ratio: 3/4;
    margin-bottom: 24px
}

.services-section .section-content .item .item-data {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.services-section .section-content .item .item-data img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.services-section .section-content .item .item-data:after {
    content: '';
    width: 100%;
    height: 50%;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, .5));
    position: absolute;
    bottom: 0;
    left: 0;
}

.services-section .section-content .item .item-data .data {
    z-index: 1;
    color: var(--white-color);
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.services-section .section-content .item .item-data .data .title {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4em;
}

.services-section .section-content .item .item-data .data .arrow {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    border: 1px solid var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
}

.services-section .section-content .item .item-data .data .arrow i {
    font-size: 20px;
    transition: all .3s;
}

.services-section .section-content .item .item-data:hover img {
    transform: scale(1.1);
}

.services-section .section-content .item .item-data:hover .arrow {
    background: var(--white-color);
}

.services-section .section-content .item .item-data:hover .arrow i {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.services-section .section-content .item .item-data:hover .shine-effect {
  animation: shine 1s ease forwards;
}

/*---------- 5. Home About Section ----------*/
.about-section {
    position: relative;
    width: calc(100vw - 40px);
    margin-top: 20px;
    margin-left: 20px;
    border-radius: 10px;
    background: var(--bg-color);
    color: var(--white-color);
    padding-bottom: 400px !important;
}

.about-section .section-text.title,
.about-section .section-text.title pre ,
.about-section .section-text.title i {
    color: var(--white-color) !important;
}

.about-section .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section .section-content .row > div {
    border-right: 1px solid rgba(255,255,255,.2);
    padding: 0 30px 0 20px;
}

.about-section .section-content .row > div:last-child {
    border: none;
}

.about-section .section-content i {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.about-section .section-content .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-section .section-content .text {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
}

.about-section .extra-area {
    background: var(--white-color);
    color: var(--text-color);
    width: 66%;
    padding: 50px;
    position: absolute;
    bottom: -330px;
    left: 17%;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 10px;
}

.about-section .extra-area .video {
    position: relative;
}

.about-section .extra-area .video img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    object-fit: contain
}

.about-section .extra-area .video .ripple-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-section .extra-area .video .ripple-container .play-button {
    background: var(--primary-color);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    position: relative;
    z-index: 12;
}

.about-section .extra-area .video .ripple-container i {
    font-size: 40px;
    color: var(--white-color);
}

.about-section .extra-area .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-section .extra-area .content .section-text {
    line-height: 1.6;
    font-weight: 500;
}

.about-section .extra-area .content li {
    margin: 0 0 10px 0;
}

.about-section .extra-area .content li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-weight: 600;
}

.about-section .extra-area .content .box {
    display: flex;
    padding: 40px;
    background: var(--secondary-color);
    border-radius: 10px;
    color: var(--white-color);
}

.about-section .extra-area .content .box i {
    font-size: 30px;
    margin-bottom: 15px;
}

.about-section .extra-area .content .box .text {
    font-size: 20px;
    font-weight: 600;
    padding-right: 40px;
}

.about-section .extra-area .content .box .item:last-child .text {
    padding-right: 0px;
}

/*---------- 6. Home Blog Section ----------*/
.blog-section {
    position: relative;
    margin-top: 450px !important;
    background: #f3f3f5;
}

.blog-section .page-content-section .item {
    margin-bottom: 50px !important;
}

.blog-section .blog-slider .slide {
    padding: 0 20px;
}


.blog-section .blog-data {
    position: relative;
    overflow: hidden;
}

.blog-section .blog-data .image {
    width: 100%;
    aspect-ratio: 5/3;
    overflow: hidden;
    border-radius: 10px;
}

.blog-section .blog-data .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.blog-section .blog-data .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 30px 0 15px;
}

.blog-section .blog-data .text {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-section .blog-data .url {
    margin: 30px 0 0;
}

.blog-section .blog-data .url a {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all .3s;
}

.blog-section .blog-data .url i {
    margin: 0 0 0 5px;
    transition: all .3s;
}

.blog-section .blog-data:hover img {
    transform: scale(1.1)
}

.blog-section .blog-data:hover .url a {
    color: var(--primary-color);
}

.blog-section .blog-data:hover .url i {
    transform: rotate(45deg);
}

.blog-section .blog-data:hover .shine-effect {
  animation: shine 1s ease forwards;
}

/*---------- 7. Home references Section ----------*/
.references-section .ref-slider {
    padding: 50px 0 0;
}

.references-section .ref-slider .slide img {
    width: 150px;
}

/*---------- 8. Footer ----------*/
.footer {
    position: relative;
    width: calc(100vw - 40px);
    padding: 80px 0;
    margin-bottom: 20px;
    margin-left: 20px;
    border-radius: 10px;
    background: linear-gradient(rgba(4,34,69,.8), rgba(4,34,69,.8)), url('../img/bg/footer-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white-color);
}

.footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 80px;
}

.footer .footer-top .text {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2em;
    color: var(--white-color);
    width: 60%;
}

.footer .footer-bottom {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.footer .footer-bottom .logo {
    width: 100px;
}

.footer .footer-bottom .logo img {
    width: 100%;
}

.footer .footer-bottom .text {
    font-size: 16px;
    margin: 40px 120px 40px 0;
    font-weight: 500;
}

.footer .footer-bottom .sm {
    display: flex;
}

.footer .footer-bottom .sm .item {
    position: relative;
    width: 50px;
    height: 50px;
    border: 1px solid var(--white-color);
    border-radius: 25px;
    margin-right: 20px;
    transition: all .3s;
}

.footer .footer-bottom .sm .item a {
    position: absolute;
    font-size: 20px;
    width: 50px;
    height: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer-bottom .sm .item:hover {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.footer .footer-bottom .title {
    font-size: 22px;
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer .footer-bottom ul li {
    text-transform: capitalize;
    line-height: 1.6em;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all .1s;
}

.footer .footer-bottom ul li i {
    margin: 0 5px 0;
    color: var(--primary-color);
}

.footer .footer-bottom ul li:hover {
    color: var(--primary-color);
}

.footer .footer-bottom .contact-data {
    display: flex;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6em;
}

.footer .footer-bottom .contact-data i {
    margin-right: 20px;
    line-height: 1.6;
}

.footer .copyright {
    padding-top: 80px;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.footer .copyright i {
    margin: 0 8px;
}

/*---------- 9. Page Global Contents  ----------*/
.page-header-section {
    position: relative;
    width: calc(100vw - 40px);
    aspect-ratio: 4/1;
    margin-top: 20px;
    margin-left: 20px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--bg-color);
    font-family: var(--primary-font);
    color: var(--white-color);
}

.page-header-section .header-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .3;
}

.page-header-section .header-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-header-section .header-content .header-title {
    font-size: 60px;
    font-weight: 700;
    margin-top: 110px;
}

.page-header-section .header-content .breadcrumbs {
    display: flex;
}

.page-header-section .header-content .breadcrumbs .item {
    margin-right: 8px;
    font-weight: 600;
}

.page-header-section .header-content .breadcrumbs .item.link {
    color: var(--primary-color);
}

.page-header-section .header-content .breadcrumbs .item.link:hover {
    text-decoration: underline;
}

.page-content-section {
    padding: 100px 0;
    font-family: var(--primary-font);
}

.page-content-section .grid-img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden
}

.page-content-section .grid-img .top,
.page-content-section .grid-img .bottom {
    width: 100%;
    height: 50%;
    display: flex;
}

.page-content-section .grid-img .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.page-content-section .grid-img .top .image {
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
}

.page-content-section .grid-img .bottom .image:first-child {
    width: 30%;
}

.page-content-section .grid-img .bottom .image:last-child {
    width: 70%;
    padding-left: 20px;
}

.page-content-section .section-text,
.home-section .section-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-content-section .section-text.inner-page-title {
    text-align: center;
    width: 100%;
    margin: 0 0 50px;
}

.page-content-section .section-text pre,
.home-section .section-text pre {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4em;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 10px;
    z-index: 12;
    font-family: var(--primary-font) !important;
    position: relative;
}

.page-content-section .section-text pre i,
.home-section .section-text pre i {
    color: var(--primary-color);
}


.page-content-section .section-text ul li {
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 20px;
}

.page-content-section .section-text ul li:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 8px;
}

.page-content-section .section-text.title {
    text-align: center;
}

.page-content-section .item.logo {
    margin-bottom: 24px;
}

.page-content-section .item.logo img {
    width: 200px;
}

.page-content-section .faq {
    margin-top: 50px;
    padding: 0 12px;
    font-family: var(--primary-font);
}

.page-content-section .faq.detailed {
    padding: 0;
}

.page-content-section .row div:nth-child(2) > div.faq:first-child
{
    margin: 0;
}

.page-content-section .faq .accordion-button {
    background: var(--bg-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: bold;
}

.page-content-section .faq .accordion-button.collapsed {
    background: var(--grey-color);
    color: var(--dark-color);
}

.page-content-section .faq .accordion-button:not(.collapsed) {
    border: 1px solid var(--bg-color);
    border-bottom: none;
}

.page-content-section .faq .accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.page-content-section .faq .accordion-button:focus {
    box-shadow: none;
}

.page-content-section .faq .accordion-body {
    padding: 30px;
    font-size: 18px;
}

/*---------- 10. PAGE - About Us   ----------*/
.about-page .page-content-section:nth-child(3)
{
    background: #f3f3f5;
}

.about-page .page-content-section .content {
    display: flex;
    background: var(--white-color);
    border-radius: 10px;
    height: 100%;
    padding: 0 0 50px;
}

.about-page .page-content-section .content .item i {
    font-size: 50px;
    color: var(--secondary-color);
    margin: 0 20px 0 0;
}

.about-page .page-content-section .image {
    width: 100%;
    height: auto;
}

.about-page .page-content-section .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/*---------- 10. PAGE - Certificates   ----------*/
.certificates-page .section-title {
    text-align: center;
}

.certificates-page .section-title i {
    color: var(--primary-color);
}

.certificates-page .items {
    margin: 50px 0 30px;
}

.certificates-page .items .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.certificates-page .items .item img {
    width: 80%;
    margin-bottom: 20px;
}

/*---------- 10. PAGE - Projects & Services   ----------*/
.projects-section .page-content-section .item {
    margin: 0 0 24px 0 !important;
}

.projects-section .page-content-section .item .project-data {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
    background: var(--bg-color);
}

.projects-section .page-content-section .item .project-data .image {
    width: 100%;
    height: 100%;
}

.projects-section .page-content-section .item .project-data .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7;
}

.projects-section .page-content-section .item .project-data .data {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white-color);
}

.projects-section .page-content-section .item .project-data .data h4 {
    font-weight: 600;
}

.projects-section .page-content-section .item:hover .shine-effect {
  animation: shine 1s ease forwards;
}

.projects-section nav {
    margin-bottom: 50px;
}

.projects-section nav .nav-tabs {
    border: none;
    justify-content: center;
}

.projects-section nav .nav-tabs button {
    border: none;
    margin: 0 20px;
    position: relative;
    color: var(--text-color);
}

.projects-section nav .nav-tabs button.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.projects-section nav .nav-tabs button:after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--border-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -24px;
}

.projects-section nav .nav-tabs button:last-child:after {
    opacity: 0;
}

.projects-section .project-info,
.services-section .project-info {
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 30px;
}

.projects-section .project-info .p-title,
.services-section .project-info .p-title{
    background: var(--bg-color);
    padding: 25px 30px;
    color: var(--white-color);
    font-weight: 800;
}

.projects-section .project-info .p-content,
.services-section .project-info .p-content {
    padding: 30px 30px 10px;
    background: #f3f3f5;
}

.projects-section .project-info .p-content .data,
.services-section .project-info .p-content .data {
    padding: 20px;
    margin: 0 0 20px;
    background: var(--white-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.projects-section .project-info .p-content .data .icon,
.services-section .project-info .p-content .data .icon {
    font-size: 30px;
    margin-right: 20px;
    color: var(--secondary-color)
}

.projects-section .project-info .p-content .data h4,
.services-section .project-info .p-content .data h4 {
    font-weight: 700;
}

.projects-section .project-slider,
.services-section .project-slider {
    width: 100%;
    aspect-ratio: 2/1;
    overflow: hidden;
    margin-bottom: 50px;
}

.projects-section .project-slider .slide,
.services-section .project-slider .slide {
    width: 100%;
    aspect-ratio: 2/1;
    display: flex;
    justify-content: center;
}

.projects-section .project-slider .slide img,
.services-section .project-slider .slide img {
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/*---------- 10. PAGE - Blog Details Page   ----------*/
.page-content-section .section-image {
    width: 100%;
    aspect-ratio: 5/3;
    overflow: hidden;
    margin: 0 0 30px 0;
}

.page-content-section .section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.page-content-section .section-data {
    width: 100%;
    margin: 0 auto;
}

/*---------- 10. PAGE - Contact Page   ----------*/
.form-area {
    padding: 100px 40px;
    background: var(--bg-color);
    position: relative;
    color: var(--white-color);
    border-radius: 10px;
}

.form-area img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.form-area .section-text pre {
    color: var(--white-color);
}

.form-area .form {
    margin: 70px 0;
}

.form-area .form .form-element input {
    height: 58px;
    margin: 0 0 24px 0;
    border-radius: 10px;
    padding: 17px 20px;
    color: var(--text-color);
}

.form-area .form .form-element textarea {
    height: 150px;
    border-radius: 10px;
    padding: 17px 20px;
    color: var(--text-color);
    margin: 0 0 24px 0;
}

.form-area .form .form-btn {
    padding: 17px 20px;
    width: 100%;
    border: none;
    border-radius: 10px;
    background: var(--secondary-color);
    color: var(--white-color);
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
}

.contact-area {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-area .area-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
}

.contact-area .area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-area .area-data {
    background: #f3f3f5;
    padding: 40px;
    border-radius: 10px;
}

.contact-area .area-data .data {
    display: flex;
    padding: 20px;
    margin-bottom: 30px;
    background: var(--white-color);
    align-items: center;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.contact-area .area-data .data:last-child {
    margin: 0;
}

.contact-area .area-data .data .icon {
    font-size: 35px;
    color: var(--secondary-color);
    margin-right: 20px;
}

.contact-area .area-data .data h4 {
    font-weight: 700;
}

.contact-area .area-data .data:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.contact-area .area-data .data:hover .icon {
    color: var(--white-color);
}

.map-area {
    margin-top: 50px;
    width: 100%;
    aspect-ratio: 3/1;
}

.map-area iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/*---------- PAGE - Coming Soon ----------*/
.coming-soon {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .2;
    z-index: 1;
}

.coming-soon .logo {
    position: absolute;
    top: 0;
    left: 100px;
    width: 200px;
    height: 200px;
    z-index: 12;
    padding: 20px;
}

.coming-soon .logo img {
    width: 100%;
    mix-blend-mode:multiply
}

.coming-soon .content {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon .content img {
    width: 40%;
    position: absolute;
    left: 30%;
    opacity: .8
}

.coming-soon .content .text {
    position: relative;
    z-index: 1;
}

.coming-soon .content .text p {
    font-size: 25px;
    text-align: center;
}

.coming-soon .content .text h1 {
    font-size: 150px;
    width: 600px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,.5)
}

.coming-soon .sm {
    position: absolute;
    right: 0;
    z-index: 12;
}

.coming-soon .sm div {
    margin: 30px 20px;
}

.coming-soon .sm a {
    font-size: 30px;
    color: #222;
}
