/* =========================
   GLOBAL RESET & FIX
========================= */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #212529;
}

/* =========================
   TOP HEADER
========================= */
.top-header-bar {
  background: #ffc107;
  text-align: center;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 14px;
}

/* =========================
   NAVBAR
========================= */
.main-navbar {
  position: relative;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.navbar-brand img {
  max-height: 45px;
}

.navbar-nav .nav-link {
  padding: 10px 14px;
  font-weight: 500;
  color: #333;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}

.dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  border: none;
}

/* =========================
   HERO SLIDER
========================= */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider .carousel-item {
  height: 65vh;
  min-height: 520px;
  max-height: 720px;
}

.hero-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  text-align: left;
  max-width: 600px;
}

@media (max-width: 992px) {
  .hero-slider .carousel-item {
    height: 50vh;
    min-height: 380px;
  }
}

@media (max-width: 576px) {
  .hero-slider .carousel-item {
    height: 35vh;
    min-height: 260px;
  }
  .hero-slider .carousel-caption {
    text-align: center;
    left: 0;
    right: 0;
    max-width: 100%;
  }
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
  padding: 80px 0;
}

.services-section .card {
  border: 1px solid #eef1f5;
  border-radius: 16px;
  background: #ffffff;
  padding: 40px 25px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.services-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(13,110,253,.15);
  border-color: rgba(13,110,253,.3);
}

.services-section .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent,
    rgba(13,110,253,.08),
    transparent
  );
  opacity: 0;
  transition: .4s;
}

.services-section .card:hover::before {
  opacity: 1;
}

.services-section i {
  font-size: 42px;
  margin-bottom: 20px;
  color: #0d6efd;
}

/* =========================
   SOFTWARE SECTION
========================= */
.software-section {
  background: #f8f9fb;
  padding: 80px 0;
}

.software-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: all .35s ease;
  height: 100%;
  position: relative;
}

.software-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(13,110,253,.18);
}

.software-price {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg,#0d6efd,#0a58ca);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
  white-space: nowrap;
}

.software-image {
  background: #f4f6f9;
  padding: 30px;
  text-align: center;
}

.software-image img {
  max-height: 180px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.software-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.software-body h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.software-body p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 20px;
}

.software-body .btn {
  margin-top: auto;
  border-radius: 10px;
}

/* =========================
   STATS BAND
========================= */
.stats-band {
  background: linear-gradient(135deg, #1f2937, #111827);
  padding: 70px 0;
  color: #ffffff;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-box i {
  font-size: 34px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.stat-box h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  opacity: .8;
}

/* =========================
   BLOG SECTION
========================= */
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: all .35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.blog-thumb {
  width: 160px;
  min-width: 160px;
  background: linear-gradient(135deg,#000,#3b3bd6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-thumb img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #111827;
  color: #ffffff;
  padding: 30px 0;
  font-size: 14px;
  text-align: center;
}

/* Header auth mini */
.auth-mini .btn {
  height: 32px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.auth-mini i {
  font-size: 14px;
}
@media (max-width: 991px) {
  .auth-mini {
    margin-top: 10px;
  }
}

/* =========================
   HOME CUSTOM SECTIONS
========================= */
.home-sections{
  background:#fdfaf2;
  padding:90px 0;
}

.home-section-row{
  display:flex;
  align-items:center;
  gap:60px;
  margin-bottom:90px;
}

.home-section-row.reverse{
  flex-direction:row-reverse;
}

.home-section-image{
  flex:1;
  text-align:center;
}

.home-section-image img{
  max-width:100%;
  height:auto;
}

.home-section-content{
  flex:1;
}

.home-section-content h2{
  font-size:36px;
  font-weight:800;
  margin-bottom:20px;
  color:#0f172a;
}

.home-section-content p{
  font-size:16px;
  line-height:1.8;
  color:#475569;
  margin-bottom:25px;
}

@media(max-width:992px){
  .home-section-row,
  .home-section-row.reverse{
    flex-direction:column;
    text-align:center;
  }
}

/* =========================
   HERO SLIDER
========================= */
.hero-slider .carousel-item {
  height: 65vh;
  min-height: 520px;
}
.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider .carousel-caption {
  max-width: 520px;
  text-align: left;
}

/* =========================
   SERVICES
========================= */
.services-section .card {
  border-radius: 18px;
  transition: .3s ease;
}
.services-section .card:hover {
  transform: translateY(-6px);
}

/* =========================
   SOFTWARE SECTION
========================= */
.software-section {
  padding: 80px 0;
  background: #f8fafc;
}

.software-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
  transition: .35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.software-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,.15);
}

/* IMAGE */
.software-image {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#eef2ff,#ffffff);
}
.software-image img {
  max-width: 92%;
  max-height: 92%;
  transition: .35s ease;
}
.software-card:hover .software-image img {
  transform: scale(1.06);
}

/* PRICE BADGE */
.software-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #2563eb;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
}

/* BODY */
.software-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.software-body h5 {
  font-weight: 800;
  margin-bottom: 10px;
}
.software-body p {
  font-size: 14px;
  color: #555;
  flex: 1;
}

/* =========================
   STATS BAND
========================= */
.stats-band {
  background: #0f172a;
  color: #fff;
}
.stats-band h3 {
  font-size: 32px;
  font-weight: 800;
}
.stats-band p {
  opacity: .85;
}

/* =========================
   BLOG HOME
========================= */
.blog-home {
  padding: 80px 0;
  background: #f8f9fa;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .35s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,.15);
}

.blog-img {
  height: 220px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}
.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-body h5 {
  font-weight: 800;
  margin-bottom: 10px;
}
.blog-body p {
  font-size: 14px;
  color: #555;
  flex: 1;
}

/* =========================
   HOME BLOCKS
========================= */
.home-block {
  padding: 100px 0;
}
.home-block:nth-child(even) {
  background: #f8f9fb;
}
.home-block-img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.home-block-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}
.home-block-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:992px){
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .hero-slider .carousel-item { height: 55vh; }
}

@media(max-width:576px){
  .blog-grid { grid-template-columns: 1fr; }
  .home-block { padding: 70px 0; }
  .home-block-title { font-size: 26px; }
}

/* =========================
   PRODUCT CARD (DÃœZ E-TÄ°CARET)
========================= */

.product-card{
  background:#fff;
  border:1px solid #ddd;
  border-radius:6px;
  overflow:hidden;
  transition:.25s ease;
}

.product-card:hover{
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transform:translateY(-3px);
}

/* IMAGE */
.product-img{
  background:#f5f5f5;
  padding:20px;
  text-align:center;
}

.product-img img{
  max-width:100%;
  height:auto;
}

/* BODY */
.product-body{
  padding:16px;
  display:flex;
  flex-direction:column;
  height:100%;
}

.product-title{
  font-size:17px;
  font-weight:700;
  margin-bottom:8px;
}

.product-text{
  font-size:14px;
  color:#555;
  margin-bottom:10px;
}

/* PRICE */
.product-price{
  font-size:16px;
  font-weight:700;
  color:#000;
  margin-bottom:10px;
}

/* BUTTON */
.product-card .btn{
  border-radius:6px;
  font-weight:600;
}

/* =========================
   PRODUCT CARD
========================= */

.product-card{
  background:#fff;
  border:1px solid #ddd;
  border-radius:6px;
  overflow:hidden;
  transition:.25s ease;
  height:100%;
  display:flex;
  flex-direction:column;
}

.product-card:hover{
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transform:translateY(-3px);
}

/* IMAGE */
.product-img{
  background:#f5f5f5;
  padding:20px;
  text-align:center;
}

.product-img img{
  max-width:100%;
  height:auto;
}

/* BODY */
.product-body{
  padding:16px;
  display:flex;
  flex-direction:column;
  flex:1;
}

/* TITLE */
.product-title{
  font-size:17px;
  font-weight:700;
  margin-bottom:8px;
  line-height:1.3;
}

/* DESCRIPTION */
.product-text{
  font-size:14px;
  color:#555;
  margin-bottom:12px;
  flex:1;              
}

/* PRICE */
.product-price{
  font-size:16px;
  font-weight:700;
  color:#000;
  margin-bottom:10px;
}

/* BUTTON */
.product-card .btn{
  margin-top:auto;        
  border-radius:6px;
  font-weight:600;
}

/* =========================
   FOOTER
========================= */

.site-footer{
  background:#0f172a;
  color:#cbd5f5;
  padding:60px 0 30px;
  font-size:14px;
}

.footer-title{
  color:#fff;
  font-weight:700;
  margin-bottom:15px;
}

.footer-text{
  color:#cbd5f5;
  line-height:1.7;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  color:#cbd5f5;
  text-decoration:none;
  transition:.3s;
}

.footer-links a:hover{
  color:#fff;
}

.footer-social a{
  color:#cbd5f5;
  margin-right:12px;
  font-size:18px;
  transition:.3s;
}

.footer-social a:hover{
  color:#25d366;
}

.whatsapp-link{
  color:#25d366 !important;
  font-weight:600;
}

.payment-icons img{
  height:32px;
  margin-right:10px;
  margin-top:10px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:15px;
  font-size:13px;
  color:#94a3b8;
}

/* MOBİL */
@media(max-width:768px){
  .site-footer{
    text-align:center;
  }
  .footer-social{
    margin-top:15px;
  }
}

/* =========================
   HERO SLIDER – 1920x720
========================= */
.hero-slider{
  width:100%;
  overflow:hidden;
}

.hero-slider,
.hero-slider .carousel-inner,
.hero-slider .carousel-item{
  height:720px;
  max-height:720px;
}

/* SLIDE IMAGE */
.hero-slider .carousel-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* OK BUTONLARI */
.carousel-control-prev,
.carousel-control-next{
  width:70px;
  opacity:.9;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
  background-size:26px 26px;
  filter:drop-shadow(0 0 6px rgba(0,0,0,.6));
}

/* MOBİL */
@media(max-width:992px){
  .hero-slider,
  .hero-slider .carousel-item{
    height:60vh;
    min-height:380px;
  }
}

.hero-slider .carousel-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.08);
}

.soft-divider{
  border-top:1px dashed rgba(0,0,0,.15);
  margin:70px 0;
}
