
* {
    font-family: 'Poppins', sans-serif !important;
    line-height:1.4 !important;
    letter-spacing:0.25px !important;
}


 :root {
      --primary-red: #fa0a0a;
      --dropdown-bg: #ececec;
      --dropdown-hover: #e1e1e1;
      --dot-active: #51c54a;
    }

    * {
      box-sizing: border-box;
    }

    .site-header {
     
      position: relative;
      z-index: 1050;
    }

   

    .navbar-custom {
      min-height: 88px;
      padding: 0;
    }

    .navbar-brand img {
      height: 42px;
      object-fit: contain;
      display: block;
    }

    .main-nav {
      gap: 14px;
      align-items: center;
    }

    .main-nav > li {
      position: relative;
      list-style: none;
    }

    .main-nav > li > a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 88px;
      padding: 0 12px;
      font-size: 14px;
      font-weight: 400;
      color: #222;
      text-decoration: none;
      transition: color .2s ease;
    }

    .main-nav > li:hover > a,
    .main-nav > li > a.active-link {
      color: #ff5a5a;
    }

    .quote-btn {
      background: var(--primary-red);
      color: #fff;
      border-radius: 999px;
      text-decoration: none;
      padding: 14px 34px;
      font-size: 14px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: .2s ease;
      white-space: nowrap;
    }

    .quote-btn:hover {
      background: #eb0d0d;
      color: #fff;
    }

    .menu-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      width: 200px;
      background: var(--dropdown-bg);
      border: none;
      padding: 0;
      margin: 0;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all .22s ease;
      z-index: 999;
    }

    .has-dropdown:hover .menu-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .menu-dropdown li a {
      display: block;
      padding: 15px 18px;
      font-size: 14px;
      font-weight: 400;
      color: #666;
      text-decoration: none;
      border-bottom: 1px solid #dedede;
      background: var(--dropdown-bg);
      transition: .2s ease;
    }

    .menu-dropdown li:last-child a {
      border-bottom: none;
    }

    .menu-dropdown li a:hover {
      background: var(--dropdown-hover);
      color: #444;
    }

    .hero-slider-wrap {
      position: relative;
    }

    .hero-slider,
    .hero-slider .carousel-item {
      height: 708px;
    }

    .hero-slider .carousel-item {
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transform: scale(1.01);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg,
        rgba(255,0,0,0.92) 0%,
        rgba(242,25,25,0.78) 24%,
        rgba(206,0,0,0.52) 48%,
        rgba(194,0,0,0.62) 72%,
        rgba(210,0,0,0.92) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
    }

    .hero-content .container {
      height: 100%;
      position: relative;
    }

    .hero-text-area {
      height: 100%;
      display: flex;
      align-items: center;
      padding-left: 0;
      padding-bottom: 60px;
    }

    .hero-text-inner {
      max-width: 620px;
      margin-left: 0;
    }

    .hero-title {
      color: #fff;
      font-size: 30px;
      line-height: 1.85;
      font-weight: 600;
      margin: 0 0 28px;
      letter-spacing: -0.5px;
    }

    .detail-btn {
      min-width: 292px;
      height: 48px;
      border: none;
      border-radius: 6px;
      background: linear-gradient(to bottom, #f7f7f7 0%, #d8d8d8 100%);
      color: #666;
      font-size: 18px;
      font-weight: 600;
      box-shadow: 0 6px 10px rgba(0,0,0,0.14);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: .2s ease;
    }

    .detail-btn:hover {
      color: #555;
      transform: translateY(-1px);
    }

    .hero-product {
      position: absolute;
      z-index: 2;
      pointer-events: none;
      user-select: none;
    }

    .product-top {
      right: 260px;
      top: 245px;
      width: 265px;
    }

    .product-bottom {
      right: 470px;
      bottom: 118px;
      width: 330px;
    }

    .hero-product img {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 8px 12px rgba(0,0,0,0.22));
    }

    .hero-slider .carousel-indicators {
      margin-bottom: 36px;
      gap: 12px;
    }

    .hero-slider .carousel-indicators [data-bs-target] {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: none;
      margin: 0;
      background-color: rgba(255,255,255,0.95);
      opacity: 1;
    }

    .hero-slider .carousel-indicators .active {
      background-color: var(--dot-active);
    }

    .navbar-toggler {
      border: none;
      box-shadow: none !important;
    }

    @media (max-width: 1399.98px) {
      .product-top {
        right: 180px;
      }

      .product-bottom {
        right: 360px;
      }
    }

    @media (max-width: 1199.98px) {
      .navbar-custom {
        padding: 16px 0;
      }

      .main-nav > li > a {
        min-height: 60px;
      }

      .hero-slider,
      .hero-slider .carousel-item {
        height: 620px;
      }

      .hero-text-area {
        padding-right: 40px;
      }

      .hero-title {
        font-size: 28px;
        line-height: 1.7;
      }

      .product-top {
        right: 90px;
        width: 220px;
      }

      .product-bottom {
        right: 260px;
        width: 280px;
      }
    }

    @media (max-width: 991.98px) {
      .site-header .container {
        padding-left: 18px;
        padding-right: 18px;
      }

      .navbar-collapse {
        background: #f4f4f4;
        padding: 12px 0 20px;
      }

      .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
      }

      .main-nav > li {
        width: 100%;
      }

      .main-nav > li > a {
        min-height: auto;
        width: 100%;
        justify-content: flex-start;
        padding: 12px 0;
      }

      .menu-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-bottom: 8px;
      }

      .has-dropdown:hover .menu-dropdown {
        display: block;
      }

      .hero-slider,
      .hero-slider .carousel-item {
        height: 560px;
      }

      .hero-text-area {
        align-items: center;
        justify-content: center;
        padding: 0 28px 40px;
        text-align: center;
      }

      .hero-text-inner {
        max-width: 760px;
      }

      .hero-title {
        font-size: 24px;
        line-height: 1.6;
      }

      .detail-btn {
        min-width: 260px;
        font-size: 16px;
      }

      .product-top,
      .product-bottom {
        display: none;
      }
    }

    @media (max-width: 575.98px) {
      .navbar-brand img {
        height: 36px;
      }

      .quote-btn {
        padding: 12px 20px;
        font-size: 13px;
      }

      .hero-slider,
      .hero-slider .carousel-item {
        height: 500px;
      }

      .hero-title {
        font-size: 20px;
        line-height: 1.55;
      }

      .detail-btn {
        min-width: 220px;
        height: 46px;
        font-size: 15px;
      }
    }

/* ÜST ALAN */
.features-section {
    background:#f4f4f4;
    padding:110px 0;
}

.feature-box {
    text-align:center;
    padding:20px;
}

.feature-icon img {

    margin-bottom:15px;
}

.feature-title {
    font-weight:600;
    font-size:20px;
    margin-bottom:15px;
}

.feature-text {
    color:#6c757d;
    font-size:14px;
    line-height:1.6;
}

/* ALT BANNER (SADE) */
.cta-section {
    background:url('../img/bg.jpg') center/cover no-repeat;
    padding:100px 0;
    text-align:center;
    color:#fff;
}

.cta-title {
    font-size:28px;
    font-weight:600;
    margin-bottom:15px;
}

.cta-text {
    font-size:15px;
    margin-bottom:25px;
}

.cta-btn {
    background:#fff;
    color:#000;
    padding:10px 25px;
    border-radius:4px;
    text-decoration:none;
    display:inline-block;
}

/* MOBİL */
@media(max-width:768px){
    .features-section {
        padding:50px 0;
    }

    .cta-section {
        padding:70px 0;
    }

    .cta-title {
        font-size:22px;
    }
}



img.nar {
    width: 75px;
}


    .footer-section {
    background: linear-gradient(90deg, #2c2c2c, #1f1f1f);
    color:#fff;
    padding:60px 0 0;
}

.footer-logo {
    max-width:200px;
}

.footer-section p {
    font-size:14px;
    margin-bottom:20px;
}

.footer-links {
    list-style:none;
    padding:0;
}

.footer-links li {
    margin-bottom:10px;
}

.footer-links a {
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.footer-links a:hover {
    text-decoration:underline;
}

.social a {
    color:#fff;
    margin-right:10px;
    font-size:18px;
}

.footer-box {
    width:100%;
    max-width:260px;
    height:180px;
    background:#d9d3cc;
    border-radius:10px;
    display:inline-block;
}

/* ALT */
.footer-bottom {
    background:#303030;
   
    font-size:13px;
   
}

/* MOBİL */
@media(max-width:768px){
    .footer-section {
        text-align:center;
    }

    .footer-box {
        margin:auto;
    }
}


.page-header {
    background:#f4f4f4;
    padding:25px 0;
}

.page-title {
    font-size:30px;
    font-weight:500;
    margin:0;
}

.breadcrumb {
    font-size:14px;
    color:#999;
        justify-content: end;
}

.breadcrumb a {
    color:#999;
    text-decoration:none;
}

.breadcrumb span {
    margin:0 5px;
}

/* CONTACT */
.contact-section {
    padding:70px 0;
}

.contact-info p {
    font-size:18px;
    margin-bottom:18px;
}

.contact-info .red {
    color:var(--primary-red);
}

/* FORM */
.contact-form {
    max-width:500px;
    margin-left:auto;
}

.form-title {
    color:var(--primary-red);
    font-size:22px;
    margin-bottom:20px;
}

.contact-form .form-control {
    margin-bottom:12px;
    border-radius:0;
    height:45px;
    font-size:14px;
}

.contact-form textarea.form-control {
    height:150px;
}

/* BUTTON */
.btn-submit {
    background:var(--primary-red);
    color:#fff;
    border:none;
    padding:12px 30px;
    border-radius:30px;
    font-size:14px;
    margin-top:10px;
}

/* MOBİL */
@media(max-width:768px){

    .contact-form {
        margin-left:0;
    }

    .page-title {
        text-align:center;
        margin-bottom:10px;
    }

    .breadcrumb {
        text-align:center;
    }

}










 .catalog-section {
    padding:80px 0;

}

/* KART (ARTIK DEFAULT VAR) */
.catalog-item {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    height:140px;
    padding:20px;

    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);

    text-decoration:none;
    transition:all 0.25s ease;
}

/* LOGO */
.catalog-item img {
    max-height:50px;
    object-fit:contain;
    margin-bottom:15px;
}

/* TEXT */
.catalog-item span {
    font-size:13px;
    color:var(--primary-red);
    font-weight:500;
}

/* HOVER (SADE) */
.catalog-item:hover {
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.10);
}

/* MOBİL */
@media(max-width:768px){
    .catalog-item {
        height:120px;
        padding:15px;
    }
}








 .about-section {
    padding:80px 0;
    background:#fff;
}

/* GÖRSEL */
.about-image img {
    width:100%;
    height:100%;
    max-height:500px;
    object-fit:cover;
    
}

/* METİN */
.about-content p {
    font-size:14px;
    color:#555;
    margin-bottom:18px;
    line-height:1.6;
}

/* MOBİL */
@media(max-width:768px){

    .about-image img {
        max-height:300px;
    }

}


img.img-fluid.brand-logo.frk {
    width: 30% !important;
    margin-bottom: 20px;
}