/* ==========================================================================
   Kahraman KalÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±p - Main CSS
   ========================================================================== */

/* ==========================================================================
   CSS Variables (Root)
   ========================================================================== */
   :root {
    /* Colors - Kahraman KalÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±p Brand Colors */
    --color-primary: #194A6D;
    --color-primary-hover: #153d5a;
    --color-secondary: #3A5F8E;
    --color-secondary-hover: #2e4d73;
    --color-dark: #1a1a1a;
    --color-text: #333;
    --color-text-muted: #666;
    --color-bg: #f5f5f5;
    --color-white: #fff;
    --color-border: #e0e0e0;
    --color-border-light: #dddddd;
    --color-neutral-100: #f1f1f1;
    --color-neutral-200: #f3f4f6;
    --color-neutral-300: #e9ecef;
    --color-gray-600: #666;
    --color-gray-500: #999;
    --color-link-muted: rgba(255, 255, 255, 0.7);
    --color-whatsapp: #25D366;
    --overlay-backdrop: rgba(0, 0, 0, 0.25);
  
    /* Typography */
    --font-size-display: 48px;
    --font-size-h1: 40px;
    --font-size-h2: 30px;
    --font-size-h3: 20px;
    --font-size-body: 16px;
    --font-size-small: 14px;
  
    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
  
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.4;
    --line-height-relaxed: 1.6;
  }
  
  @media (max-width: 1023px) {
    :root {
      --font-size-display: 40px;
      --font-size-h1: 32px;
      --font-size-h2: 28px;
      --font-size-h3: 20px;
      --font-size-body: 15px;
      --font-size-small: 13px;
    }
  }
  
  @media (max-width: 767px) {
    :root {
      --font-size-display: 32px;
      --font-size-h1: 28px;
      --font-size-h2: 24px;
      --font-size-h3: 18px;
      --font-size-body: 14px;
      --font-size-small: 12px;
    }
  }
  
  /* ==========================================================================
     CSS Reset & Base Styles
     ========================================================================== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  body {
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  body.scroll-lock {
    position: fixed;
    overflow: hidden;
    width: 100%;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
  }
  
  button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
  }
  
  ul, ol {
    list-style: none;
  }
  
  /* ==========================================================================
     Container
     ========================================================================== */
  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 12px;
    overflow-x: hidden;
    width: 100%;
  }
  
  @media (min-width: 768px) {
    .container {
      padding: 0 20px;
    }
  }
  
  @media (min-width: 1024px) {
    .container {
      padding: 0 24px;
    }
  }
  
  @media (min-width: 1400px) {
    .container {
      max-width: 1400px;
      padding: 0 10px;
    }
  }
  
  /* ==========================================================================
     Section
     ========================================================================== */
  section {
    padding: 100px 0;
    background: var(--color-bg);
    overflow-x: hidden;
    max-width: 100%;
  }
  
  @media (max-width: 767px) {
    section {
      padding: 60px 0;
    }
  }
  
  /* ==========================================================================
     Typography
     ========================================================================== */
  .section-title {
    margin: 0;
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--color-dark);
  }
  
  h1 {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
  }
  
  h2 {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
  }
  
  h3 {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-normal);
  }
  
  p {
    margin-bottom: 1rem;
    line-height: var(--line-height-relaxed);
  }
  
  /* ==========================================================================
     Buttons
     ========================================================================== */
  .btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-white);
    color: var(--color-primary);
    border-radius: 4px;
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
  }
  
  @media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
      background-color: var(--color-secondary);
      color: var(--color-white);
    }
  }
  
  .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 4px;
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
  }
  
  @media (hover: hover) and (pointer: fine) {
    .btn-secondary:hover {
      background-color: var(--color-secondary-hover);
    }
  }
  
  .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--color-white);
    border-radius: 30px;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-body);
    transition: all 0.3s ease;
    border: 2px solid var(--color-white);
  }
  
  @media (hover: hover) and (pointer: fine) {
    .btn-outline:hover {
      background-color: var(--color-white);
      color: var(--color-dark);
    }
  }
  
  /* ==========================================================================
     Header
     ========================================================================== */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  /* Top Header */
  .top-header {
    background-color: var(--color-white);
    color: var(--color-white);
    padding: 12px 0;
    font-size: 12px;
    position: relative;
    overflow: hidden;
  }

  .top-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    clip-path: polygon(0 0, 46% 0, 38% 100%, 0 100%);
    z-index: 0;
  }

  .top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 1279px) {
    .top-header::before {
      clip-path: polygon(0 0, 75% 0, 70% 100%, 0 100%);
    }

    .main-header::before {
      clip-path: polygon(40% 0, 100% 0, 100% 100%, 26% 100%);
    }
  }
  
  .header-contact {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  
  .header-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-white);
    font-size: 12px;
  }
  
  .header-contact a i {
    font-size: 12px;
  }

  .header-contact a span {
    font-size: 15px;
  }
  
  @media (hover: hover) and (pointer: fine) {
    .header-contact a:hover {
      opacity: 0.8;
    }
  }
  
  .header-social {
    display: flex;
    gap: 12px;
  }
  
  .header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--color-dark);
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 14px;
  }

  @media (hover: hover) and (pointer: fine) {
    .header-social a:hover {
      background-color: rgba(0, 0, 0, 0.15);
    }
  }
  
  /* Main Header */
  .main-header {
    padding: 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
  }
  
  /* Diagonal Blue Background */
  .main-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    clip-path: polygon(38% 0, 100% 0, 100% 100%, 24% 100%);
    z-index: 0;
  }
  
  .header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 18px 0;
  }

  .logo {
    display: flex;
    align-items: center;
    padding-right: 40px;
  }

  .logo img {
    height: 70px;
    width: auto;
  }
  
  /* Desktop Navigation */
  .navigation {
    display: flex;
    justify-content: center;
  }
  
  .menu {
    display: flex;
    gap: 35px;
    align-items: center;
  }
  
  .menu li a {
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  @media (hover: hover) and (pointer: fine) {
    .menu li a:hover {
      opacity: 0.8;
    }
  }
  
  .menu li a i {
    font-size: 12px;
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: var(--color-primary);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    z-index: 1005;
    padding: 10px 0;
  }
  
  .dropdown-content::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--color-white);
  }
  
  @media (hover: hover) and (pointer: fine) {
    .dropdown-content li a:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
  }
  
  /* Header CTA */
  .header-cta {
    display: flex;
    align-items: center;
  }

  .header-cta .btn-primary {
    font-size: 14px;
    padding: 12px 30px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: none;
    align-items: center;
    gap: 8px;
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
    color: var(--color-dark);
  }
  
  .mobile-menu-btn i {
    font-size: 18px;
  }
  
  /* Mobile Navigation */
  .mobile-menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
  }
  
  .mobile-menu-modal.is-open {
    display: block;
  }
  
  .mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-backdrop);
  }
  
  .mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 400px;
    background-color: var(--color-white);
    overflow-y: auto;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  .mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 20px;
  }
  
  .mobile-nav {
    padding: 20px;
  }
  
  .mobile-nav > ul > li {
    border-bottom: 1px solid var(--color-border-light);
  }
  
  .mobile-nav > ul > li > a {
    display: block;
    padding: 14px 0;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--color-dark);
  }
  
  .mobile-nav > ul > li.has-submenu > a {
    position: relative;
    padding-right: 50px;
  }
  
  .mobile-nav > ul > li.has-submenu > a::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: 50% 50%;
    transition: transform 0.3s ease;
  }
  
  .mobile-nav > ul > li.submenu-open > a::after {
    transform: translateY(-50%) rotate(-135deg);
  }
  
  .mobile-nav .submenu {
    display: none;
    padding-left: 20px;
  }
  
  .mobile-nav .submenu.is-open {
    display: block;
  }
  
  .mobile-nav .submenu li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--color-text-muted);
  }
  
  /* Tablet Breakpoint */
  @media (max-width: 1023px) {
    .top-header::before {
      clip-path: polygon(0 0, 70% 0, 65% 100%, 0 100%);
    }

    .main-header::before {
      clip-path: polygon(48% 0, 100% 0, 100% 100%, 32% 100%);
    }

    .header-content {
      gap: 30px;
    }

    .menu {
      gap: 25px;
    }

    .menu li a {
      font-size: 13px;
    }
  }
  
  /* Mobile Breakpoint */
  @media (max-width: 767px) {
    .top-header {
      display: none;
    }

    .top-header::before {
      display: none;
    }

    .main-header::before {
      display: none;
    }
  
    .main-header {
      background-color: var(--color-white);
      border-bottom: 1px solid var(--color-border-light);
    }
  
    .header-content {
      grid-template-columns: auto 1fr auto;
      padding: 12px 0;
    }
  
    .logo {
      justify-self: start;
      padding-right: 0;
    }
  
    .logo img {
      height: 45px;
    }
  
    .navigation {
      display: none;
    }
  
    .header-cta {
      display: none;
    }
  
    .mobile-menu-btn {
      display: flex;
      justify-self: end;
      color: var(--color-primary);
    }
  }
  
  /* ==========================================================================
     Footer
     ========================================================================== */
  .footer {
    background-color: #00173a;
    color: var(--color-white);
    padding: 80px 0 0;
  }

  .footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
  }

  .footer-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    margin: 0;
  }

  .footer-logo {
    flex-shrink: 0;
  }

  .footer-logo img {
    height: auto;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    padding-bottom: 60px;
  }

  .footer-column-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-white);
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }

  .footer-column ul li {
    margin-bottom: 12px;
  }

  .footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
  }

  @media (hover: hover) and (pointer: fine) {
    .footer-column ul li a:hover {
      color: var(--color-white);
    }
  }

  .footer-column-contact .contact-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-column-contact .contact-address i {
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
  }

  .footer-column-contact .contact-address span {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
  }

  .footer-column-contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-column-contact li a i {
    font-size: 16px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
  }

  .footer-bottom-left {
    justify-self: start;
  }

  .footer-bottom-center {
    justify-self: center;
  }

  .footer-bottom-right {
    justify-self: end;
  }

  .footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
  }

  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 18px;
    transition: all 0.3s ease;
  }

  @media (hover: hover) and (pointer: fine) {
    .footer-social a:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-3px);
    }
  }

  .footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
  }

  .footer-credit {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
  }

  .footer-logo-bottom {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
  }

  @media (max-width: 1023px) {
    .footer-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 30px;
      margin-bottom: 50px;
    }

    .footer-title {
      font-size: 36px;
    }

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

    .footer-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      padding-bottom: 50px;
    }

    .footer-column-title {
      font-size: 18px;
      padding-bottom: 12px;
    }

    .footer-column ul li a {
      font-size: 15px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      font-size: 16px;
    }
  }

  @media (max-width: 767px) {
    .footer {
      padding: 60px 0 80px;
    }

    .footer-header {
      gap: 25px;
      margin-bottom: 40px;
    }

    .footer-title {
      font-size: 28px;
    }

    .footer-logo img {
      width: 90px;
    }

    .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
      padding-bottom: 40px;
    }

    .footer-column-title {
      font-size: 16px;
      margin-bottom: 20px;
      padding-bottom: 10px;
    }

    .footer-column ul li a,
    .footer-column-contact .contact-address span {
      font-size: 14px;
    }

    .footer-social a {
      width: 34px;
      height: 34px;
      font-size: 15px;
    }

    .footer-bottom {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 20px 0;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
      justify-self: center;
      text-align: center;
    }

    .footer-copyright,
    .footer-credit,
    .footer-logo-bottom {
      font-size: 13px;
    }

    body {
      padding-bottom: 74px;
    }
  }
  
  /* ==========================================================================
     Footer Sticky (Mobile)
     ========================================================================== */
  .footer-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-dark);
    z-index: 10000;
  }
  
  .footer-sticky-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 74px;
  }
  
  .sticky-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--color-white);
    font-size: 11px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
  }
  
  .sticky-item i {
    font-size: 20px;
  }
  
  .sticky-item.highlight {
    background-color: var(--color-whatsapp);
  }
  
  @media (max-width: 991px) {
    .footer-sticky {
      display: block;
    }
  }

  /* ==========================================================================
     WhatsApp Float Button
     ========================================================================== */
  .whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999;
  }

  .whatsapp-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .whatsapp-button i {
    font-size: 32px;
    flex-shrink: 0;
  }

  .whatsapp-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 150px;
  }

  @media (hover: hover) and (pointer: fine) {
    .whatsapp-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }
  }

  @media (max-width: 1023px) {
    .whatsapp-float {
      bottom: 90px;
      right: 20px;
    }

    .whatsapp-button {
      padding: 12px 20px;
    }

    .whatsapp-button i {
      font-size: 28px;
    }

    .whatsapp-text {
      font-size: 13px;
      max-width: 130px;
    }
  }

  @media (max-width: 767px) {
    .whatsapp-float {
      bottom: 90px;
      right: 15px;
    }

    .whatsapp-button {
      padding: 10px 15px;
      gap: 10px;
    }

    .whatsapp-button i {
      font-size: 24px;
    }

    .whatsapp-text {
      font-size: 12px;
      max-width: 110px;
    }
  }

  /* ==========================================================================
     Prefers Reduced Motion
     ========================================================================== */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
  
  /* ==========================================================================
     Utility Classes
     ========================================================================== */
  .text-center {
    text-align: center;
  }
  
  .text-muted {
    color: var(--color-text-muted);
  }
  
  .mb-20 {
    margin-bottom: 20px;
  }
  
  .mb-30 {
    margin-bottom: 30px;
  }
  
  .mb-40 {
    margin-bottom: 40px;
  }
  
  .mt-20 {
    margin-top: 20px;
  }
  
  .mt-30 {
    margin-top: 30px;
  }
  
  .mt-40 {
    margin-top: 40px;
  }
  
  /* ==========================================================================
     Page Sections
     ========================================================================== */
  
  /* Hero Section */
  .hero-section {
    padding: 0;
    background: var(--color-white);
  }
  
  .hero-slider {
    width: 100%;
  }
  
  .hero-slider .swiper-slide {
    height: auto;
  }
  
  .hero-slider .swiper-slide a {
    display: block;
    width: 100%;
    line-height: 0;
  }
  
  .hero-slider .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Swiper Custom Styles */
  .hero-slider .swiper-pagination {
    bottom: 20px;
  }
  
  .hero-slider .swiper-pagination-bullet {
    background: var(--color-white);
    opacity: 0.7;
    width: 12px;
    height: 12px;
  }
  
  .hero-slider .swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
  }
  
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  
  .hero-slider .swiper-button-next:after,
  .hero-slider .swiper-button-prev:after {
    font-size: 20px;
  }
  
  @media (hover: hover) and (pointer: fine) {
    .hero-slider .swiper-button-next:hover,
    .hero-slider .swiper-button-prev:hover {
      background: rgba(0, 0, 0, 0.5);
    }
  }
  
  @media (max-width: 767px) {
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
      width: 40px;
      height: 40px;
    }
  
    .hero-slider .swiper-button-next:after,
    .hero-slider .swiper-button-prev:after {
      font-size: 16px;
    }
  
    .hero-slider .swiper-pagination {
      bottom: 15px;
    }
  
    .hero-slider .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
    }
  }
  
  /* Stats Section */
  .stats-section {
    background: var(--color-white);
    padding: 80px 0;
  }
  
  .stats-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .stats-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    font-weight: var(--font-weight-normal);
  }
  
  .stats-title {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin: 0;
  }
  
  .stats-title .text-blue {
    color: var(--color-secondary);
  }
  
  .stats-title .text-dark {
    color: var(--color-dark);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stat-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 11.3px 4px rgba(132, 132, 132, 0.25);
    height: 350px;
    padding: 0;
  }
  
  .stat-card-1 {
    background: linear-gradient(180deg, #325b9a 0%, #111f34 100%);
  }
  
  .stat-card-2 {
    background: linear-gradient(180deg, #152a4b 0%, #052b65 100%);
  }
  
  /* Logo Watermark */
  .stat-card::before {
    content: "";
    position: absolute;
    left: -220px;
    top: -58px;
    width: 534px;
    height: 641px;
    background-image: url('../img/logo-watermark.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    mix-blend-mode: color;
    z-index: 0;
    pointer-events: none;
  }
  
  /* Diagonal Line */
  .stat-card::after {
    content: "";
    position: absolute;
    left: 38%;
    top: -58px;
    transform: rotate(11.342deg);
    width: 103px;
    height: 513.108px;
    background: linear-gradient(180deg, #0e1b2d 0%, #2f5793 100%);
    z-index: 2;
    pointer-events: none;
  }
  
  .stat-card-2::after {
    left: 38%;
    width: 104px;
    height: 498px;
  }
  
  .stat-number {
    position: absolute;
    top: 307px;
    left: -33px;
    transform: translateY(-50%);
    font-size: 128px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.38);
    line-height: 76px;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
  }
  
  .stat-text {
    position: relative;
    z-index: 3;
  }
  
  .stat-label {
    position: absolute;
    left: 47px;
    top: 70px;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--color-white);
    font-weight: 400;
    line-height: 68px;
    font-family: 'Montserrat', sans-serif;
    z-index: 3;
  }
  
  .stat-title-main {
    position: absolute;
    left: 47px;
    top: 141px;
    transform: translateY(-50%);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 41px;
    font-family: 'Montserrat', sans-serif;
    z-index: 3;
  }
  
  .stat-image {
    position: absolute;
    left: 301px;
    top: -11px;
    width: 594px;
    height: 447px;
    z-index: 2;
  }
  
  .stat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  @media (max-width: 1023px) {
    .stats-title {
      font-size: 36px;
    }
  
    .stat-card {
      min-height: 350px;
      padding: 30px;
    }
  
    .stat-title-main {
      font-size: 32px;
    }
  
    .stat-label {
      font-size: 20px;
    }
  
    .stat-number {
      font-size: 96px;
    }
  }
  
  @media (max-width: 767px) {
    .stats-title {
      font-size: 28px;
    }
  
    .stats-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .stat-card {
      grid-template-columns: 1fr;
      min-height: 300px;
      padding: 30px 20px;
    }
  
    .stat-image {
      display: none;
    }
  
    .stat-title-main {
      font-size: 28px;
    }
  
    .stat-label {
      font-size: 18px;
    }
  
    .stat-number {
      font-size: 80px;
      bottom: 20px;
    }
  }
  
  /* Section Head */
  .section-head {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-subtitle {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: inherit;
    margin: 10px 0;
  }
  
  .section-description {
    font-size: var(--font-size-body);
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 15px auto 0;
  }
  
  .section-label {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-dark);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 10px;
  }
  
  .section-footer {
    text-align: center;
    margin-top: 40px;
  }
  
  /* Services Section */
  .services-section {
    background: #2a4e86;
    color: var(--color-white);
    padding: 80px 0;
  }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
  }

  .services-header-content {
    flex: 1;
    max-width: 900px;
  }

  .services-title-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 41px;
    margin-bottom: 20px;
  }

  .services-title-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 41px;
    margin-bottom: 25px;
  }

  .services-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: var(--color-white);
    line-height: 33px;
    margin: 0;
    max-width: 773px;
  }

  .services-header-action {
    flex-shrink: 0;
    align-self: flex-end;
  }

  .btn-services {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background-color: var(--color-white);
    color: #325b9a;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    height: 42px;
    min-width: 166px;
  }

  @media (hover: hover) and (pointer: fine) {
    .btn-services:hover {
      background-color: var(--color-neutral-100);
    }
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .service-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0px 4px 35.8px 4px rgba(0, 0, 0, 0.33);
    transition: all 0.3s ease;
    height: 588px;
  }

  .service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 199px;
    background: #325b9a;
    mix-blend-mode: normal;
    padding: 0 35px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.9;
  }

  .service-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 41px;
    margin: 0 0 20px 0;
    color: var(--color-white);
  }

  .service-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 27px;
    margin: 0;
    color: var(--color-white);
    max-width: 315px;
  }

  @media (hover: hover) and (pointer: fine) {
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 8px 40px 6px rgba(0, 0, 0, 0.4);
    }
  }

  @media (max-width: 1023px) {
    .services-title-small {
      font-size: 28px;
    }

    .services-title-main {
      font-size: 36px;
    }

    .services-description {
      font-size: 20px;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .service-card {
      height: 450px;
    }

    .service-card-title {
      font-size: 28px;
    }

    .service-overlay p {
      font-size: 18px;
    }
  }

  @media (max-width: 767px) {
    .services-header {
      flex-direction: column;
      align-items: stretch;
      margin-bottom: 40px;
    }

    .services-header-action {
      align-self: stretch;
    }

    .btn-services {
      width: 100%;
    }

    .services-title-small {
      font-size: 24px;
      line-height: 1.3;
    }

    .services-title-main {
      font-size: 28px;
      line-height: 1.3;
      margin-bottom: 20px;
    }

    .services-description {
      font-size: 16px;
      line-height: 1.5;
    }

    .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .service-card {
      height: 400px;
    }

    .service-overlay {
      height: 160px;
      padding: 0 25px;
    }

    .service-card-title {
      font-size: 24px;
      margin-bottom: 12px;
    }

    .service-overlay p {
      font-size: 16px;
      line-height: 1.4;
    }
  }
  
  /* About Section */
  .about-section {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 800px;
  }

  .about-bg-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    height: 679px;
    background-image: url('../img/logo-damga.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    mix-blend-mode: multiply;
    z-index: 0;
    pointer-events: none;
  }

  .about-diagonal-shape {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 215px;
    height: 540px;
    background-image: url('../img/153f028665d22b2736c4177af98caec573647362.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    pointer-events: none;
  }

  .about-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 4fr 2fr;
    gap: 40px;
    align-items: center;
    min-height: 800px;
    margin-left: 20%;
    margin-right: 30px;
    padding-left: 40px;
    padding-right: 0;
  }

  .about-content {
    max-width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 70px;
  }

  .about-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #181818;
    line-height: normal;
    margin-bottom: 15px;
  }

  .about-title-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #325b9a;
    line-height: 1.2;
    margin: 0px 0 10px 0;
  }

  .about-title-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .about-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 27.2px;
    margin: 0 0 40px 0;
  }

  .btn-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background-color: #325b9a;
    color: var(--color-white);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    height: 42px;
    max-width: 266px;
  }

  @media (hover: hover) and (pointer: fine) {
    .btn-about:hover {
      background-color: #2a4e86;
    }
  }

  .about-image {
    position: relative;
    width: 331px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  @media (max-width: 1023px) {
    .about-section {
      padding: 80px 0;
      min-height: auto;
    }

    .about-bg-logo {
      width: 30%;
      height: 500px;
      left: -5%;
    }

    .about-section .container {
      grid-template-columns: 1fr;
      gap: 50px;
      min-height: auto;
      margin-left: 0;
      margin-right: 0;
      padding-left: 20px;
      padding-right: 20px;
    }

    .about-content {
      max-width: 100%;
      padding: 0;
    }

    .about-label {
      font-size: 28px;
      margin-bottom: 25px;
    }

    .about-title-main {
      font-size: 32px;
      margin-bottom: 25px;
    }

    .about-title-sub {
      font-size: 20px;
      margin-bottom: 30px;
    }

    .about-description {
      font-size: 18px;
      line-height: 1.5;
      margin-bottom: 35px;
    }

    .about-image {
      max-width: 600px;
      margin: 0 auto;
      height: auto;
    }

    .about-image img {
      height: auto;
    }

    .about-diagonal-shape {
      width: 150px;
      height: 500px;
      right: -30px;
    }
  }

  @media (max-width: 767px) {
    .about-section {
      padding: 60px 0;
      min-height: auto;
    }

    .about-bg-logo {
      width: 50%;
      height: 400px;
      left: -20%;
      opacity: 0.5;
    }

    .about-diagonal-shape {
      display: none;
    }

    .about-section .container {
      margin-left: 0;
      margin-right: 0;
      padding-left: 12px;
      padding-right: 12px;
    }

    .about-content {
      text-align: left;
    }

    .about-label {
      font-size: 24px;
      margin-bottom: 20px;
    }

    .about-title-main {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .about-title-sub {
      font-size: 18px;
      margin-bottom: 25px;
    }

    .about-description {
      font-size: 16px;
      margin-bottom: 30px;
    }

    .btn-about {
      width: 100%;
    }

    .about-image {
      height: auto;
    }

    .about-image img {
      height: auto;
    }
  }
  
  /* Process Section */
  .process-section {
    background: #f9fbff;
    padding: 80px 0 100px;
    overflow-x: hidden;
  }

  .process-header {
    margin-bottom: 60px;
  }

  .process-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 15px;
  }

  .process-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    margin: 0;
  }

  .process-title .text-blue {
    color: #325b9a;
  }

  .process-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
  }

  /* Process Titles */
  .process-titles {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin-bottom: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 10px;
    width: 100%;
    max-width: 100%;
  }

  .process-titles::-webkit-scrollbar {
    height: 6px;
  }

  .process-titles::-webkit-scrollbar-track {
    background: rgba(50, 91, 154, 0.1);
    border-radius: 3px;
  }

  .process-titles::-webkit-scrollbar-thumb {
    background: rgba(50, 91, 154, 0.4);
    border-radius: 3px;
  }

  .process-titles::-webkit-scrollbar-thumb:hover {
    background: rgba(50, 91, 154, 0.6);
  }

  .process-title-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
    margin: 0;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 2px #325b9a;
    text-stroke: 2px #325b9a;
    transition: all 0.4s ease;
    cursor: pointer;
    flex-shrink: 0;
  }

  .process-title-item.active {
    color: #325b9a;
    -webkit-text-stroke: 0;
    text-stroke: 0;
  }

  /* Progress Bar */
  .process-progress-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 9px;
    margin-bottom: 30px;
  }

  .process-progress-bg {
    position: absolute;
    width: 100%;
    height: 9px;
    background: url('../img/aaf35c98e91249348ecc18e6a9ffbb93d36f6339.svg') repeat-x;
    background-size: contain;
    opacity: 0.3;
  }

  .process-progress-fill {
    position: absolute;
    height: 9px;
    background: url('../img/aaf35c98e91249348ecc18e6a9ffbb93d36f6339.svg') repeat-x;
    background-size: contain;
    width: 20%;
    transition: width 0.4s ease;
    max-width: 100%;
  }

  .process-slider {
    overflow: visible;
    width: 100%;
    max-width: 100%;
  }

  .process-slider .swiper-wrapper {
    align-items: stretch;
  }

  .process-slider .swiper-slide {
    height: auto;
    max-width: 100%;
  }

  .process-card {
    background: transparent;
    padding: 0;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  .process-card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #2b2b2b;
    line-height: 32px;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .process-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
  }

  .process-button-prev,
  .process-button-next {
    width: 70px;
    height: 70px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #325b9a;
    transition: all 0.3s ease;
  }

  @media (hover: hover) and (pointer: fine) {
    .process-button-prev:hover,
    .process-button-next:hover {
      opacity: 0.7;
    }
  }

  @media (max-width: 1023px) {
    .process-section {
      overflow-x: hidden;
    }

    .process-title {
      font-size: 36px;
    }

    .process-slider-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }

    .process-titles {
      gap: 40px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      width: 100%;
      max-width: 100%;
    }

    .process-titles::-webkit-scrollbar {
      height: 5px;
    }

    .process-titles::-webkit-scrollbar-track {
      background: rgba(50, 91, 154, 0.1);
      border-radius: 3px;
    }

    .process-titles::-webkit-scrollbar-thumb {
      background: rgba(50, 91, 154, 0.4);
      border-radius: 3px;
    }

    .process-title-item {
      font-size: 28px;
      line-height: 1.3;
      -webkit-text-stroke: 1.2px #325b9a;
      text-stroke: 1.2px #325b9a;
    }

    .process-title-item.active {
      -webkit-text-stroke: 0;
      text-stroke: 0;
    }

    .process-card-description {
      font-size: 18px;
      line-height: 1.6;
    }
  }

  @media (max-width: 767px) {
    .process-section {
      padding: 60px 0;
      overflow-x: hidden;
    }

    .process-header {
      margin-bottom: 40px;
    }

    .process-subtitle {
      font-size: 16px;
    }

    .process-title {
      font-size: 28px;
    }

    .process-slider-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }

    .process-titles {
      gap: 20px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      padding-bottom: 5px;
      width: 100%;
      max-width: 100%;
    }

    .process-titles::-webkit-scrollbar {
      height: 4px;
    }

    .process-titles::-webkit-scrollbar-track {
      background: rgba(50, 91, 154, 0.1);
      border-radius: 2px;
    }

    .process-titles::-webkit-scrollbar-thumb {
      background: rgba(50, 91, 154, 0.4);
      border-radius: 2px;
    }

    .process-title-item {
      font-size: 18px;
      line-height: 1.3;
      -webkit-text-stroke: 0.8px #325b9a;
      text-stroke: 0.8px #325b9a;
    }

    .process-title-item.active {
      -webkit-text-stroke: 0;
      text-stroke: 0;
    }

    .process-progress-wrapper {
      margin-bottom: 25px;
    }

    .process-card-description {
      font-size: 15px;
      line-height: 1.6;
    }

    .process-button-prev,
    .process-button-next {
      width: 50px;
      height: 50px;
      font-size: 24px;
    }

    .process-navigation {
      margin-top: 40px;
      gap: 20px;
    }
  }

  @media (max-width: 480px) {
    .process-section {
      overflow-x: hidden;
    }

    .process-title {
      font-size: 24px;
    }

    .process-slider-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }

    .process-title-item {
      font-size: 16px;
      line-height: 1.4;
      -webkit-text-stroke: 0.7px #325b9a;
      text-stroke: 0.7px #325b9a;
    }

    .process-titles {
      gap: 15px;
      width: 100%;
      max-width: 100%;
    }

    .process-progress-wrapper {
      height: 7px;
      margin-bottom: 20px;
    }

    .process-progress-bg,
    .process-progress-fill {
      height: 7px;
    }

    .process-card-description {
      font-size: 14px;
      line-height: 1.5;
    }
  }

  /* Expertise Section */
  .expertise-section {
    background: linear-gradient(180deg, #325b9a 0%, #111f34 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
  }

  .expertise-bg-logo {
    position: absolute;
    width: 1060px;
    height: 1058px;
    background-image: url('../img/2cb57ac3aac8b7d7d51136f51bac7e914523f5b6.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    mix-blend-mode: multiply;
    z-index: 0;
  }

  .expertise-bg-logo-1 {
    top: -164px;
    right: -300px;
    transform: rotate(338.123deg);
  }

  .expertise-bg-logo-2 {
    top: -329px;
    left: -560px;
    transform: rotate(338.123deg);
  }

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

  /* 6 Kutulu Grid YapÄ±sÄ± */
  .expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 57px;
  }

  /* Genel Kutu Stili */
  .expertise-box {
    position: relative;
    min-height: 289px;
    overflow: hidden;
  }

  /* 1. Kutu: BaÅŸlÄ±k Kutusu (Ã‡erÃ§evesiz, Ä°konsuz) */
  .expertise-box-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
  }

  .expertise-box-header .expertise-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: white;
    line-height: 41px;
    margin: 0 0 25px 0;
  }

  .expertise-box-header .expertise-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 50px;
    margin: 0;
  }

  /* 2-6. Kutular: Ä°Ã§erik KartlarÄ± (Ã‡erÃ§eveli, Ä°konlu) */
  .expertise-box-card {
    /* Kartlar iÃ§in relative positioning */
  }

  .expertise-card-border {
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    height: 259px;
    z-index: 0;
  }

  .expertise-card-border img {
    width: 100%;
    height: 100%;
  }

  .expertise-card-icon {
    position: absolute;
    left: 58px;
    top: 5px;
    width: 49px;
    height: 49px;
    z-index: 1;
  }

  .expertise-card-icon img {
    width: 100%;
    height: 100%;
  }

  .expertise-card-title {
    position: absolute;
    left: 33px;
    top: 130px;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 36px;
    margin: 0;
    z-index: 1;
    max-width: 296px;
  }

  .expertise-card-description {
    position: absolute;
    left: 33px;
    top: 232px;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: white;
    line-height: 25px;
    margin: 0;
    z-index: 1;
    max-width: 241px;
  }

  @media (max-width: 1279px) {
    .expertise-grid {
      gap: 40px 30px;
    }

    .expertise-box {
      height: auto;
      min-height: 250px;
    }

    .expertise-box-header .expertise-title {
      font-size: 28px;
      line-height: 36px;
      margin-bottom: 20px;
    }

    .expertise-box-header .expertise-subtitle {
      font-size: 40px;
      line-height: 46px;
    }

    .expertise-card-title {
      font-size: 28px;
      line-height: 32px;
      top: 120px;
    }

    .expertise-card-description {
      font-size: 18px;
      line-height: 23px;
      top: 200px;
    }
  }

  @media (max-width: 1023px) {
    .expertise-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .expertise-box-header {
      padding: 40px 30px;
    }

    .expertise-box-header .expertise-title {
      font-size: 24px;
      line-height: 30px;
    }

    .expertise-box-header .expertise-subtitle {
      font-size: 36px;
      line-height: 42px;
    }
  }

  @media (max-width: 767px) {
    .expertise-section {
      padding: 60px 0;
    }

    .expertise-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .expertise-box {
      min-height: 220px;
    }

    .expertise-box-card {
      margin-bottom:80px;
    }

    .expertise-box-header {
      padding: 30px 20px;
      min-height: 180px;
    }

    .expertise-box-header .expertise-title {
      font-size: 20px;
      line-height: 26px;
      margin-bottom: 15px;
    }

    .expertise-box-header .expertise-subtitle {
      font-size: 28px;
      line-height: 34px;
    }

    .expertise-card-title {
      font-size: 24px;
      line-height: 28px;
      top: 110px;
    }

    .expertise-card-description {
      font-size: 16px;
      line-height: 20px;
      top: 180px;
    }

    .expertise-card-icon {
      width: 40px;
      height: 40px;
      left: 40px;
    }
  }
  
  /* Catalog CTA Section */
  .catalog-cta-section {
    background: var(--color-white);
    padding: 80px 0;
  }

  .catalog-cta {
    position: relative;
    background: #f9fbff;
    border: 1px solid #325b9a;
    border-radius: 30px;
    min-height: 222px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .catalog-content {
    position: relative;
    left: 65px;
    z-index: 1;
    padding: 40px 0;
  }

  .catalog-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #000;
    line-height: 41px;
    margin: 0 0 30px 0;
  }

  .catalog-btn {
    display: inline-block;
    background: #325b9a;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 0 25px;
    height: 42px;
    line-height: 42px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  @media (hover: hover) and (pointer: fine) {
    .catalog-btn:hover {
      background: #254777;
    }
  }

  .catalog-image {
    position: absolute;
    right: -100px;
    top: -70px;
    width: 581px;
    height: 363px;
    z-index: 0;
  }

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

  @media (max-width: 1279px) {
    .catalog-image {
      right: -50px;
      top: -40px;
      width: 450px;
      height: 280px;
    }

    .catalog-title {
      font-size: 28px;
      line-height: 36px;
      margin-bottom: 35px;
    }
  }

  @media (max-width: 1023px) {
    .catalog-cta {
      min-height: 200px;
      padding: 40px 30px;
      display: block;
    }

    .catalog-content {
      position: relative;
      left: 0;
      padding: 0;
    }

    .catalog-title {
      font-size: 24px;
      line-height: 30px;
      margin-bottom: 25px;
    }

    .catalog-image {
      display: none;
    }
  }

  @media (max-width: 767px) {
    .catalog-cta-section {
      padding: 60px 0;
    }

    .catalog-cta {
      padding: 30px 20px;
      min-height: auto;
    }

    .catalog-content {
      left: 0;
      padding: 0;
    }

    .catalog-title {
      font-size: 20px;
      line-height: 26px;
      margin-bottom: 20px;
    }

    .catalog-btn {
      font-size: 14px;
      padding: 0 20px;
      height: 38px;
      line-height: 38px;
    }
  }
  
  /* Why Us Section */
  .why-us-section {
    position: relative;
    padding: 0 0 80px 0;
    overflow: hidden;
  }

  .why-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 459px;
    overflow: hidden;
    z-index: 0;
  }

  .why-us-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .why-us-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #325b9a;
    mix-blend-mode: multiply;
  }

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

  .why-us-header {
    text-align: center;
    padding: 80px 0 160px;
  }

  .why-us-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: white;
    line-height: 41px;
    margin-bottom: 20px;
  }

  .why-us-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 50px;
    margin: 0;
  }

  .why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }

  .why-us-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 37px 30px;
    text-align: center;
    min-height: 263px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 37px;
    background: #325b9a;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
  }

  .why-us-card-title {
    font-family: 'Tahoma', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 32px;
    margin: 0 0 20px 0;
  }

  .why-us-card p {
    font-family: 'Tahoma', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 22.4px;
    margin: 0;
  }

  @media (max-width: 1279px) {
    .why-us-header {
      padding: 60px 0 120px;
    }

    .why-us-subtitle {
      font-size: 28px;
      line-height: 36px;
    }

    .why-us-title {
      font-size: 40px;
      line-height: 46px;
    }

    .why-us-grid {
      gap: 25px;
    }
  }

  @media (max-width: 1023px) {
    .why-us-bg {
      height: 350px;
    }

    .why-us-header {
      padding: 50px 0 100px;
    }

    .why-us-subtitle {
      font-size: 24px;
      line-height: 30px;
    }

    .why-us-title {
      font-size: 32px;
      line-height: 38px;
    }

    .why-us-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }

  @media (max-width: 767px) {
    .why-us-section {
      padding: 0 0 60px 0;
    }

    .why-us-bg {
      height: 300px;
    }

    .why-us-header {
      padding: 40px 0 80px;
    }

    .why-us-subtitle {
      font-size: 20px;
      line-height: 26px;
      margin-bottom: 15px;
    }

    .why-us-title {
      font-size: 28px;
      line-height: 34px;
    }

    .why-us-grid {
      grid-template-columns: 1fr;
    }

    .why-us-card {
      min-height: auto;
      padding: 30px 20px;
    }

    .why-us-card-title {
      font-size: 18px;
      line-height: 28px;
    }

    .why-us-card p {
      font-size: 13px;
      line-height: 20px;
    }
  }
  
  /* References Section */
  .references-section {
    background: var(--color-white);
    padding: 60px 0;
    overflow: hidden;
  }

  .references-slider {
    width: 100%;
    height: 163px;
    overflow: visible;
  }

  .references-slider .swiper-wrapper {
    align-items: center;
  }

  .references-slider .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .reference-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
  }

  .reference-logo img {
    max-height: 90px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  @media (hover: hover) and (pointer: fine) {
    .reference-logo:hover img {
      opacity: 1;
    }
  }

  @media (max-width: 767px) {
    .references-section {
      padding: 40px 0;
    }

    .references-slider {
      height: 100px;
    }

    .reference-logo {
      padding: 0 25px;
    }

    .reference-logo img {
      max-height: 80px;
    }
  }
  
  /* Contact CTA Section */
  .contact-cta-section {
    position: relative;
    height: 465px;
    overflow: hidden;
  }

  .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(50, 91, 154, 0.8) 0%, rgba(50, 91, 154, 0.8) 100%),
                linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(50, 91, 154) 90.385%);
  }

  .cta-logo-watermark {
    position: absolute;
    left: -349px;
    top: -360px;
    width: 1108px;
    height: 1108px;
    z-index: 1;
    opacity: 0.1;
  }

  .cta-logo-watermark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .contact-cta-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .cta-content {
    max-width: 583px;
    text-align: right;
  }

  .cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 51px;
    margin: 0 0 40px 0;
    background: linear-gradient(90deg, #ffffff 0%, #efefef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .cta-btn {
    display: inline-block;
    background: white;
    color: #325b9a;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 0 25px;
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  @media (hover: hover) and (pointer: fine) {
    .cta-btn:hover {
      background: #f0f0f0;
    }
  }

  @media (max-width: 1279px) {
    .contact-cta-section {
      height: 400px;
    }

    .cta-title {
      font-size: 40px;
      line-height: 46px;
      margin-bottom: 35px;
    }
  }

  @media (max-width: 1023px) {
    .contact-cta-section {
      height: 350px;
    }

    .contact-cta-section .container {
      justify-content: center;
    }

    .cta-content {
      text-align: center;
      max-width: 90%;
    }

    .cta-title {
      font-size: 32px;
      line-height: 38px;
      margin-bottom: 30px;
    }
  }

  @media (max-width: 767px) {
    .contact-cta-section {
      height: 300px;
    }

    .cta-logo-watermark {
      left: -500px;
      top: -500px;
      width: 800px;
      height: 800px;
    }

    .cta-title {
      font-size: 24px;
      line-height: 30px;
      margin-bottom: 25px;
    }

    .cta-btn {
      font-size: 14px;
      padding: 0 20px;
      height: 36px;
      line-height: 36px;
    }
  }
  