*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Heebo',sans-serif;
}

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

/* TOPBAR */
.topbar{
  background: #0b2f4a;
  color:#fff;
  font-size:14px;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 0;
  flex-wrap:wrap;
}

/* ITEM */
.top-item{
  display:flex;
  align-items:center;
  gap:10px;
}

/* ICON */
.top-item i{
  width:40px;
  height:40px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}

/* TEXT */
.top-item span{
  font-size:12px;
  opacity:0.8;
}

.top-item p{
  font-size:14px;
  font-weight:600;
}

/* SOCIAL */
.top-social{
  display:flex;
  align-items:center;
  gap:10px;
}

.top-social a{
  width:35px;
  height:35px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:0.3s;
}

.top-social a:hover{
  background:#0a4a94;
}


@media(max-width:768px){
  .topbar{
    display:none;
  }
}


/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â°ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± MOBILE */
@media(max-width:992px){

  .topbar-inner{
    flex-direction:column;
    gap:10px;
    align-items:flex-start;
  }

  .top-social{
    margin-top:10px;
  }

  .top-item{
    width:100%;
  }
}

/* HEADER */
.header{
  background: #fbf9f9;
  height: 130px;
  display:flex;
  align-items:center;
  position:relative;
  z-index: 9999;
}

/* INNER */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.logo-box{
  position:relative;
  width: 200px;
  height: 110px;
  display:flex;
  align-items:center;
}

/* SHAPE */
.logo-box::before{
  content:"";
  position:absolute;
  left:-40px;
  top:0;
  width:280px;
  height:100%;
  clip-path:polygon(0 0, 85% 0, 70% 100%, 0% 100%);
  z-index:-1;
}

/* LOGO IMG */
.logo-img{
  height: 170px; /* FIX */
  margin: 10px 0px 0px 0px;
}

/* ===================== */
/* MENU */
/* ===================== */

/* ===================== */
/* MENU ANA */
/* ===================== */

.menu > ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

/* LINK */
.menu > ul > li > a {
  text-decoration: none;
  color: #0b2f4a;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: 0.3s;
}

/* + sadece dropdown */
.menu > ul > li.dropdown > a::after {
  content: "+";
  margin-left: 4px;
  font-size: 13px;
}

/* HOVER */
.menu > ul > li > a:hover {
  color: #0a4a94;
}

/* ALT ÃƒÆ’Ã¢â‚¬Â¡Ãƒâ€žÃ‚Â°ZGÃƒâ€žÃ‚Â° */
.menu > ul > li > a::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #0a4a94;
  transition: 0.3s;
}

.menu > ul > li > a:hover::before {
  width: 100%;
}

/* ===================== */
/* DROPDOWN */
/* ===================== */

.menu ul li {
  position: relative;
}

/* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ submenu izolasyonu */
.menu ul ul {
  position: absolute;
  flex-direction: column;
}

/* SUBMENU */
.submenu {
  top: 100%;
  left: 0;
  width: 220px;
  background: #fff;
  padding: 10px 0;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index: 999;
}

/* ITEM */
.submenu li {
  display: block;
  width: 100%;
}

/* LINK */
.submenu li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  text-transform: none;
  font-weight: 500;
}

/* HOVER */
.submenu li:hover {
  background: #f5f5f5;
}

.submenu li a:hover {
  color: #0a4a94;
}

/* AÃƒÆ’Ã¢â‚¬Â¡ILMA */
.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===================== */
/* RIGHT */
/* ===================== */

.right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ===================== */
/* BUTTON */
/* ===================== */

.btn {
  background: #0b2f4a;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

/* ===================== */
/* HAMBURGER */
/* ===================== */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 3px 0;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 992px) {

  .menu {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: .3s;
    z-index: 9999;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
  }

  .menu.active {
    max-height: 80vh;
    overflow-y: auto;
  }

  .menu > ul {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

  .menu > ul > li {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
  }

  .menu > ul > li > a {
    display: block;
    width: 100%;
  }

  .submenu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 10px 0 0;
    background: #f8f8f8;
    margin-top: 10px;
    border-radius: 8px;
  }

  .dropdown.active .submenu {
    display: block;
  }

  .submenu li {padding:0;}
  .submenu li a {
    display:block;
    padding:10px 15px;
    font-size:14px;
  }

  .hamburger {display:flex;}
  .btn {display:none;}
}

/* ===================== */
/* TABLET */
/* ===================== */

@media (max-width: 1200px) {

  .menu > ul {
    gap: 15px;
  }

  .menu > ul > li > a {
    font-size: 13px;
  }

  .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}


/* BURADAN SONRA SLÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°DER */

.hero{
  position:relative;
  height:85vh;
  overflow:hidden;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 0.8s ease;
}

.slide.active{
  opacity:1;
  z-index:1;
}

/* MAVÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° OVERLAY */
.overlay{
  position:absolute;
  width:100%;
  height:100%;
  /* background:rgba(10,74,148,0.75); */
}

/* CONTENT */
.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  top:50%;
  transform:translateY(-50%);
}

/* TEXT */
.hero-content .sub{
  font-size:13px;
  letter-spacing:2px;
  opacity:0;
  transform:translateY(-40px);
  animation:drop 0.6s forwards;
}

.hero-content h1{
  font-size:55px;
  font-weight:700;
  margin:15px 0;
  opacity:0;
  transform:translateY(-50px);
  animation:drop 0.8s forwards;
}

.hero-content p{
  max-width:500px;
  opacity:0;
  transform:translateY(-40px);
  animation:drop 1s forwards;
}


/* HERO CONTENT */
.hero-inner{
    position:relative;
    z-index:5;
    max-width:700px;
    color:#fff;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-inner span{
    display:inline-block;
    margin-bottom:15px;
    font-size:13px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#ffffff;
}

.hero-inner h1{
    font-size:clamp(48px,6vw,82px);
    font-weight:800;
    line-height:1.05;
    margin-bottom:25px;
    max-width:700px;
}

.hero-inner p{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.9);
    max-width:600px;
    margin-bottom:35px;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:180px;
    height:58px;

    background:#ffffff;
    color:#111;

    border-radius:50px;
    text-decoration:none;
    font-weight:700;

    transition:.3s;
}

.hero-btn:hover{
    transform:translateY(-4px);
}

.hero-btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:180px;
    height:58px;

    border:1px solid rgba(255,255,255,.4);

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);

    color:#fff;
    border-radius:50px;

    text-decoration:none;
    font-weight:700;

    transition:.3s;
}

.hero-btn-outline:hover{
    background:#fff;
    color:#111;
}
.hero-slider{
    position:relative;
    height:90vh;
    min-height:750px;
    overflow:hidden;
}

.hero-slide{
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;

    opacity:0;
    transition:1s;
}

.hero-slide.active{
    opacity:1;
    z-index:2;
}



/* BUTTONS */
.buttons{
  margin-top:25px;
  opacity:0;
  transform:translateY(-30px);
  animation:drop 1.2s forwards;
}

.btn{
  padding:12px 25px;
  text-decoration:none;
  border-radius:4px;
  margin-right:10px;
  font-weight:600;
}

.btn.primary{
  background: #0b2f4a;
  color:#fff;
}

.btn.secondary{
  background:#fff;
  color:#000;
}

/* ANIMATION */
@keyframes drop{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* OKLAR */
.arrows{
  position:absolute;
  left:30px;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
}

.arrow{
  width:45px;
  height:45px;
  background:rgba(255,255,255,0.2);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:10px 0;
  cursor:pointer;
  border-radius:50%;
}

/* BURADAN SONRASI ORTA TANITIM BÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“LÃƒÆ’Ã†â€™Ãƒâ€¦Ã¢â‚¬Å“MÃƒÆ’Ã†â€™Ãƒâ€¦Ã¢â‚¬Å“ */
.services {
  padding: 80px 0;
  background: #f5f5f5;
}

.services-inner {
  display: flex;
  gap: 10px; /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ aralÃƒâ€žÃ‚Â±k */
}

/* CARD */
.service-card {
  width: calc(25.333% - 7px); /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ 3 kart + gap dengesi */
  height: 420px; /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ sabit yÃƒÆ’Ã‚Â¼kseklik */
  text-align: center;
  padding: 60px 30px;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  float: left;
  margin: 60px 0px 60px 0px;
}

/* GRID BACKGROUND */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#eee 1px, transparent 1px),
                    linear-gradient(90deg, #eee 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  transition: 0.4s;
  z-index: 1;
}

/* DARK OVERLAY */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a4a94, #0a4a94);
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}

/* CONTENT */
.service-card * {
  position: relative;
  z-index: 2;
  transition: 0.4s;
  
}

/* ICON */
.service-card .icon {
  width: 90px;
  height: 90px;
  background: #0a4a94;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

/* TEXT */
.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

/* BUTTON */
.learn {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid #ddd;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  background: transparent;
}

/* ===================== */
/* ÃƒÆ’Ã‚Â°Ãƒâ€¦Ã‚Â¸ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒâ€šÃ‚Â¥ HOVER EFFECT */
/* ===================== */

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover::before {
  opacity: 0.15;
  transform: scale(1.2);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ICON */


/* TEXT */
.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

/* BUTTON */
.service-card:hover .learn {
  background: #0077ff;
  color: #ffffff;
  border: none;
  transform: translateY(-3px);
}

/* ===================== */
/* MOBÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â°L */
/* ===================== */

@media (max-width: 768px) {
  .services-inner {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
}
/* TABLET */
@media (max-width: 992px) {

  .services-inner {
    flex-wrap: wrap; /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ ÃƒÆ’Ã‚Â§ok ÃƒÆ’Ã‚Â¶nemli */
  }

  .service-card {
    width: calc(50% - 5px); /* 2 kolon */
    height: auto;
    margin: 20px 0;
    float: none; /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ float iptal */
  }
}

/* MOBÃƒâ€žÃ‚Â°L */
@media (max-width: 576px) {

  .services-inner {
    flex-direction: column; /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ tek kolon */
  }

  .service-card {
    width: 100%;
    height: auto;
    padding: 40px 20px;
    margin: 10px 0;
    float: none; /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ kesin kaldÃƒâ€žÃ‚Â±r */
  }

  .service-card .icon {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 13px;
  }

  .learn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

.gallery {
  padding: 5px 0;
}

.gallery-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  height: 420px;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* DARK OVERLAY */
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: 0.4s;
}

/* INFO BOX */
.info {
  position: absolute;
  left: 20px;
  bottom: -120px;
  background: #fff;
  padding: 25px;
  width: 85%;
  transition: 0.4s;
}

/* PLUS ICON */
.plus {
  position: absolute;
  right: 20px;
  top: -15px;
  width: 45px;
  height: 45px;
  background: #0b2f4a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* TEXT */
.info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.info p {
  font-size: 13px;
  color: #777;
}

/* ÃƒÆ’Ã‚Â°Ãƒâ€¦Ã‚Â¸ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒâ€šÃ‚Â¥ HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item:hover .info {
  bottom: 20px;
}
@media (max-width: 992px) {
  .gallery-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.products-intro {
  padding: 80px 0 40px;
  text-align: center;
}

.products-intro .container {
  max-width: 700px;
}

/* kÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼k baÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸lÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±k */
.products-intro .sub {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #0a4a94;
  margin-bottom: 10px;
}

/* ana baÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸lÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±k */
.products-intro h2 {
  font-size: 36px;
  color: #0b2f4a;
  margin-bottom: 15px;
}

/* aÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±klama */
.products-intro p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* alt ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§izgi efekti (premium) */
.products-intro h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #0a4a94;
  display: block;
  margin: 15px auto 0;
}
/* TABLET */
@media (max-width: 992px) {
  .gallery-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* MOBÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â°L */
@media (max-width: 576px) {
  .gallery-inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item {
    height: 300px;
  }

  .info {
    width: 90%;
    padding: 20px;
    bottom: 10px;
  }

  .info h3 {
    font-size: 16px;
  }

  .info p {
    font-size: 12px;
  }

  .plus {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* SAÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€¦Ã‚Â¾DAKÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â° LÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â°NK KARTI */
.gallery-more {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* ÃƒÆ’Ã‚Â°Ãƒâ€¦Ã‚Â¸ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒâ€šÃ‚Â¥ SAÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€¦Ã‚Â¾A ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡EKER */
  padding-right: 20px; /* biraz boÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸luk ver */
  background: #ffffff;
  border: 2px dashed #ddd;
  transition: 0.3s;
}

.gallery-more a {
  text-decoration: none;
  font-size: 16px;
  color: #0b2f4a;
  font-weight: 600;
}

/* hover */
.gallery-more:hover {
  background: #0b2f4a;
}

.gallery-more:hover a {
  color: #fff;
}

/* TABLET */
@media (max-width: 992px) {
  .gallery-more {
    grid-column: span 2;
    height: 120px;
  }
}

/* MOBÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â°L */
@media (max-width: 576px) {
  .gallery-more {
    grid-column: span 1;
    height: 100px;
  }
}

/* FOOTER BURASI */

.footer {
  background: #0b2f4a;
  color: #aaa;
  padding: 80px 0 30px;
}

/* GRID */
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

/* SOL KART */
.footer-card {
  background: #062135;
  padding: 30px;
  border-radius: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 185px;
}

.footer-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* SOCIAL */
.footer-social span {
  display: block;
  margin-bottom: 10px;
  color: #ddd;
}

.footer-social .icons a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  border: 1px solid #333;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: #aaa;
  transition: 0.3s;
}

.footer-social .icons a:hover {
  background: #c89b5e;
  color: #000;
}

/* COL */
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

/* NEWSLETTER */
.newsletter {
  display: flex;
  border-bottom: 1px solid #333;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 0;
  outline: none;
}

.newsletter button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #062135;
  color: #ffffff;
  cursor: pointer;
}

/* ALT */
.footer-bottom {
  border-top: 1px solid #111;
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.footer-links a {
  color: #aaa;
  margin-left: 15px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #c89b5e;
}
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.brand img {
  max-width: 140px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.4s;
}

/* hover olunca renk gelsin */
.brand img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}
.brands {
  overflow: hidden;
  padding: 40px 0;
  background: #fff;
}

.brands-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.brand {
  flex: 0 0 auto;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.brand img {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
  transition: 0.3s;
}

/* hover efekt */
.brand img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* mouse gelince dur */
.brands:hover .brands-track {
  animation-play-state: paused;
}

/* ANÃ„Â°MASYON */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.top-social a {
  text-decoration: none;
  border: none;
}
.top-social a,
.top-social a:hover,
.top-social a:focus {
  text-decoration: none;
}





/* KURUMSAL SAYFA*/
.corporate{
    padding:120px 0;
    background:#fff;
}

/* HERO */
.corp-hero{
    max-width:800px;
    margin:0 auto 80px auto;
    text-align:center;
    padding:0 20px;
}

/* WRAPPER */
.corp-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* SERVICES */
.corp-services{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:30px;
}

/* CARD */
.corp-card{
    padding:35px;
    border:1px solid #eee;
    border-radius:18px;
    background:#fff;
    transition:0.3s;
}

.corp-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* GALLERY */
.corp-gallery{
    margin-top:100px;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
    gap:25px;
}

.corp-img{
    height:200px;
    background:#eee;
    border-radius:14px;
}

/* VISION */
.corp-vision{
    margin-top:100px;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
    gap:30px;
}

.corp-vision-box{
    padding:40px;
    background:#f8f8f8;
    border-radius:18px;
}

.corp-hero p{
    max-width:700px;
    margin:0 auto 25px auto;
    color:#555;
    line-height:1.9;
    width: auto;
}

.corp-hero h1{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.corp-hero{
    max-width:900px;
    margin:0 auto 80px auto;
    text-align:center;
    padding:0 20px;
}

/* BADGE */
.corp-badge{
    display:inline-block;
    font-size:12px;
    letter-spacing:3px;
    color:#888;
    position:relative;
    margin-bottom:20px;
    padding-bottom:10px;
}

.corp-badge::after{
    content:"";
    width:40px;
    height:2px;
    background:#111;
    display:block;
    margin:8px auto 0;
    opacity:0.3;
}

/* HEADLINE */
.corp-hero h1{
    font-size:58px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:30px;

    /* Ã°Å¸â€Â¥ premium gradient text */
    background:linear-gradient(90deg,#111,#555);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}







.career-page{
    background:#fff;
    padding-bottom:120px;
}

/* HERO */
.career-hero{
    position:relative;
    height:700px;

    max-width:1450px;
    margin:40px auto;

    border-radius:35px;
    overflow:hidden;
}

.career-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.career-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.35)
    );

    z-index:1;
}

.career-content{
    position:relative;
    z-index:2;

    max-width:700px;
    padding:130px 90px;

    color:#fff;
}

.career-badge{
    font-size:12px;
    letter-spacing:4px;
    opacity:0.8;
}

.career-content h1{
    font-size:72px;
    line-height:1.05;

    margin:25px 0;
}

.career-content p{
    line-height:1.9;
    color:rgba(255,255,255,0.88);

    margin-bottom:35px;
}

.career-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 36px;

    border-radius:50px;

    background:#fff;
    color:#111;

    text-decoration:none;
    font-weight:600;

    transition:0.3s;
}

.career-btn:hover{
    transform:translateY(-5px);
}

/* INFO */
.career-info{
    max-width:1450px;
    margin:90px auto 0;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.career-box{
    padding:40px;
    border-radius:28px;

    background:#f7f7f7;
    border:1px solid #eee;

    transition:0.3s;
}

.career-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.career-box h3{
    font-size:28px;
    margin-bottom:15px;
}

.career-box p{
    color:#666;
    line-height:1.8;
}

/* JOBS */
.career-jobs{
    max-width:1450px;
    margin:120px auto 0;
    padding:0 20px;

    display:flex;
    flex-direction:column;
    gap:30px;
}

.job-card{
    border:1px solid #eee;
    border-radius:28px;

    padding:40px;

    transition:0.3s;
}

.job-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.job-top{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:20px;
}

.job-top span{
    padding:8px 18px;
    border-radius:30px;

    background:#f3f3f3;

    font-size:13px;
}

.job-top h3{
    font-size:30px;
}

.job-card p{
    color:#666;
    line-height:1.8;

    margin-bottom:25px;
}

.job-card a{
    text-decoration:none;
    color:#111;
    font-weight:600;
}

/* MOBILE */
@media(max-width:900px){

    .career-content{
        padding:90px 40px;
    }

    .career-content h1{
        font-size:48px;
    }

    .job-top{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

}

@media(max-width:600px){

    .career-content{
        padding:80px 25px;
    }

    .career-content h1{
        font-size:38px;
    }

    .career-hero{
        height:600px;
    }

}/* FORM AREA */
.career-form-area{
    max-width:1450px;
    margin:120px auto 0;
    padding:0 20px;
}

/* TITLE */
.career-form-title{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.career-form-title span{
    font-size:12px;
    letter-spacing:4px;
    color:#999;
}

.career-form-title h2{
    font-size:56px;
    margin:20px 0;
    color:#111;
}

.career-form-title p{
    color:#666;
    line-height:1.9;
}

/* FORM */
.career-form{
    background:#fff;

    border:1px solid #eee;
    border-radius:35px;

    padding:50px;
}

/* GRID */
.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

/* GROUP */
.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:15px;
    margin-bottom:12px;
    color:#111;
    font-weight:600;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    border:1px solid #e4e4e4;
    border-radius:18px;

    padding:18px 20px;

    font-size:15px;

    outline:none;
    transition:0.3s;

    background:#fafafa;
}

.form-group textarea{
    min-height:180px;
    resize:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#111;
    background:#fff;
}

/* FULL */
.full{
    margin-top:30px;
}

/* UPLOAD */
.upload-area{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;

    margin-top:35px;
}

.upload-box{
    border:2px dashed #ddd;
    border-radius:24px;

    padding:35px;

    text-align:center;

    background:#fafafa;

    transition:0.3s;
}

.upload-box:hover{
    border-color:#111;
    background:#fff;
}

.upload-box label{
    display:block;
    margin-bottom:15px;

    font-weight:600;
}

.upload-box input{
    width:100%;
}

/* BUTTON */
.career-submit{
    margin-top:40px;

    border:none;
    border-radius:50px;

    padding:18px 38px;

    background:#111;
    color:#fff;

    font-size:15px;
    font-weight:600;

    cursor:pointer;
    transition:0.3s;
}

.career-submit:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,0.12);
}

/* MOBILE */
@media(max-width:768px){

    .form-grid{
        grid-template-columns:1fr;
    }

    .upload-area{
        grid-template-columns:1fr;
    }

    .career-form{
        padding:30px;
    }

    .career-form-title h2{
        font-size:40px;
    }

}








.contact-modern{
    position:relative;

    max-width:1450px;
    margin:120px auto;

    min-height:850px;

    overflow:hidden;
}

/* LEFT MAP */
.contact-map-side{
    position:absolute;
    left:0;
    top:0;

    width:38%;
    height:100%;
}

.contact-map-side iframe{
    width:100%;
    height:100%;

    border:none;
}

/* CONTACT BOX */
.contact-box{
    position:relative;
    z-index:2;

    width:72%;

    margin-left:auto;
    margin-top:70px;

    background:#fff;

    padding:55px;

    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* TOP */
.contact-top{
    display:flex;
    justify-content:space-between;
    gap:40px;

    margin-bottom:50px;
}

.contact-title span{
    font-size:12px;
    letter-spacing:4px;
    color:#999;
}

.contact-title h2{
    font-size:54px;
    margin:15px 0 10px;
}

.contact-title p{
    color:#666;
}

/* MINI MAP */
.contact-mini-map{
    width:320px;
    height:150px;

    overflow:hidden;
}

.contact-mini-map iframe{
    width:100%;
    height:100%;
    border:none;
}

/* CONTENT */
.contact-content-area{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:60px;
}

/* FORM */
.modern-contact-form{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.input-group{
    display:flex;
    flex-direction:column;
}

.input-group label{
    margin-bottom:10px;
    font-size:14px;
    color:#555;
}

.input-group input,
.input-group textarea{
    border:1px solid #ddd;
    padding:16px;

    font-size:15px;

    outline:none;
    transition:0.3s;
}

.input-group textarea{
    min-height:150px;
    resize:none;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:#111;
}

/* BUTTON */
.modern-contact-form button{
    width:170px;
    height:52px;

    border:none;
    background:#4d8cff;
    color:#fff;

    font-weight:600;
    cursor:pointer;

    transition:0.3s;
}

.modern-contact-form button:hover{
    transform:translateY(-3px);
}

/* RIGHT */
.contact-right-info{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.right-card span{
    font-size:12px;
    letter-spacing:3px;
    color:#999;

    display:block;
    margin-bottom:12px;
}

.right-card p{
    color:#555;
    line-height:1.8;

    margin-bottom:12px;
}

.right-card strong{
    font-size:18px;
}

/* SOCIAL */
.socials{
    display:flex;
    gap:15px;
    margin-top:10px;
}

.socials a{
    width:42px;
    height:42px;

    background:#111;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    text-decoration:none;

    transition:0.3s;
}

.socials a:hover{
    transform:translateY(-4px);
}

/* MOBILE */
@media(max-width:1100px){

    .contact-map-side{
        display:none;
    }

    .contact-box{
        width:100%;
        margin-top:0;
    }

}

@media(max-width:850px){

    .contact-content-area{
        grid-template-columns:1fr;
    }

    .contact-top{
        flex-direction:column;
    }

    .contact-mini-map{
        width:100%;
    }

}

@media(max-width:600px){

    .contact-box{
        padding:30px;
    }

    .contact-title h2{
        font-size:38px;
    }

}


.about-page{
    background:#fff;
    padding-bottom:120px;
}

/* HERO */
.about-hero{
    position:relative;
    height:650px;

    max-width:1450px;
    margin:40px auto;

    border-radius:35px;
    overflow:hidden;
}

.about-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.about-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.35)
    );
}

.about-content{
    position:relative;
    z-index:2;

    max-width:720px;
    padding:130px 90px;

    color:#fff;
}

.about-badge{
    font-size:12px;
    letter-spacing:4px;
    opacity:0.8;
}

.about-content h1{
    font-size:74px;
    line-height:1.05;

    margin:20px 0 25px;
}

.about-content p{
    line-height:1.9;
    color:rgba(255,255,255,0.88);
}

/* ABOUT */
.about-wrapper{
    max-width:1450px;
    margin:120px auto 0;
    padding:0 20px;

    display:grid;
    grid-template-columns:450px 1fr;
    gap:80px;
}

.about-left span{
    font-size:12px;
    letter-spacing:4px;
    color:#999;
}

.about-left h2{
    font-size:58px;
    line-height:1.15;

    margin-top:20px;
}

.about-right{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.about-right p{
    font-size:18px;
    line-height:2;
    color:#555;
}

/* STATS */
.about-stats{
    max-width:1450px;
    margin:120px auto 0;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    padding:45px;

    border:1px solid #eee;
    border-radius:30px;

    background:#fafafa;

    transition:0.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.stat-card h3{
    font-size:58px;
    margin-bottom:10px;
}

.stat-card span{
    color:#666;
}

/* VISION */
.about-vision{
    max-width:1450px;
    margin:140px auto 0;
    padding:0 20px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.vision-image img{
    width:100%;
    border-radius:35px;
}

.vision-content span{
    font-size:12px;
    letter-spacing:4px;
    color:#999;
}

.vision-content h2{
    font-size:58px;
    line-height:1.15;

    margin:20px 0 30px;
}

.vision-content p{
    color:#555;
    line-height:1.9;

    margin-bottom:20px;
}

/* BRANDS */
.about-brands{
    max-width:1450px;
    margin:120px auto 0;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.brand-box{
    height:150px;

    border:1px solid #eee;
    border-radius:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;

    transition:0.3s;
}

.brand-box:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 35px rgba(0,0,0,0.05);
}

.brand-box img{
    width:130px;
    object-fit:contain;
}

/* MOBILE */
@media(max-width:1000px){

    .about-wrapper,
    .about-vision{
        grid-template-columns:1fr;
    }

    .about-stats{
        grid-template-columns:1fr 1fr;
    }

    .about-brands{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .about-content{
        padding:80px 25px;
    }

    .about-content h1{
        font-size:42px;
    }

    .about-left h2,
    .vision-content h2{
        font-size:38px;
    }

    .about-stats{
        grid-template-columns:1fr;
    }

    .about-brands{
        grid-template-columns:1fr;
    }

}



.cleaning-showcase{
    width:100%;
    padding:80px 0;
}

.cleaning-stats{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.cleaning-stat-box{
    background:#fff;
    border-radius:20px;
    padding:40px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.cleaning-stat-box:hover{
    transform:translateY(-8px);
}

.cleaning-stat-box h2{
    font-size:42px;
    color:#0d6efd;
    margin-bottom:10px;
    font-weight:700;
}

.cleaning-stat-box span{
    color:#666;
    font-size:15px;
}

.cleaning-process-section{
    max-width:1200px;
    margin:80px auto;
}

.cleaning-process-title{
    text-align:center;
    margin-bottom:60px;
}

.cleaning-process-title span{
    color:#0d6efd;
    font-weight:600;
    letter-spacing:2px;
}

.cleaning-process-title h2{
    margin-top:15px;
    font-size:42px;
    color:#222;
}

.cleaning-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.cleaning-process-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.cleaning-process-box:hover{
    transform:translateY(-8px);
}

.cleaning-number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.cleaning-process-box h4{
    margin-bottom:15px;
    font-size:20px;
    color:#222;
}

.cleaning-process-box p{
    color:#666;
    line-height:1.7;
}

@media(max-width:992px){

    .cleaning-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .cleaning-process-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .cleaning-stats{
        grid-template-columns:1fr;
    }

    .cleaning-process-grid{
        grid-template-columns:1fr;
    }

}

.cleaning-intro{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
}

.cleaning-intro span{
    color:#0d6efd;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.cleaning-intro h2{
    font-size:48px;
    line-height:1.2;
    color:#1d1d1d;
    margin:15px 0 20px;
}

.cleaning-intro p{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.global-network-section{
    max-width:1200px;
    margin:100px auto;
    padding:0 20px;
}

.global-network-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.global-network-header span{
    color:#0d6efd;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.global-network-header h2{
    font-size:48px;
    line-height:1.2;
    margin:15px 0 25px;
    color:#1f2937;
}

.global-network-header p{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.global-network-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:80px;
}

.network-stat-box{
    background:#fff;
    padding:35px 20px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.network-stat-box h2{
    color:#0d6efd;
    font-size:42px;
    margin-bottom:10px;
}

.network-stat-box span{
    color:#666;
}

.global-map-wrapper{
    display:grid;
    grid-template-columns:1fr 2fr 1fr;
    align-items:center;
    gap:40px;
}

.global-map-image img{
    width:100%;
    display:block;
}

.global-feature-list{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.feature-item{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    font-weight:500;
}

@media(max-width:992px){

    .global-network-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .global-map-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

}

@media(max-width:576px){

    .global-network-header h2{
        font-size:32px;
    }

    .global-network-stats{
        grid-template-columns:1fr;
    }

}


.catalog-viewer{
    padding:100px 0;
    background:#f7f9fc;
}

.pdf-wrapper{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.pdf-wrapper iframe{
    display:block;
    width:100%;
    min-height:900px;
}

/* =========================
   HERO SECTION
========================= */

.brand-hero{
    padding:120px 0;
    background:linear-gradient(135deg,#0c2b57,#184b8a);
    color:#fff;
    text-align:center;
}

.brand-subtitle{
    display:block;
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
    opacity:.85;
    font-weight:600;
}

.brand-hero h1{
    font-size:58px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.brand-hero p{
    max-width:800px;
    margin:0 auto;
    font-size:18px;
    line-height:1.9;
    opacity:.95;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#fff;
    color:#0c2b57;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid rgba(255,255,255,.4);
    color:#fff;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-secondary:hover{
    background:#fff;
    color:#0c2b57;
}

/* Mobile */

@media(max-width:768px){

    .brand-hero{
        padding:90px 0;
    }

    .brand-hero h1{
        font-size:38px;
    }

    .brand-hero p{
        font-size:16px;
    }

}
.catalog-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 50px;
}

.catalog-subtitle{
    display:block;
    color:#0d6efd;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.catalog-header h2{
    font-size:42px;
    font-weight:800;
    color:#0c2b57;
    margin-bottom:20px;
    margin-top: 20px;
}

.catalog-header p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    max-width:750px;
    margin:auto;
}

@media(max-width:768px){

    .catalog-header h2{
        font-size:32px;
    }

    .catalog-header p{
        font-size:16px;
        line-height:1.8;
    }

}
/* =========================
   COMPANY BLOCK
========================= */

.company-block{
    padding:120px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

/* arka plan dekor */
.company-block::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(11,47,74,.03);
    top:-250px;
    right:-150px;
}

.company-block::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(11,47,74,.03);
    bottom:-180px;
    left:-120px;
}

.company-block .container{
    position:relative;
    z-index:2;
    max-width:950px;
    margin:auto;
    text-align:center;
}

.company-block span{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    color:#0a4a94;
    text-transform:uppercase;
    margin-bottom:20px;
}

.company-block h2{
    font-size:58px;
    line-height:1.15;
    color:#0b2f4a;
    font-weight:800;
    margin-bottom:30px;
}

.company-block p{
    max-width:850px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.9;
}

/* ALT Ã–ZELLÄ°KLER */

.company-features{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.company-feature{
    background:#fff;
    border:1px solid #eee;
    padding:30px 20px;
    border-radius:18px;
    transition:.3s;
}

.company-feature:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.company-feature i{
    font-size:34px;
    color:#0a4a94;
    margin-bottom:15px;
}

.company-feature h4{
    font-size:18px;
    color:#0b2f4a;
    margin-bottom:10px;
}

.company-feature p{
    font-size:14px;
    line-height:1.7;
}

/* MOBILE */

@media(max-width:992px){

    .company-block h2{
        font-size:42px;
    }

    .company-features{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .company-block{
        padding:80px 0;
    }

    .company-block h2{
        font-size:34px;
    }

    .company-block p{
        font-size:16px;
    }

    .company-features{
        grid-template-columns:1fr;
    }
}

.pdf-wrapper{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.pdf-wrapper object{
    width:100%;
    height:90vh;
    min-height:700px;
    display:block;
}

@media (max-width:768px){

    .pdf-wrapper{
        border-radius:10px;
    }

    .pdf-wrapper object{
        height:75vh;
        min-height:600px;
    }

}

.catalog-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 40px;
}

.catalog-header h2{
    margin-bottom:15px;
}

.catalog-header p{
    color:#666;
    line-height:1.8;
}

.catalog-actions{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:25px;
    flex-wrap:wrap;
}

.catalog-btn{
    padding:14px 28px;
    background:#0f172a;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.catalog-btn:hover{
    transform:translateY(-2px);
}

.catalog-preview{
    position:relative;
    overflow:hidden;
    border-radius:16px;
}

.catalog-preview img{
    width:100%;
    display:block;
}

.catalog-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:30px;
}

.catalog-overlay h3{
    font-size:42px;
    margin-bottom:15px;
}

.catalog-overlay p{
    max-width:700px;
    line-height:1.8;
}

@media(max-width:768px){

    .catalog-overlay h3{
        font-size:28px;
    }

    .catalog-overlay p{
        font-size:14px;
    }

}



/* ===== 2026 HERO REVAMP ===== */
.header{height:100px!important}
.logo-img{height: 135px!important;margin:0!important;}
.hero{height:100vh!important;min-height:760px}
.hero .overlay{background:linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.25))!important}
.hero-content{position:relative!important;top:auto!important;transform:none!important;height:100vh;display:flex;justify-content:center;max-width:700px}
.hero-content .sub{background:rgba(255,255,255,.12);padding:10px 18px;border-radius:50px;width:max-content;backdrop-filter:blur(12px)}
.hero-content h1{font-size:clamp(46px,6vw,80px)!important;line-height:1.05}
.hero-content p{font-size:18px;line-height:1.8}
.hero-nav{position:absolute;right:40px;bottom:40px;display:flex;gap:12px;z-index:20}
.arrow{width:60px;height:60px;border-radius:50%;background:rgba(255,255,255,.15)!important;backdrop-filter:blur(12px)}
/* WhatsApp widget */
.wp-float{position:fixed;right:25px;bottom:25px;z-index:99999}
.wp-btn{width:65px;height:65px;border-radius:50%;background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;font-size:32px;cursor:pointer;box-shadow:0 10px 30px rgba(0,0,0,.2)}
.wp-box{display:none;position:absolute;right:0;bottom:80px;width:320px;background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,.2)}
.wp-head{background:#25D366;color:#fff;padding:15px;font-weight:700}
.wp-body{padding:15px}
.wp-body input,.wp-body textarea{width:100%;padding:12px;margin-bottom:10px;border:1px solid #ddd;border-radius:8px}
.wp-send{width:100%;padding:12px;background:#25D366;color:#fff;border:none;border-radius:8px;cursor:pointer}

/* NEW HERO 2026 */
.hero,.slide,.arrows,.hero-nav{display:none!important;}
.hero-modern{min-height:85vh;display:flex;align-items:center;position:relative;background:#0b2f4a;overflow:hidden}
.hero-bg{position:absolute;inset:0;background:url('../images/slide1.jpg') center/cover no-repeat;opacity:.25}
.hero-wrap{position:relative;z-index:2;max-width:700px;color:#fff;padding:120px 0}
.hero-badge{display:inline-block;padding:10px 18px;border-radius:30px;background:rgba(255,255,255,.12);margin-bottom:20px}
.hero-wrap h1{font-size:clamp(48px,6vw,82px);line-height:1.05;margin:0 0 20px}
.hero-wrap p{font-size:20px;line-height:1.8;max-width:600px}
.hero-actions{display:flex;gap:15px;margin-top:30px}
.hero-btn{padding:16px 28px;border-radius:50px;text-decoration:none;font-weight:700}
.hero-btn.primary{background:#fff;color:#0b2f4a}
.hero-btn.secondary{border:1px solid #fff;color:#fff}

.hero-slider{position:relative;height:85vh;min-height:700px;overflow:hidden}
.hero-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:1s;}
.hero-slide.active{opacity:1}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.75),rgba(0,0,0,.2));}
.hero-inner{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;justify-content:center;color:#fff}
.hero-inner span{letter-spacing:3px;font-size:13px}
.hero-inner h1{font-size:72px;max-width:700px;margin:15px 0}
.hero-inner p{font-size:20px;max-width:600px}
.hero-dots{position:absolute;bottom:35px;left:50%;transform:translateX(-50%);display:flex;gap:10px;z-index:5}
.hero-dots span{width:12px;height:12px;border-radius:50%;background:#fff;opacity:.4}
.hero-dots span.active{opacity:1}


/* PREMIUM HERO REVIZE */
.hero-content{
max-width:720px!important;
padding:55px!important;
background:rgba(255,255,255,.08)!important;
backdrop-filter:blur(14px)!important;
border:1px solid rgba(255,255,255,.18)!important;
border-radius:28px!important;
box-shadow:0 20px 60px rgba(0,0,0,.25)!important;
}
.hero-content .sub{
display:inline-block;
padding:8px 16px;
background:rgba(255,255,255,.12);
border-radius:50px;
letter-spacing:3px;
margin-bottom:20px;
}
.hero-content h1{
font-size:clamp(56px,6vw,88px)!important;
font-weight:800!important;
line-height:1.02!important;
letter-spacing:-2px!important;
margin-bottom:20px!important;
}
.hero-content p{
font-size:19px!important;
line-height:1.8!important;
max-width:560px!important;
margin-bottom:25px!important;
}
.buttons{display:flex;gap:15px;}
.btn.primary{
border-radius:60px!important;
padding:16px 30px!important;
}
.btn.secondary{
border-radius:60px!important;
padding:16px 30px!important;
}
.hero-stats{
display:flex;gap:35px;margin-top:25px;color:#fff;
}
.hero-stats div strong{display:block;font-size:28px}

.language-dropdown{
position:relative;
display:inline-flex;
align-items:center;
margin-left:15px;
}
.language-dropdown .lang-current{
display:inline-flex;
align-items:center;
gap:6px;
height:38px;
padding:0 12px;
border:1px solid rgba(255,255,255,.32);
border-radius:6px;
background:rgba(255,255,255,.08);
color:#fff;
font-weight:700;
cursor:pointer;
}
.language-dropdown .lang-menu{
display:none;
position:absolute;
top:calc(100% + 8px);
right:0;
background:#fff;
min-width:168px;
padding:8px;
border-radius:8px;
box-shadow:0 12px 30px rgba(0,0,0,.18);
z-index:99999;
}
.language-dropdown:hover .lang-menu,
.language-dropdown:focus-within .lang-menu{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:6px;
}
.language-dropdown .lang-option{
display:flex;
align-items:center;
justify-content:center;
min-height:34px;
padding:8px 10px;
border-radius:6px;
color:#0b2f4a;
text-decoration:none;
font-weight:700;
}
.language-dropdown .lang-option:hover,
.language-dropdown .lang-option.is-active{
background:#eef4f9;
}
.mobile-language-switch{
display:none;
}
html[dir="rtl"] body{
direction:rtl;
}
html[dir="rtl"] .language-dropdown{
margin-left:0;
margin-right:15px;
}
html[dir="rtl"] .language-dropdown .lang-menu{
right:auto;
left:0;
}
@media (max-width:992px){
.mobile-language-switch{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:8px;
padding:15px 20px;
border-top:1px solid #eee;
list-style:none;
background:#f8f8f8;
}
.mobile-language-switch a{
display:flex;
align-items:center;
justify-content:center;
min-height:38px;
border:1px solid #dbe3ea;
border-radius:6px;
text-decoration:none;
color:#0b2f4a;
font-weight:700;
}
.mobile-language-switch a.is-active{
background:#0b2f4a;
color:#fff;
border-color:#0b2f4a;
}
a[href^="tel"]{
color:#fff !important;
text-decoration:none !important;
}
}

/* HAKKAN GLOBAL HIDDEN GOOGLE TRANSLATE */
#google_translate_element,
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-spinner-pos,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-yAWNEb-L7lbkb,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
body > .skiptranslate{
display:none!important;
visibility:hidden!important;
height:0!important;
width:0!important;
opacity:0!important;
pointer-events:none!important;
}

html,
body{
top:0!important;
}

.goog-te-gadget,
.goog-te-gadget-simple,
.goog-logo-link,
.goog-te-gadget span{
display:none!important;
}

.language,
.language-dropdown,
.mobile-language-switch{
unicode-bidi:isolate;
}

