
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #f5f7fb;
    }

    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 999;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      background: transparent !important;
    }

    /* SCROLL SONRASI */
    .navbar.scrolled {
      background: #fff !important;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding-top: 8px;
      padding-bottom: 8px;
    }

    .navbar-brand {
      font-weight: 700
    }

    .navbar.scrolled .nav-link {
      color: #222 !important;
    }

    .navbar.scrolled .navbar-brand {
      color: #222 !important;
    }

    .nav-link {
      position: relative;
      color: #fff !important;
      transition: 0.3s;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0%;
      height: 2px;
      background: #0d6efd;
      /* bootstrap primary */
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      text-shadow: 0 0 8px rgba(13, 110, 253, 0.5);
    }

    .nav-link:hover::after {
      width: 100%;
    }

.hero {
    position: relative;
    background: url('/images/Banner.jpeg') center center / cover no-repeat;
    height: 650px;
    display: flex;
    align-items: center;
    margin-top: 0;
}

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(5, 20, 40, 0.1), rgba(5, 20, 40, 0.3));
    }

    .hero-content {
      position: relative;
      color: #fff;
      max-width: 600px;
    }

    .hero h1 {
      font-size: 52px;
      font-weight: 700
    }

    .hero p {
      margin: 20px 0;
      color: #d9e2ec
    }

    .btn-gold {
      background: #f5a623;
      color: #fff;
      border: none;
    }

    .btn-outline {
      border: 1px solid #fff;
      color: #fff;
    }



    .kurumsal img {
      border-radius: 10px
    }

    .kurumsal ul {
      list-style: none;
      padding: 0
    }

    .kurumsal li::before {
      content: '✔';
      color: #f5a623;
      margin-right: 10px;
    }

    .cards {
      background: linear-gradient(180deg, #0d2a4d, #0b1f36);
      color: #fff;
    }

    .card-custom {
      background: #132f52;
      border: none;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .card-custom:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 30px -12px rgba(0, 0, 0, 0.2);
    }


    .card-custom .img-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #0e2a46;
      overflow: hidden;
    }

    .card-custom img {
      width: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      transition: transform 0.4s ease;
    }


    .card-custom:hover img {
      transform: scale(1.02);
    }


    .card-custom .p-3 {
      padding: 1.25rem 1rem 1.5rem !important;
      text-align: center;
      background: #132f52;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .card-custom h6 {
      color: white;
      font-weight: 600;
      font-size: 1.1rem;
      letter-spacing: 0.3px;
      margin-bottom: 0.75rem;
    }


    .card-custom a {
      background: #f5a623;
      border: none;
      padding: 0.5rem 1.6rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.85rem;
      color: #1e2a36;
      transition: all 0.2s;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      width: auto;
      min-width: 120px;
    }

    .card-custom a:hover {
      background: #f5b443;
      transform: scale(1.02);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
      color: #0a1c2c;
    }

    .contact-section {
      position: relative;
      padding: 80px 20px;
      background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216') center/cover no-repeat;
    }

    .contact-section .overlay {
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(6px);
    }

    .container {
      position: relative;
      max-width: 1200px;
      margin: auto;
      z-index: 2;
    }

    h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 32px;
    }

    .contact-wrapper {
      display: flex;
      gap: 30px;
      align-items: stretch;
    }

    .contact-cards {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .card {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card .icon {
      font-size: 30px;
      margin-bottom: 10px;
    }

    .card h3 {
      margin-bottom: 10px;
      font-size: 18px;
    }

    .card p {
      font-size: 14px;
      color: #555;
    }

    .map-area {
      flex: 1;
    }

    .map-area iframe {
      width: 100%;
      height: 100%;
      min-height: 350px;
      border: none;
      border-radius: 10px;
    }

    @media (max-width: 900px) {
      .contact-wrapper {
        flex-direction: column;
      }

      .contact-cards {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .card-custom img {
        height: 150px;
      }

      .section.cards {
        padding: 40px 0;
      }

      .card-custom a {
        padding: 0.4rem 1.2rem;
        min-width: 100px;
      }
    }

    .services .item {
      text-align: center
    }

    .stats {
      background: #fff;
    }

    .stat-box {
      background: #0d2a4d;
      color: #fff;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
    }

    .footer {
      background: linear-gradient(180deg, #0d2a4d, #0b1f36);
      padding: 0 0 30px 0;
      color: #fff;
      font-size: 14px;
    }

    .footer .footer-links ul a {
      color: #fff;
      transition: 0.3s;
      display: inline-block;
      line-height: 1;
    }

    @media(max-width:768px) {
      .hero {
        height: auto;
        padding: 80px 20px
      }

      .hero h1 {
        font-size: 32px
      }
    }

    .section-badge {
      display: inline-block;
      background: #132f52;
      color: #f5a623;
      font-size: 0.8rem;
      font-weight: 600;
      padding: 0.3rem 1rem;
      border-radius: 40px;
      letter-spacing: 0.5px;
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: #0a2540;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }



    .section-sub {
      color: #2c3e50;
      font-size: 1.05rem;
      max-width: 700px;
      margin: 0 auto 2.5rem auto;
    }

    .plan-card {
      background: white;
      border-radius: 28px;
      padding: 1.6rem 1.5rem;
      transition: all 0.3s ease;
      height: 100%;
      box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.06);
      border: 1px solid rgba(19, 47, 82, 0.08);
      position: relative;
      overflow: hidden;
    }

    .plan-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 35px -12px rgba(0, 0, 0, 0.12);
      border-color: rgba(245, 166, 35, 0.3);
    }

    .plan-icon {
      width: 54px;
      height: 54px;
      background: rgba(19, 47, 82, 0.1);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.4rem;
      color: #132f52;
      font-size: 1.7rem;
      transition: 0.2s;
    }

    .plan-card:hover .plan-icon {
      background: #132f52;
      color: #f5a623;
    }

    .plan-card h4 {
      font-size: 1.4rem;
      font-weight: 700;
      color: #132f52;
      margin-bottom: 0.8rem;
    }

    .plan-card p {
      color: #2c3e50;
      font-size: 0.95rem;
      margin-bottom: 0;
      line-height: 1.45;
    }

    .highlight-card {
      background: linear-gradient(125deg, #132f52 0%, #0f2746 100%);
      border-radius: 32px;
      padding: 1.8rem 2rem;
      color: white;
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.2);
      border: none;
      transition: all 0.3s;
      height: 100%;
    }

    .highlight-card:hover {
      transform: translateY(-5px);
    }

    .highlight-card h3 {
      font-weight: 700;
      font-size: 1.7rem;
      color: #f5a623;
      margin-bottom: 1.2rem;
      letter-spacing: -0.3px;
    }

    .highlight-card p {
      color: #eef2f5;
      margin-bottom: 1rem;
      font-size: 0.98rem;
    }

    .check-list {
      list-style: none;
      padding-left: 0;
      margin-top: 1rem;
    }

    .check-list li {
      margin-bottom: 0.65rem;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.95rem;
      color: #eef2f5;
    }

    .check-list li i {
      color: #f5a623;
      font-size: 1.2rem;
      width: 22px;
    }

    .masak-badge {
      background: rgba(255, 255, 240, 0.12);
      padding: 0.3rem 0.9rem;
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 500;
      margin-top: 1rem;
    }

    .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: #f5a623;
      line-height: 1;
    }

    hr.divider-light {
      margin: 1rem 0;
      opacity: 0.2;
      border-color: #fff;
    }

    .kurumsal-block {
      position: relative;
      padding: 60px 0;
    }

    .block-1 {
      background: linear-gradient(135deg, #ffffff, #f1f5ff);
    }

    .block-2 {
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color: #fff;
    }

    .block-2 .text-muted {
      color: #cbd5e1 !important;
    }

    .block-3 {
      background: #ffffff;
    }

    .block-4 {
      background: linear-gradient(135deg, #f8fafc, #eef2ff);
    }


    .content-box > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}

.kurumsal-block.show .content-box > * {
  opacity: 1;
  transform: translateY(0);
}

.image-wrapper {
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.8s ease;
}

.kurumsal-block.show .image-wrapper {
  opacity: 1;
  transform: scale(1);
}



    .block-2 .content-box {
      background: rgba(255, 255, 255, 0.05);
    }


    .image-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .image-wrapper img {
      transition: 0.4s;
    }

    .image-wrapper:hover img {
      transform: scale(1.05);
    }


    .modern-list {
      list-style: none;
      padding: 0;
    }

    .modern-list li {
      padding-left: 20px;
      position: relative;
      margin-bottom: 10px;
    }

    .modern-list li::before {
      content: "▸";
      position: absolute;
      left: 0;
      color: #0d6efd;
    }


    .section-title {
      margin-top: 20px;
      margin-bottom: 15px;
      font-weight: 600;
      border-left: 4px solid #0d6efd;
      padding-left: 10px;
    }

    .section {
      padding: 60px 0;
      opacity: 0;
      transform: translateY(60px);
      transition: all 0.8s ease;
    }

    .section.show {
      opacity: 1;
      transform: translateY(0);
    }



    @media (max-width: 768px) {
      .section-title {
        font-size: 1.9rem;
      }

      .plan-card {
        padding: 1.2rem;
      }

      .highlight-card {
        padding: 1.5rem;
      }

      .highlight-card h3 {
        font-size: 1.4rem;
      }
    }
