body,
html {
  height: 100%;
  margin: 0;
  font-family: "Raleway", sans-serif !important;
  overflow: unset !important;
}

.navbar {
  position: absolute;
  width: 100%;
}

.hero-bg {
  min-height: 100vh;
  position: relative;
  color: #fff;
  overflow: hidden;
  --hero-bg-image-url: url('../img/basaksehirslider.png');
}

.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::before {
  background-image: var(--hero-bg-image-url);
}

.hero-bg::after {
  background-image: var(--hero-bg-next-image-url);
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-bg.is-changing::after {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.logo {
  height: 80px;
}


.side-thumbs {
  position: absolute;
  top: 25vh;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-thumbs img {
  width: 140px;
  height: 90px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 1s;
}

.side-thumbs .activeThumb {
  width: 160px;
}

.hero-content {
  position: relative;
  z-index: 2;
  top: 30vh;
  left: 50%;
  transform: translate(-50%, -30%);
  text-align: left;
  max-width: 600px;
  transition: opacity 0.5s ease-in-out;
}

.hero-bg.is-changing .hero-content {
  opacity: 0;
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.btn-hero {
  background: #104867;
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  border: none;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.3;
  font-weight: 700;
  padding-top: 20px;
  border: 1px solid #104867;
  transition: opacity 0.5s ease-in-out;
  align-items: center;
}

.btn-hero:hover {
  background: #15708a;
  color: #fff;
}

.slider-arrows {
  position: absolute;
  bottom: 30vh;
  left: 40vw;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.slider-arrows .btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  color: #195b6b;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  border: none;
  transition: background 0.2s;
}

.slider-arrows .btn:hover {
  background: #195b6b;
  color: #fff;
}

.social-icons {
  position: absolute;
  bottom: 19vh;
  left: 40px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.nav-link {
  color: white !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.navbar-nav .dropdown-menu {
  background-color: #104867;
  margin-top: -2px;
  border-top-left-radius: 0;
  border: none;
  width: 250px;
}

.dropdown-item {
  color: white;
  font-weight: 600;
}

.nav-link:hover,
.nav-link:active {
  background: #104867;
}

#customMenuBtn {
  color: #104867;
  font-size: 1.5rem;
  background: none;
  border: none;
  z-index: 2009;
  background-color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
}

#customMenuBtn:hover {
  color: white;
  background-color: #104867;
}

/* --- Custom Fullscreen Menu Panel Styles --- */
.custom-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 90vh;
  width: 40vw;
  /* Adjust width as needed */
  background: rgba(16, 72, 103, 0.9);
  /* Dark blue with transparency */
  backdrop-filter: blur(5px);
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;

  /* Start off-screen */
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.5s;
}

.custom-menu-panel.active {
  transform: translateX(0);
  visibility: visible;
  display: flex;
}

.custom-menu-close {
  position: absolute;
  top: 40px;
  right: 50px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  z-index: 2010;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
}

.custom-menu-close:hover {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}

.custom-menu-content {
  text-align: left;
  animation: fadeInMenu 0.4s 0.1s both;
  width: 100%;
  max-width: 800px;
  padding: 0 40px;
}

.custom-menu-content ul {
  padding-left: 0;
  list-style: none;
}

.custom-menu-content a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-menu-content a:hover {
  color: #a0c4e2;
  /* Hafif mavi bir hover rengi */
}

@keyframes fadeInMenu {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-menu-item {
  margin-bottom: 1.5rem;
}

/* --- YENÃ„Â° EKLENEN ANÃ„Â°MASYON STÃ„Â°LLERÃ„Â° --- */
.custom-menu-item .custom-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out, transform 0.5s ease-in-out;
  transform: translateY(-15px);
  list-style: none;
  padding-left: 1.5rem;
  /* BaÃ…Å¸lÃ„Â±Ã„Å¸a gÃƒÂ¶re biraz iÃƒÂ§eriden baÃ…Å¸lasÃ„Â±n */
  margin-top: 10px;
}

.custom-menu-item.show .custom-dropdown-menu {
  max-height: 500px;
  /* MenÃƒÂ¼ iÃƒÂ§eriÃ„Å¸ine gÃƒÂ¶re ayarlanabilir */
  opacity: 1;
  transform: translateY(0);
}

.custom-menu-item .custom-dropdown-toggle {
  transition: transform 0.4s ease-in-out;
}

.custom-menu-item.show .custom-dropdown-toggle {
  transform: translateY(-5px);
  /* BaÃ…Å¸lÃ„Â±Ã„Å¸Ã„Â± hafifÃƒÂ§e yukarÃ„Â± kaydÃ„Â±r */
}

.custom-menu-item .custom-dropdown-toggle .bi-chevron-down {
  transition: transform 0.3s ease-in-out;
  display: inline-block;
  /* transform ÃƒÂ¶zelliÃ„Å¸inin ÃƒÂ§alÃ„Â±Ã…Å¸masÃ„Â± iÃƒÂ§in */
}

.custom-menu-item.show .custom-dropdown-toggle .bi-chevron-down {
  transform: rotate(180deg);
}

.custom-dropdown-menu a {
  font-size: 1.25rem;
  /* Alt menÃƒÂ¼ linklerinin font boyutu */
  font-weight: 400;
}

.custom-dropdown-menu a:hover {
  padding-left: 5px;
  /* Hover durumunda hafifÃƒÂ§e saÃ„Å¸a kaysÃ„Â±n */
  transition: padding-left 0.3s ease;
}

/* --- ANÃ„Â°MASYON STÃ„Â°LLERÃ„Â° SONU --- */

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.wave img {
  width: 100%;
}

/* --- Button Active/Inactive Styles --- */
.btn-category {
  border-radius: 12px;
  border: 1px solid #104867;
  height: 50px;
  color: #104867;
  background: transparent;
  font-weight: bold;
  padding: 0 1.5rem;
  transition: all 0.3s ease;
  width: 30%;
}

.btn-category.active {
  background: linear-gradient(90deg, #104867, #196F9F);
  border-radius: 12px;
  border: 1px solid #104867;
  height: 50px;
  color: white;
}

.btn-category:hover {
  background: linear-gradient(90deg, #104867, #196F9F);
  color: white;
  border: 1px solid #104867;
}

/* --- Tab Button Styles --- */
.btn-tab {
  background: transparent;
  border: none;
  color: #6c757d;
  font-weight: 600;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn-tab.active {
  color: #195b6b;
  font-weight: bold;
}

.btn-tab:hover {
  color: #195b6b;
}

.gallery-arrows {
  color: #104867 !important;
  border-color: #104867 !important;
}

.gallery-arrows:hover {
  color: #fff !important;
  background-color: #104867 !important;
}

.form-control {
  border-color: #5BC3FD !important;
}

.form-control::placeholder {
  color: #104867 !important;
}

.contact-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.3;
  z-index: 2;
}

footer .fw-bold,
footer .text-dark,
footer .text-secondary {
  color: #104867 !important;
}

/* Swiper Styles */
.projects-swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 70px;
  overflow: hidden;
}

.projects-swiper .swiper-wrapper {
  align-items: center;
  height: 40vh;
}

.projects-swiper .swiper-slide {
  text-align: center;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.6;
  transform: scale(0.85);
  width: 320px;
}

.project-card {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  background: white;
  margin: 0 auto;
}

.project-card:hover {
  transform: translateY(-5px) !important;
}

.project-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #196F9F, transparent);
  color: white;
  padding: 30px 20px 20px;
  display: flex;
  align-items: flex-end;
  height: 40%;
}

.project-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
}

/* Swiper Navigation */
.projects-prev,
.projects-next {
  width: 50px !important;
  height: 50px !important;
  margin-top: -25px !important;
  background: white !important;
  border-radius: 50% !important;
  color: #104867 !important;
  transition: all 0.3s ease !important;
}

.projects-prev:after,
.projects-next:after {
  font-size: 18px !important;
  font-weight: bold !important;
}

.projects-prev:hover,
.projects-next:hover {
  background: #104867 !important;
  color: white !important;
  transform: scale(1.1);
}

.projects-prev {
  left: -25px !important;
}

.projects-next {
  right: -25px !important;
}

/* Swiper Pagination */
.projects-pagination {
  position: static !important;
  margin-top: 30px !important;
  text-align: center !important;
}

.projects-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 8px !important;
  background: #d1dbe3 !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.projects-pagination .swiper-pagination-bullet-active {
  background: #195b6b !important;
  transform: scale(1.2) !important;
}

.projects-swiper.is-single-slide .swiper-slide {
  max-width: 320px;
}

.service-section-line {
  overflow-x: hidden;
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;

  /* YENÃ„Â°: VarsayÃ„Â±lan olarak gizli ve aÃ…Å¸aÃ„Å¸Ã„Â±da olacak */
  opacity: 0;
  transform: translateY(20px);

  /* Animasyon tanÃ„Â±mÃ„Â± (gecikmeli baÃ…Å¸layacak) */
  transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}

/* Butonun varsayÃ„Â±lan (baÃ…Å¸langÃ„Â±ÃƒÂ§) durumunu ve animasyonunu tanÃ„Â±mlÃ„Â±yoruz. */
.btn-hero {
  background: #104867;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);

  /* Animasyon tanÄ±mÄ± (baÅŸlÄ±ktan biraz daha geÃ§ baÅŸlayacak) */
  transition: opacity 0.6s ease-out 0.5s, transform 0.6s ease-out 0.5s;
}

body.hero-loaded .hero-title,
body.hero-loaded .btn-hero {
  opacity: 1;
  transform: translateY(0);
}


/* Slayt deÃ„Å¸iÃ…Å¸imi iÃƒÂ§in olan kuralÃ„Â±nÃ„Â±z hala geÃƒÂ§erli ve gerekli.
   Bu, animasyonun her slayt deÃ„Å¸iÃ…Å¸iminde tekrar ÃƒÂ§alÃ„Â±Ã…Å¸masÃ„Â±nÃ„Â± saÃ„Å¸lar. */
.hero-bg.is-changing .hero-content .hero-title,
.hero-bg.is-changing .hero-content .btn-hero {
  opacity: 0;
  transform: translateY(20px);
  transition: none;
}

/* Sub Project Hero Section Styles */
.sub-project-hero-bg {
  min-height: 100vh;
  position: relative;
  color: #fff;
  overflow: hidden;
  background-image: url('../img/basaksehirslider.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sub-project-hero-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.sub-project-hero-content {
  position: relative;
  z-index: 2;
  top: 50vh;
  left: 20vw;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 600px;
}

.sub-project-hero-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 1;
  transform: translateY(0);
}

/* Sub Project Content Section Styles */
.sub-project-content-section {
  min-height: 60vh;
}

/* Sub Project Category Buttons */
.btn-sub-category {
  background: transparent;
  color: #104867;
  border: 2px solid #104867;
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.8rem;
  width: 30%;
}


.btn-sub-category.active {
  background: linear-gradient(90deg, #104867, #196F9F);
  color: #fff;
  transform: translateY(-2px);
  border: 2px solid #104867;
}

.btn-sub-category:hover {
  background: linear-gradient(90deg, #104867, #196F9F);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(25, 111, 159, 0.3);
  border: 2px solid #104867;
}


/* Sub Project Tab Buttons */
.btn-sub-tab {
  background: transparent;
  color: #6c757d;
  border: none;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.8rem;
}

.btn-sub-tab.active {
  color: #104867;
}

/* Sub Project Grid Cards */
.sub-project-card {
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 310px;
}

.sub-project-card:hover {
  transform: translateY(-8px);
  color: inherit;
  text-decoration: none;
}

.sub-project-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

.sub-project-card-content {
  padding: 20px;
  height: 100px;
}

.sub-project-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #104867;
  line-height: 1.3;
}

/* Project Detail Hero Section Styles */
.sub-project-detail-hero-bg {
  min-height: 100vh;
  position: relative;
  color: #fff;
  overflow: hidden;
  background-image: url('../img/basaksehirslider.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sub-project-detail-hero-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.sub-project-detail-hero-content {
  position: relative;
  z-index: 2;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  padding: 0 20px;
}

.sub-project-detail-hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  opacity: 1;
  transform: translateY(0);
}

.sub-project-detail-hero-description {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sub Project Detail Content Section Styles */
.sub-project-detail-content-section {
  min-height: 120vh;
  background-color: #fff;
  padding: 80px 0;
  position: relative;
}

.project-detail-left {
  padding-right: 30px;
}

.project-status-badge {
  background: linear-gradient(90deg, #104867, #196F9F);
  color: white;
  padding: 5px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}

.project-detail-main-title {
  color: #104867;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.project-detail-description {
  color: #104867;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.project-detail-description p {
  margin-bottom: 15px;
}

.project-info-table {
  border-radius: 12px;
}

.info-item {
  margin-bottom: 20px;
}

.info-label {
  color: #104867;
  font-size: 0.9rem;
  margin-bottom: 5px;
  width: 200px;
}

.info-value {
  font-size: 0.9rem;
  color: #104867;
  width: 500px;
}

.project-detail-right {
  padding-left: 30px;
}

.project-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-detail-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.web-address-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.btn-web-address {
  background: rgba(16, 72, 103, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-align: left;
  padding-left: 10px;
}

.btn-web-address:hover {
  background: rgba(16, 72, 103, 1);
  transform: scale(1.05);
  color: white;
}

.project-statistics {
  margin-top: 50px;
}

.stat-item {
  padding: 20px;
  width: fit-content;
}

.stat-number {
  color: #196F9F;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-unit {
  color: #196F9F;
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
}

.stat-label {
  color: #104867;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 10px;
}

/* Sub Project Detail Gallery Section Styles */
.sub-project-detail-gallery-section {
  background-color: #f5f7f8;
  min-height: 60vh;
  padding: 80px 0;
}

.btn-gallery-tab {
  background: transparent;
  color: #104867;
  border: 1px solid #104867;
  border-radius: 10px;
  font-weight: 700;
  padding: 10px 20px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 180px;
  text-align: start;
}

.btn-gallery-tab.active {
  background: linear-gradient(90deg, #104867, #196F9F);
  color: #fff;
  border-color: #104867;
}

.btn-gallery-tab:hover {
  background: linear-gradient(90deg, #104867, #196F9F);
  color: #fff;
  border-color: #104867;
}

.gallery-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.gallery-content.active {
  display: block;
  opacity: 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 200px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(16, 72, 103, 0.7), rgba(25, 111, 159, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  font-size: 2.5rem;
  color: #fff;
  transition: transform 0.3s ease;
  text-align: center;
  line-height: 1;
}

/* Large image on first position */
.gallery-item.large {
  grid-column: span 2;
  /* Takes up two columns */
}

.floorplan-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.floorplan-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.floorplan-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.floorplan-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.floorplan-item:hover .floorplan-image-wrapper img {
  transform: scale(1.1);
}

.floorplan-image-wrapper .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 72, 103, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.floorplan-item:hover .gallery-overlay {
  opacity: 1;
}

.floorplan-title {
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  background: linear-gradient(90deg, #104867, #196F9F);
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.modal-header {
  position: absolute;
  z-index: 1;
  right: 0;
}

.modal-header .btn-close {
  opacity: 1 !important;
}

.info-item {
  display: flex;
  flex-direction: row;
}

/* Corporate Tab Styles */
.btn-corporate-tab {
  background: transparent;
  color: #104867;
  border: 2px solid #104867;
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 40px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.8rem;
}

.btn-corporate-tab:hover {
  background: linear-gradient(90deg, #104867, #196F9F);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(25, 111, 159, 0.3);
  border: 2px solid #196F9F;
}

.btn-corporate-tab.active {
  background: linear-gradient(90deg, #104867, #196F9F);
  color: #fff;
  transform: translateY(-2px);
}

.corporate-tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.corporate-tab-content.active {
  display: block;
}

.corporate-tab-content .container-fluid {
  min-height: 70vh;
}

.corporate-tab-content .row {
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Corporate Content Styles */
.corporate-image-container {
  margin-bottom: 40px;
}

.corporate-image {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

.corporate-stats {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.corporate-stat-item {
  flex: 1;
}

.corporate-stat-number {
  font-size: 1.8rem;
  font-weight: 500;
  color: #196F9F;
  line-height: 1;
}

.corporate-stat-label {
  font-size: 1rem;
  color: #104867;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.3;
}

/* Contact Page Content */
.contact-content-section {
  padding: 80px 0;
  background-color: #fff;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d4a68;
  /* Main brand color */
  margin-bottom: 20px;
}

.contact-address {
  font-size: 1rem;
  color: #104867;
  margin-bottom: 30px;
  max-width: 400px;
}

.contact-details p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #104867;
  font-weight: 500;
}

.contact-details p i {
  color: #0d4a68;
  margin-right: 15px;
  font-size: 1.5rem;
}

.contact-details p a {
  text-decoration: none;
  color: #104867;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.contact-details p a:hover {
  color: #0d4a68;
}

.btn-directions {
  margin-top: 30px;
  background-color: #104867;
  color: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #0d4a68;
  padding: 10px 20px;
}

.btn-directions i {
  font-size: 1.5rem;
  margin-top: 5px;
  transition: transform 0.3s ease;
}

.btn-directions:hover {
  background-color: #fff;
  color: #0d4a68;
  transform: scale(1.05);
}

.btn-directions:hover i {
  transform: translateX(5px);
}

.map-wrapper iframe {
  border-radius: 20px !important;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
}

.form-container {

  /* Main brand color */
  padding: 60px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(90deg, #104867, #196F9F);
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-form-section .form-control {
  background-color: #fff;
  border-radius: 50px;
  border: none;
  padding: 10px 25px;
  font-size: 0.8rem;
}

.contact-form-section .form-control::placeholder {
  color: #6c757d;
}

.contact-form-section textarea.form-control {
  border-radius: 20px;
}

.contact-form-section .form-check-label {
  font-size: 0.9rem;
}

.contact-form-section .form-check-input {
  background-color: #fff;
  border: none;
}

.form-check-input {
  appearance: checkbox;
  -webkit-appearance: checkbox;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.btn-submit {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  transition: all 0.3s ease;
  padding-top: 10px;
}

.btn-submit i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  background-color: #fff;
  color: #0d4a68;
}

.btn-submit:hover i {
  transform: translateX(5px);
}

.contact-hero-bg {
  background-image: url('../img/contact-bg.png');
  min-height: 100vh;
  position: relative;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.corporate-hero-bg {
  background-image: url('../img/corporate-bg.png');
  min-height: 100vh;
  position: relative;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn-project {
  color: #104867;
  background-color: white;
}

.btn-contact {
  color: white;
  background-color: transparent;
  border-color: white;
}

.cls-1 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 2px;
}

.btn-submit:hover .cls-1 {
  stroke: #0d4a68;
}

.btn-hero .cls-1 {
  stroke: #fff;
}

.btn-project .cls-1 {
  stroke: #104867;
}

.btn-project:hover .cls-1 {
  stroke: #fff;
}

.btn-directions:hover .cls-1 {
  stroke: #104867;
}
#galleryModal {
  display: none !important;
}
.modal-backdrop.show {
  display: none !important;
}
#galleryModal .modal-dialog {
  max-width: 95vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

#galleryModal .modal-content {
  background-color: transparent;
  border: none;
  box-shadow: none;
  width: auto;
  max-height: 95vh;
}

#galleryModal .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#galleryModal #modalImage {
  max-height: 90vh;
  max-width: 90vw;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

#galleryModal .modal-header {
  position: absolute;
  top: -2rem;
  right: -2rem;
  z-index: 1060;
  border: none;
}

#galleryModal .btn-close {
  background-color: white;
  border-radius: 50%;
  opacity: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
}

.gallery-item.large {
  grid-column: span 2;
  /* Takes up two columns */
}

.floorplan-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: block;
  color: inherit;
  overflow: hidden;
}

.floorplan-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.floorplan-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 200px;
}

.floorplan-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.floorplan-item:hover .floorplan-item img {
  transform: scale(1.1);
}

.floorplan-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 72, 103, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.floorplan-card:hover .gallery-overlay {
  opacity: 1;
}

.floorplan-title {
  font-weight: 600;
  color: #104867;
}

/* News List Section Styles */

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  color: inherit;
}

.news-card-image-wrapper {
  height: 220px;
  overflow: hidden;
}

.news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-image {
  transform: scale(1.05);
}

.news-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-date {
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 10px;
  font-weight: 600;
}

.news-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #104867;
  line-height: 1.4;
  margin-bottom: 15px;
  flex-grow: 1;
}

.news-card-summary {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-card-link {
  color: #196F9F;
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.3s;
}

.news-card-link:hover {
  color: #104867;
}

/* News Detail Page Styles */
.news-detail-header {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 15px;
}

.news-detail-date {
  font-size: 1rem;
  font-weight: 600;
  color: #6c757d;
}

.news-detail-body {
  padding-top: 30px;
  color: #212529;
  line-height: 1.8;
  font-size: 1.1rem;
}

.news-detail-body p {
  margin-bottom: 1.5rem;
}

.news-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#news-detail-hero-bg {
  background-size: cover;
  background-position: center;
}

.about-section-line {
  overflow-x: hidden;
}

/* Sub Project Detail Content Section End */
.sub-project-detail-content-section .project-detail-left .project-info-table .info-item .progress-circle-container {
  position: relative;
  width: 100px;
  height: 100px;
}

.sub-project-detail-content-section .project-detail-left .project-info-table .info-item .progress-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(#104867 var(--progress, 0deg), #e0e0e0 0deg);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.5s;
  position: relative;
}

.sub-project-detail-content-section .project-detail-left .project-info-table .info-item .progress-circle::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
}

.sub-project-detail-content-section .project-detail-left .project-info-table .info-item .progress-circle-value {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #104867;
}

/* Project Section End */
.project-card .progress-circle-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  --circle-size: 40px;
  width: 100%;
  background: linear-gradient(0deg, rgb(25 111 159 / 58%), rgb(16 72 103 / 68%)) !important;
  text-align: center;
  display: flex;
  justify-content: center;
}

.project-card:hover .progress-circle-container {
  opacity: 1;
  visibility: visible;
}

/* Override progress circle styles for project cards */
.project-card .progress-circle {
  width: 100%;
  height: var(--circle-size);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card .progress-circle::before {
  width: calc(var(--circle-size) * 0.8);
  height: calc(var(--circle-size) * 0.8);
  background-color: transparent;
}

.project-card .progress-circle-value {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

/* Contact Section Start */
.contact-section-line {
  border-top: 1px solid #dee2e6;
}

/* Pasif proje kartlarÄ± iÃ§in stil */
.project-card.is-inactive,
.sub-project-card.is-inactive {
  opacity: 0.7;
  /* KartÄ± biraz soluklaÅŸtÄ±r */
  filter: grayscale(60%);
  /* Rengini biraz al */
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Pasif kartÄ±n Ã¼zerine gelindiÄŸinde herhangi bir efekt olmasÄ±nÄ± engelle */
.project-card.is-inactive:hover,
.sub-project-card.is-inactive:hover {
  transform: none;
  box-shadow: none;
}

.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1061;
  /* Modal iÃ§eriÄŸinin Ã¼zerinde kalmasÄ± iÃ§in */
}

.modal-nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-nav-btn.prev {
  left: 15px;
}

.modal-nav-btn.next {
  right: 15px;
}

/* Modal'Ä± biraz daha bÃ¼yÃ¼k yapmak ve arka planÄ± koyulaÅŸtÄ±rmak iÃ§in Bootstrap deÄŸiÅŸkenlerini override edebiliriz */
.modal-dialog.modal-xl {
  max-width: 1200px;
  /* veya istediÄŸiniz bir geniÅŸlik */
}

#project-media-display {
  height: 400px;
}

.about-number {
  color: #196F9F;
  font-weight: 500 !important;
  font-size: 2.5rem !important;
}

.about-title {
  color: #104867;
  font-weight: 500;
  font-size: 1.3rem;
}

.about-div {
  gap: 3rem !important;
}

/* ============================================= */
/* ==   Proje Sayfası Kart Hover Stilleri     == */
/* ============================================= */

.sub-project-card {
  position: relative;
  /* İçindeki overlay'i konumlandırmak için gerekli */
  display: block;
  overflow: hidden;
  /* Dışarı taşanları (zoom yapılan resim, overlay köşeleri) gizle */
  border-radius: 15px;
  /* Kartın köşelerini yuvarlat */
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.sub-project-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 1s;
}

/* Kartın arka plan resmi */
.sub-project-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Yumuşak zoom efekti için */
}

/* Hover durumunda resme hafif zoom uygula */
.sub-project-card:hover .sub-project-card-image {
  transform: scale(1.1);
}

/* Kartın altındaki varsayılan başlık alanı */
.sub-project-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sub-project-card-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

/* Fare üzerine gelindiğinde görünecek olan mavi kaplama */
.sub-project-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  --circle-size: 40px;
  width: 100%;
  background: linear-gradient(0deg, rgb(25 111 159 / 58%), rgb(16 72 103 / 68%)) !important;
  text-align: center;
  display: flex;
  justify-content: center;
}

/* Kartın üzerine gelince overlay'i görünür yap */
.sub-project-card:hover .sub-project-card-overlay {
  opacity: 1;
}

/* Overlay içindeki ilerleme metni */
.sub-project-card-overlay .progress-text {

  /* Yatayda ortala */
  font-weight: 600;
  padding: 10px 15px;
  color: white;
}

/* Hava Çekimleri - Başlık + Önceki Aylar Dropdown */
.aerial-month-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.aerial-current-month {
  font-size: 1.5rem;
  font-weight: 700;
  color: #104867;
  margin: 0;
}

.aerial-prev-btn {
  color: #7a6a56;
  font-weight: 500;
  font-size: 0.95rem;
  background: transparent;
  border: none;
  padding: 0;
  letter-spacing: 0.01em;
}

.aerial-prev-btn:hover,
.aerial-prev-btn:focus {
  color: #104867;
  background: transparent;
  box-shadow: none;
}

.aerial-prev-btn::after {
  margin-left: 5px;
  vertical-align: middle;
}

.aerial-dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 180px;
}

.aerial-month-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  padding: 8px 20px;
  transition: background 0.2s, color 0.2s;
}

.aerial-month-item:hover {
  background: #f0f6fa;
  color: #104867;
}


.fancybox__content{
  height: 100vh !important;
  padding: 0 !important;
}