    body {
      font-family: 'Inter', sans-serif;
      padding-top: 85px;
      background-color: #121212;
    }

    /* TODO - NAVBAR */
    .custom-navbar {
      background: rgba(15, 15, 15, 0.95);
      backdrop-filter: blur(15px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      height: 85px;
      display: flex;
      align-items: center;
    }

    .navbar-brand {
      color: #f5b301 !important;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .navbar-brand .logo-text span {
      font-family: 'Oswald', sans-serif;
      font-weight: 900 !important;
      font-size: 1.3em !important;
      letter-spacing: 2px;
      line-height: 1;
    }

    .navbar-brand .logo-text small {
      font-family: 'Oswald', sans-serif;
      letter-spacing: 0px;
      font-size: 0.7em !important;
    }

    .logo-icon {
      fill: #f5b301;
    }

    .nav-link {
      color: #ffffff !important;
      font-weight: 500;
      font-size: 0.85rem;
      font-family: 'Montserrat', sans-serif;
      padding: 0.5rem 1rem !important;
      transition: color 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .nav-link:hover {
      color: #f5b301 !important;
    }

    .btn-quote {
      background-color: #f5b301;
      color: #000 !important;
      font-weight: 600;
      font-size: 0.8rem;
      padding: 8px 18px;
      border-radius: 4px;
      text-transform: uppercase;
      margin-left: 10px;
      white-space: nowrap;
      transition: 400ms all cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .btn-quote:hover {
      background-color: #ff9900;
      color: #fff;
    }

    .navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
      opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* TODO --------------------------------------------------------------------------------------------------------- */

    /* TODO FOOTER */
    footer {
      background-color: #1d1d1d;
      color: #ffffff;
      padding: 60px 0 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-family: 'Montserrat', sans-serif;
      overflow-x: hidden;
    }

    .footer-title {
      color: #f5b301;
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 0.9rem;
      transition: 0.3s;
      display: inline-block;
      margin-bottom: 10px;
    }

    .footer-links a:hover {
      color: #f5b301;
      transform: translateX(5px);
    }

    .social-links {
      display: flex;
      gap: 12px;
    }

    .social-links .social-btn {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.08);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      text-decoration: none;
      border-radius: 8px;
      transition: all 0.4s ease;
      font-size: 1.1rem;
      border: 1px solid rgba(245, 179, 1, 0.2);
    }

    .social-btn:hover {
      transform: translateY(-5px);
      color: #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .social-btn.facebook:hover {
      background-color: #3b5998;
      border-color: #3b5998;
    }

    .social-btn.instagram:hover {
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
      border-color: transparent;
    }

    .social-btn.linkedin:hover {
      background-color: #0077b5;
      border-color: #0077b5;
    }

    /* TODO --------------------------------------------------------------------------------------------------------- */

    /* TODO SERVICES HTML */
    .about-hero {
      position: relative;
      height: 80vh;
      min-height: 600px;
      background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=2070') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
      overflow: hidden;
      animation: backgroundZoom 2s ease-out forwards;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
      z-index: 1;
    }

    .main-title {
      font-family: 'Oswald', sans-serif;
      letter-spacing: -2px;
      line-height: 0.9;
      text-transform: uppercase;
      transition: letter-spacing 1.5s ease;
    }

    .outline-text {
      color: transparent;
      -webkit-text-stroke: 1.5px #f5b301;
      transition: 0.5s all;
    }

    .outline-text:hover {
      color: #f5b301;
    }

    .hero-line {
      width: 80px;
      height: 4px;
      background-color: #f5b301;
      border-radius: 2px;
    }

    .tracking-widest {
      letter-spacing: 5px;
      font-size: 0.9rem;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      text-align: center;
    }

    .mouse {
      width: 25px;
      height: 40px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 20px;
      margin: 0 auto 10px;
      position: relative;
    }

    .mouse::before {
      content: '';
      width: 4px;
      height: 8px;
      background: #f5b301;
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
      animation: scrollAnim 2s infinite;
    }

    .reveal-sm,
    .reveal-lg,
    .reveal-p,
    .reveal-scroll {
      opacity: 0;
      animation: fadeInUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    }

    .reveal-sm {
      animation-delay: 0.3s;
    }

    .reveal-lg {
      animation-delay: 0.6s;
    }

    .reveal-line {
      opacity: 0;
      animation: lineGrow 1s ease forwards;
      animation-delay: 1s;
    }

    .reveal-p {
      animation-delay: 1.2s;
    }

    .reveal-scroll {
      animation-delay: 1.8s;
    }

    @keyframes scrollAnim {
      0% {
        opacity: 1;
        top: 8px;
      }

      100% {
        opacity: 0;
        top: 20px;
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

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

    @keyframes lineGrow {
      from {
        width: 0;
        opacity: 0;
      }

      to {
        width: 80px;
        opacity: 1;
      }
    }

    @keyframes backgroundZoom {
      from {
        transform: scale(1.1);
      }

      to {
        transform: scale(1);
      }
    }

    @keyframes moveGrid {
      0% {
        transform: translateY(0);
      }

      100% {
        transform: translateY(50px);
      }
    }

    @keyframes expandLine {
      0% {
        width: 0;
        opacity: 0;
      }

      100% {
        width: 80px;
        opacity: 1;
      }
    }

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

    @keyframes bounceDown {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(12px);
      }
    }

    .services-container {
      background-color: #121212;
      padding: 100px 0;
    }

    .service-card-wrapper {
      margin-bottom: 80px;
    }

    .service-card-wrapper:last-child {
      margin-bottom: 0;
    }

    .service-img-box {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(245, 179, 1, 0.1);
    }

    .service-img-box img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .service-card-wrapper:hover .service-img-box img {
      transform: scale(1.04);
    }

    .service-content-box {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      padding: 20px;
      color: #ffffff;
    }

    .service-number {
      font-family: 'Oswald', sans-serif;
      font-size: 3.5rem;
      font-weight: 900;
      color: rgba(245, 179, 1, 0.15);
      line-height: 1;
      margin-bottom: 10px;
      transition: color 0.4s ease;
    }

    .service-card-wrapper:hover .service-number {
      color: rgba(245, 179, 1, 0.4);
    }

    .service-title {
      font-family: 'Oswald', sans-serif;
      font-size: 2.5rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .service-title span {
      color: #f5b301;
    }

    .service-desc {
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.8;
      font-size: 1rem;
      margin-bottom: 25px;
    }

    .service-features {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .service-features li {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.85);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .service-features li i {
      color: #f5b301;
      font-size: 0.85rem;
    }

    .btn-service-action {
      align-self: flex-start;
      border: 1px solid #f5b301;
      color: #f5b301;
      padding: 12px 32px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      background: transparent;
      transition: all 0.4s ease;
      text-decoration: none;
    }

    .btn-service-action:hover {
      background: #f5b301;
      color: #000000;
      box-shadow: 0 5px 15px rgba(245, 179, 1, 0.3);
    }

    /* TODO --------------------------------------------------------------------------------------------------------- */

    /* TODO INDEX PAGE STYLE */

    /*  SLIDER STYLE */
    #heroSlider {
      height: calc(100vh - 85px);
      overflow: hidden;
    }

    .slider-img {
      height: calc(100vh - 85px);
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .carousel-caption {
      z-index: 2;
      bottom: 20%;
      text-align: center;
    }

    .carousel-caption h5 {
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
      margin-bottom: 20px;
    }

    .btn-slider-custom {
      background-color: #f5b301;
      color: #000;
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 4px;
      text-transform: uppercase;
      border: none;
      transition: 0.3s;
      margin-top: 20px;
    }

    .btn-slider-custom:hover {
      background-color: #ff9900;
      color: #fff;
    }

    .carousel-control-prev,
    .carousel-control-next {
      opacity: 1 !important;
    }

    .carousel-control-prev.disabled,
    .carousel-control-next.disabled {
      opacity: 0.2 !important;
      cursor: not-allowed;
      pointer-events: none;
    }

    .carousel-control-prev.disabled .custom-arrow,
    .carousel-control-next.disabled .custom-arrow {
      transform: none !important;
      background-color: #666 !important;
      border-color: #666 !important;
    }

    .custom-arrow {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
      background-color: #f5b301;
      border-color: #f5b301;
    }

    .custom-arrow svg {
      fill: #ffffff !important;
      stroke: #ffffff !important;
    }

    .custom-arrow:hover {
      background-color: #f5b301;
      border-color: #f5b301;
      transform: scale(1.1);
    }

    .custom-arrow:hover svg {
      fill: #000000 !important;
      stroke: #000000 !important;
    }

    /* INDICATOR BUTTONS */
    #heroSlider .carousel-indicators button {
      width: 50px;
      height: 8px !important;
      border-radius: 20px;
      background-color: #fff;
      opacity: 0.8;
      transition: all 0.3s ease;
      border-top: none !important;
      border-bottom: none !important;
      margin-right: 7px;
      margin-left: 7px;
      padding: 0;
      box-sizing: content-box;
    }

    #heroSlider .carousel-indicators .active {
      width: 80px;
      background-color: #f5b301 !important;
      opacity: 1 !important;
    }

    /*Project Detail Style*/
    .stats-section {
      padding: 40px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      position: relative;
    }

    .stats-section .row {
      display: flex;
      flex-wrap: wrap;
    }

    .stats-section .col-lg-3 {
      display: flex;
    }

    .stat-box {
      width: 100%;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: #ffffff;
      border: 2px solid #f5b301;
      border-radius: 20px;
      padding: 40px 20px;
      text-align: center;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .stat-box::before {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: #f5b301;
      transition: all 0.4s ease;
      z-index: -1;
    }

    .stat-box:hover::before {
      top: 0;
    }

    .stat-box:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 40px rgba(245, 179, 1, 0.2);
    }

    .stat-icon-wrap {
      width: 80px;
      height: 80px;
      background: rgba(245, 179, 1, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      transition: all 0.3s ease;
    }

    .stat-box:hover .stat-icon-wrap {
      background: rgba(255, 255, 255, 0.944);
      transform: rotateY(360deg);
    }

    .stat-number {
      font-family: 'Oswald', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: #f5b301;
      margin-bottom: 5px;
      display: block;
      transition: color 0.3s ease;
    }

    .stat-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: color 0.3s ease;
    }

    .stat-box:hover .stat-number,
    .stat-box:hover .stat-text {
      color: #fff;
    }

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

    /* OUR COMPANIES */
    .business-structure {
      background-color: #fcfcfc;
      border-top: 1px solid #eee;
    }

    .section-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      color: #222;
      letter-spacing: 1px;
    }

    .title-line {
      width: 60px;
      height: 4px;
      background: #f5b301;
      margin: 15px auto;
    }

    .section-subtitle {
      max-width: 800px;
      margin: 0 auto;
      color: #666;
      font-size: 1rem;
    }

    .company-card {
      background: #fff;
      border: 1px solid #e0e0e0;
      padding: 40px 30px;
      border-radius: 15px;
      position: relative;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      text-align: center;
    }

    .company-card:hover {
      border-color: #f5b301;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transform: translateY(-5px);
    }

    .company-card.highlight {
      border-top: 5px solid #f5b301;
    }

    .card-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: #f5b301;
      color: #fff;
      padding: 4px 15px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    .company-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 15px;
      line-height: 1.4;
    }

    .company-desc {
      font-size: 0.9rem;
      color: #777;
      line-height: 1.6;
    }

    /* TODO --------------------------------------------------------------------------------------------------------- */

    /* TODO ABOUT STYLE */
    .about-hero {
      position: relative;
      height: 80vh;
      min-height: 600px;
      background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
      overflow: hidden;
      animation: backgroundZoom 2s ease-out forwards;
    }

    .reveal-sm,
    .reveal-lg,
    .reveal-p,
    .reveal-scroll {
      opacity: 0;
      animation: fadeInUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    }

    .reveal-sm {
      animation-delay: 0.3s;
    }

    .reveal-lg {
      animation-delay: 0.6s;
    }

    .reveal-line {
      opacity: 0;
      animation: lineGrow 1s ease forwards;
      animation-delay: 1s;
    }

    .reveal-p {
      animation-delay: 1.2s;
    }

    .reveal-scroll {
      animation-delay: 1.8s;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
      z-index: 1;
    }

    .main-title {
      font-family: 'Oswald', sans-serif;
      letter-spacing: -2px;
      line-height: 0.9;
      text-transform: uppercase;
      transition: letter-spacing 1.5s ease;
    }

    .outline-text {
      color: transparent;
      -webkit-text-stroke: 1.5px #f5b301;
      transition: 0.5s all;
    }

    .outline-text:hover {
      color: #f5b301;
    }

    .hero-line {
      width: 80px;
      height: 4px;
      background-color: #f5b301;
      border-radius: 2px;
    }

    .tracking-widest {
      letter-spacing: 5px;
      font-size: 0.9rem;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      text-align: center;
    }

    .mouse {
      width: 25px;
      height: 40px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 20px;
      margin: 0 auto 10px;
      position: relative;
    }

    .mouse::before {
      content: '';
      width: 4px;
      height: 8px;
      background: #f5b301;
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
      animation: scrollAnim 2s infinite;
    }

    .experience-badge {
      position: absolute;
      bottom: -30px;
      right: -30px;
      background: #f5b301;
      color: #000;
      padding: 30px;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      line-height: 1;
    }

    .expertise-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(245, 179, 1, 0.1);
      transition: 0.4s all;
      border-radius: 15px;
    }

    .expertise-card:hover {
      background: rgba(245, 179, 1, 0.05);
      transform: translateY(-10px);
      border-color: #f5b301;
    }

    .expertise-card h4 {
      color: #ffca37;
    }

    .mila-section {
      background: #111;
      border-top: 2px solid #f5b301;
    }

    .mila-bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 15vw;
      font-weight: 900;
      color: rgba(245, 179, 1, 0.03);
      white-space: nowrap;
      z-index: 0;
      pointer-events: none;
    }

    .mila-section .container {
      position: relative;
      z-index: 1;
    }

    /* ==========================================================================
      Vision And Mission Style
    =========================================================================== */
    .vision-mission-section {
      background-color: #161616;
      padding: 120px 0;
      position: relative;
      border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .vision-mission-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 50px 40px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .vision-mission-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, #f5b301, transparent);
      transform: scaleX(0);
      transition: transform 0.5s ease;
    }

    .vision-mission-card:hover {
      background: rgba(245, 179, 1, 0.02);
      border-color: rgba(245, 179, 1, 0.2);
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .vision-mission-card:hover::before {
      transform: scaleX(1);
    }

    .vm-icon-box {
      width: 70px;
      height: 70px;
      background: rgba(245, 179, 1, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 30px;
      border: 1px solid rgba(245, 179, 1, 0.2);
      transition: all 0.4s ease;
    }

    .vision-mission-card:hover .vm-icon-box {
      background: #f5b301;
      transform: rotateY(180deg);
    }

    .vision-mission-card:hover .vm-icon-box i {
      color: #000000;
    }

    .vm-icon-box i {
      font-size: 1.8rem;
      color: #f5b301;
      transition: color 0.4s ease;
    }

    .vm-title {
      font-family: 'Oswald', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .vm-title span {
      color: #f5b301;
    }

    .vm-desc {
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.8;
      font-size: 1.05rem;
      margin-bottom: 0;
    }

    /* Animation */

    @keyframes scrollAnim {
      0% {
        opacity: 1;
        top: 8px;
      }

      100% {
        opacity: 0;
        top: 20px;
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

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

    @keyframes lineGrow {
      from {
        width: 0;
        opacity: 0;
      }

      to {
        width: 80px;
        opacity: 1;
      }
    }

    @keyframes backgroundZoom {
      from {
        transform: scale(1.1);
      }

      to {
        transform: scale(1);
      }
    }

    /* TODO --------------------------------------------------------------------------------------------------------- */

    /* TODO PROJECT STYLE */
    .projects-hero {
      position: relative;
      height: 80vh;
      min-height: 600px;
      background: url('https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg?auto=compress&cs=tinysrgb&w=1920') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: none !important;
      /* Alt kısımdaki çizgiyi tamamen kaldırdık */
      margin-bottom: 0 !important;
      /* Boşluğu sıfırladık */
      animation: backgroundZoom 2s ease-out forwards;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
      z-index: 1;
    }

    .main-title {
      font-family: 'Oswald', sans-serif;
      letter-spacing: -2px;
      line-height: 0.9;
      text-transform: uppercase;
      transition: letter-spacing 1.5s ease;
      text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    }

    .main-title span {
      color: #f5b301;
      text-shadow: 0 0 20px rgba(245, 179, 1, 0.4);
    }

    .outline-text {
      color: transparent;
      -webkit-text-stroke: 1.5px #f5b301;
      transition: 0.5s all;
    }

    .outline-text:hover {
      color: #f5b301;
    }

    .hero-line {
      width: 80px;
      height: 4px;
      background-color: #f5b301;
      border-radius: 2px;
      box-shadow: 0 0 10px rgba(245, 179, 1, 0.6);
    }

    .tracking-widest {
      letter-spacing: 5px;
      font-size: 0.9rem;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      text-align: center;
    }

    .mouse {
      width: 25px;
      height: 40px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 20px;
      margin: 0 auto 10px;
      position: relative;
    }

    .mouse::before {
      content: '';
      width: 4px;
      height: 8px;
      background: #f5b301;
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
      animation: scrollAnim 2s infinite;
    }

    .reveal-sm,
    .reveal-lg,
    .reveal-p,
    .reveal-scroll {
      opacity: 0;
      animation: fadeInUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    }

    .reveal-sm {
      animation-delay: 0.3s;
    }

    .reveal-lg {
      animation-delay: 0.6s;
    }

    .reveal-line {
      opacity: 0;
      animation: lineGrow 1s ease forwards;
      animation-delay: 1s;
    }

    .reveal-p {
      animation-delay: 1.2s;
    }

    .reveal-scroll {
      animation-delay: 1.8s;
    }

    .project-section {
      background-color: #121212;
      color: #ffffff;
      padding: 100px 0;
      border-bottom: none !important;
      /* Alt sınır çizgisini pürüzsüz geçiş için sildik */
    }

    .project-section:nth-child(even) {
      background-color: #181818;
    }

    .project-slider-container {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(245, 179, 1, 0.1);
    }

    .project-slider-container img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      display: block;
      /* Tarayıcıların resim altına koyduğu varsayılan ufak boşluğu siler */
      transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .project-slider-container:hover img {
      transform: scale(1.03);
    }

    .project-details {
      padding: 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }

    .project-badge {
      color: #f5b301;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 15px;
      display: inline-block;
    }

    .project-title {
      font-family: 'Oswald', sans-serif;
      font-size: 2.6rem;
      font-weight: 900;
      letter-spacing: 1px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .project-description {
      font-family: 'Inter', sans-serif;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.8;
      font-size: 1rem;
      margin-bottom: 30px;
    }

    .project-meta {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 35px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 20px;
    }

    .meta-item {
      display: flex;
      flex-direction: column;
    }

    .meta-label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 5px;
    }

    .meta-value {
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      color: #ffffff;
      font-weight: 600;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 12%;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .project-slider-container:hover .carousel-control-prev,
    .project-slider-container:hover .carousel-control-next {
      opacity: 1;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(245, 179, 1, 0.85);
      padding: 18px;
      border-radius: 4px;
    }

    /* TODO --------------------------------------------------------------------------------------------------------- */

    /* TODO COMMUNİCATION STYLE */
    .page-header {
      background: #121212;
      padding: 120px 0 80px 0;
      position: relative;
      border-bottom: 1px solid rgba(245, 179, 1, 0.1);
    }

    .header-bg-grid {
      position: absolute;
      top: -50px;
      left: 0;
      right: 0;
      bottom: -50px;
      background-size: 50px 50px;
      background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      animation: moveGrid 20s linear infinite;
      z-index: 1;
    }

    .header-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at center, rgba(18, 18, 18, 0) 0%, #121212 90%);
      z-index: 2;
    }

    .header-line {
      height: 3px;
      background-color: #f5b301;
      margin: 0 auto;
      border-radius: 2px;
      box-shadow: 0 0 12px rgba(245, 179, 1, 0.6);
      animation: expandLine 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }

    .header-title {
      font-size: 3.5rem;
      text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
      opacity: 0;
      transform: translateY(40px);
      animation: fadeInUp 0.8s forwards 0.3s;
    }

    .header-subtitle {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s forwards 0.5s;
    }

    .scroll-indicator-communication {
      color: #f5b301!important;
      font-size: 1.5rem;
      opacity: 0;
      animation: fadeInUp 0.5s forwards 0.5s, bounceDown 0.8s infinite 1.2s;
      position: absolute;
      bottom: -45px!important;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      text-align: center;
    }

    .contact-info-card {
      background-color: #1d1d1d;
      padding: 35px 30px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .contact-icon {
      width: 45px;
      height: 45px;
      background: rgba(245, 179, 1, 0.1);
      color: #f5b301;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      font-size: 1.2rem;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .hover-yellow:hover {
      color: #f5b301 !important;
      transition: 0.3s ease;
    }

    .person-card {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px 20px;
      border: 1px solid rgba(255, 255, 255, 0.03);
      border-left: 4px solid #f5b301;
      transition: all 0.3s ease;
    }

    .person-card:hover {
      transform: translateX(5px);
      background-color: #222222;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .person-icon {
      color: #ffffff;
      font-size: 1.4rem;
      opacity: 0.7;
    }

    .btn-whatsapp {
      width: 40px;
      height: 40px;
      background-color: #25D366;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      text-decoration: none;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    }

    .btn-whatsapp:hover {
      background-color: #1ebe57;
      color: #ffffff;
      transform: scale(1.1);
    }

    .map-wrapper {
      border-radius: 12px;
      overflow: hidden;
      background-color: #1d1d1d;
      position: relative;
      border: 2px solid rgba(245, 179, 1, 0.1);
      transition: all 0.5s ease;
    }

    .map-wrapper:hover {
      border-color: rgba(245, 179, 1, 0.5);
      box-shadow: 0 0 25px rgba(245, 179, 1, 0.15) !important;
    }

    .map-wrapper iframe {
      display: block;
      filter: grayscale(90%) invert(100%) sepia(20%) hue-rotate(350deg) contrast(90%);
      transition: filter 0.8s ease;
    }

    .map-wrapper:hover iframe {
      filter: grayscale(0%) invert(0%) sepia(0%) hue-rotate(0deg) contrast(100%);
    }

    .map-floating-card {
      position: absolute;
      bottom: 30px;
      left: 30px;
      background: rgba(18, 18, 18, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 15px 25px;
      border-radius: 8px;
      border: 1px solid rgba(245, 179, 1, 0.3);
      z-index: 10;
      transition: all 0.4s ease;
    }

    .map-wrapper:hover .map-floating-card {
      transform: translateY(-5px);
      border-color: #f5b301;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .floating-icon {
      width: 38px;
      height: 38px;
      background: #f5b301;
      color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-right: 15px;
      font-size: 1rem;
      box-shadow: 0 0 10px rgba(245, 179, 1, 0.4);
    }

    .direction-link {
      color: #f5b301;
      font-size: 0.85rem;
      text-decoration: none;
      transition: color 0.3s ease;
      display: inline-block;
    }

    .direction-link:hover {
      color: #ffffff;
    }

    .direction-link i {
      transition: transform 0.3s ease;
    }

    .direction-link:hover i {
      transform: translateX(5px);
    }

    /* TODO --------------------------------------------------------------------------------------------------------- */

    /* 1200px */
    @media (max-width: 1199.98px) {
      .navbar-toggler {
        display: block !important;
        border: none;
        padding: 0;
        outline: none !important;
      }

      .toggler-icon {
        width: 28px;
        height: 2px;
        background-color: #f5b301;
        display: block;
        margin: 5px 0;
        transition: 0.3s;
      }

      .navbar-collapse {
        display: none;
        position: absolute;
        top: 85px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        padding: 30px;
        border-bottom: 3px solid #f5b301;
        z-index: 9999;
        text-align: center;
      }

      .navbar-collapse.show {
        display: block !important;
      }

      .navbar-nav {
        align-items: center !important;
        width: 100%;
      }

      .nav-item {
        width: 100%;
      }

      .nav-link {
        width: 100%;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.1rem;
      }

      .btn-quote {
        margin: 25px auto 10px auto !important;
        width: 200px;
        display: inline-block;
      }
    }

    /* 1200px */
    @media (min-width: 1200px) {
      .navbar-toggler {
        display: none;
      }

      .navbar-collapse {
        display: flex !important;
      }
    }

    @media (max-width: 991.98px) {
      footer .row {
        margin-left: 0;
        margin-right: 0;
      }

      .footer-col {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
      }

      .footer-links a:hover {
        transform: scale(1.05);
      }

      .social-links {
        justify-content: center;
      }

      .service-img-box img {
        height: 320px;
      }

      .service-content-box {
        padding: 30px 0 0 0;
        text-align: center;
      }

      .service-features {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 350px;
        margin: 0 auto 30px auto;
      }

      .btn-service-action {
        align-self: center;
      }

      .service-title {
        font-size: 2rem;
      }

      .project-slider-container img {
        height: 380px;
      }

      .project-details {
        padding: 30px 0 0 0;
        text-align: center;
      }

      .project-title {
        font-size: 2rem;
      }
    }

    @media (max-width: 768px) {
      .footer-col.col-6 {
        width: 100%;
      }

      .footer-links li {
        width: 100%;
      }

      .about-hero {
        height: 60vh;
        background-attachment: scroll;
      }

      .main-title {
        font-size: 3.5rem !important;
      }

      .carousel-caption h5 {
        font-size: 1.8rem;
      }

      .carousel-caption p {
        font-size: 0.9rem;
      }

      .experience-badge {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
      }

      .mila-bg-text {
        font-size: 25vw;
      }

      .main-title {
        font-size: 3.5rem !important;
      }

      .about-hero {
        height: 60vh;
        background-attachment: scroll;
      }

      .vision-mission-card {
        padding: 40px 25px;
      }

      .projects-hero {
        height: 60vh;
        background-attachment: scroll;
      }

      .main-title {
        font-size: 3.5rem !important;
      }

      .header-title {
        font-size: 2.5rem;
      }

      .page-header {
        padding: 100px 0 60px 0;
      }

    }

    @media (max-width: 576px) {
      .map-floating-card {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 12px 20px;
      }
    }