@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
html, body {
  overflow-x: hidden;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
}

h1, h2, h3 {
  font-weight: 700;
}

.clients {
  padding: 60px 20px;
  background-color: #fff;
}
.clients h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.client-logo {
  text-align: center;
}
.client-logo img {
  max-width: 160px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cta-button {
  background: var(--primary-blue);
  color: white;
  padding: 15px 30px;
  font-weight: bold;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  opacity: 0.9;
}

.buy-button {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.buy-button:hover {
  background-color: var(--primary-red);
}

.cta-button-feature {
  background: var(--primary-blue);
  color: white;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cta-button-feature:hover {
  opacity: 0.9;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}
#back-to-top svg {
  width: 20px;
  height: 20px;
}

/* scss/partials/_contact.scss */
.contact-hero {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0;
  text-align: center;
}
.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.contact-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.contact-info p {
  margin-bottom: 30px;
  line-height: 1.7;
}
.contact-info .info-item {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact-info .info-item strong {
  font-weight: 700;
  margin-bottom: 5px;
}
.contact-info .info-item span, .contact-info .info-item a {
  color: #555;
  text-decoration: none;
  word-break: break-word;
}
.contact-info .info-item a:hover {
  color: var(--primary-blue);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  -webkit-box-shadow: 0 0 0 2px rgba(34, 93, 170, 0.2);
          box-shadow: 0 0 0 2px rgba(34, 93, 170, 0.2);
}
.form-group textarea {
  resize: vertical;
}

/* --- HARİTA STİLİ GÜNCELLEMESİ --- */
.map-section {
  padding: 40px 0 80px 0;
  background-color: #f8f9fa;
  border-top: 1px solid var(--border-color);
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}
.customer-favorites {
  padding: 60px 20px;
  background-color: #fff;
}
.customer-favorites h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  text-align: center;
  color: var(--text-color);
}

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

.favorite-item {
  text-align: center;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}
.favorite-item img {
  max-width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}
.favorite-item p {
  font-size: 1rem;
  margin-bottom: 15px;
  min-height: 3.2em;
  color: var(--text-color);
}

.hero {
  position: relative;
  padding: 80px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 450px;
  overflow: hidden;
}

.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.video-background-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 70px;
  border-radius: 5px;
  text-align: left;
  max-width: 1350px;
  z-index: 1;
}
.hero-content h1 {
  font-size: 3rem;
  color: #19437a;
  margin: 0 0 1rem 0;
}
.hero-content p {
  font-size: 1.2rem;
  margin: 0 0 2rem 0;
}

/* --- Top Announcement Bar --- */
.top-bar {
  background-color: #493ec0;
  color: white;
  padding: 10px 0;
  font-size: 0.9rem;
  overflow: hidden;
  white-space: nowrap;
}

.top-bar-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: marquee 30s linear infinite;
          animation: marquee 30s linear infinite;
}

.top-bar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-bar-content span {
  padding: 0 15px;
}
.top-bar-content .separator {
  margin: 0 100px;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* --- Main Header --- */
.main-header {
  background: #fff;
  padding: 15px 0;
  padding-right: 150px;
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.main-header.scrolled {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.main-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo img {
  display: block;
  height: 40px;
}

.main-navigation {
  border-bottom: none;
}

.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  padding: 10px 15px;
  color: var(--text-color);
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: var(--primary-red);
}

/* --- Footer --- */
footer {
  background-color: #222;
  color: #aaa;
  padding: 60px 0 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 80px;
  padding-bottom: 40px;
}

.footer-column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column li {
  margin-bottom: 10px;
}
.footer-column a {
  color: #aaa;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer-column a:hover {
  color: white;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.social-icons img {
  width: 24px;
  height: 24px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.social-icons a:hover img {
  opacity: 0.8;
}

.sub-footer {
  border-top: 1px solid #444;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}

.perks {
  background: #f4f4f4;
  padding: 25px 0;
}
.perks .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.perk-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.perk-item .stars {
  color: #f9bf3b;
  font-size: 1.3rem;
  font-weight: 700;
}
.perk-item .review-count {
  font-weight: 500;
}

.perk-icon {
  width: 32px;
  height: 32px;
}

/* scss/partials/_megamenu.scss */
.has-megamenu {
  position: relative;
}

.mega-menu {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 0 0 8px 8px;
  -webkit-box-shadow: 0 10px L30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px L30px rgba(0, 0, 0, 0.1);
  width: 550px;
  z-index: 1100;
}

.has-megamenu:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.mega-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mega-menu-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
          
           
}
.mega-menu-column h4 {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
  margin: 0 0 15px 0;
  padding: 0 15px 15px 15px;
  border-bottom: 1px solid var(--border-color);
}
.mega-menu-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu-column a {
  display: block;
  padding: 7px 8px;
  color: #333;
  font-weight: 400;
  border-radius: 5px;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
  
}
.mega-menu-column a:hover {
  color: var(--primary-blue);
  background-color: #f8f9fa;
}


.promo-area {
  -ms-flex-preferred-size: 300px;
      flex-basis: 300px;
  border-left: 1px solid var(--border-color);
  padding-left: 20px;
  

}
.promo-area img {
  width: 70%;
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  
}

.monthly-products {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}
.monthly-products h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--text-color);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.product-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.product-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.product-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-color);
}
.product-item a {
  color: var(--primary-blue);
  font-weight: 500;
}
.product-item a:hover {
  text-decoration: underline;
}

.printing-banner {
  background-image: url("../images/Banner.webp");
  background-size: cover;
  background-position: center;
  height: 450px;
  display: block;
  margin-top: 60px;
}

/* scss/partials/_responsive.scss */
@media (max-width: 992px) {
  .main-header .container {
    position: relative;
  }
  .main-nav {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .main-nav.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-nav .nav-item {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
  }
  .main-nav .nav-item:last-child {
    border-bottom: none;
  }
  .menu-toggle {
    display: block;
  }
  .has-megamenu > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .has-megamenu .mega-menu {
    position: static;
    display: block;
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.35s ease-in-out, padding 0.35s ease-in-out;
    transition: max-height 0.35s ease-in-out, padding 0.35s ease-in-out;
    background-color: #f8f9fa;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: auto;
    border-radius: 0;
    padding: 0 20px;
  }
  .has-megamenu .mega-menu ul {
    padding: 10px 0;
    border-top: 1px solid #e0e0e0;
  }
  .has-megamenu .mega-menu a {
    color: #555;
    padding: 10px 0;
    font-size: 0.9em;
  }
  .has-megamenu .mega-menu a:hover {
    color: var(--primary-red);
    padding-left: 0;
  }
  .has-megamenu.open > .mega-menu {
    max-height: 500px;
    padding: 15px 20px;
  }
  .mega-menu .mega-menu-column h4 {
    display: none;
  }
  .promo-area {
    display: none;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .hero {
    padding: 60px 20px;
  }
  .perks .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .product-grid,
  .favorites-grid,
  .showcase-container {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-content h2 {
    font-size: 1.8rem;
  }
}
.showcase {
  padding: 60px 20px;
}

.showcase-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  max-width: 80%;
  margin: 0 auto;
}

.showcase-item-large,
.showcase-item-small {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  color: white;
  background-size: cover;
  background-position: center;
  background-color: #2c3e50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 350px;
  padding: 40px;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.showcase-item-large:hover,
.showcase-item-small:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.showcase-item-large::after,
.showcase-item-small::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(60%, transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  z-index: 1;
}

.showcase-item-large {
  grid-column: 1/-1;
}

.showcase-content {
  position: relative;
  z-index: 2;
}
.showcase-content h2 {
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 0.5em;
}
.showcase-content p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.5em;
  max-width: 80%;
}

:root {
  --primary-red: #d9272d;
  --primary-blue: #225daa;
  --text-color: #333;
  --light-gray: #f8f9fa;
  --border-color: #e0e0e0;
}

.about-hero {
  padding: 80px 0;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 93, 170, 0.7);
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.about-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.about-section {
  padding: 80px 0;
  background-color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--text-color);
}
.about-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-content .cta-button {
  margin-top: 15px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.values-section {
  padding: 80px 0;
  background-color: var(--light-gray);
  text-align: center;
}
.values-section h2 {
  font-size: 2.2rem;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.value-item h3 {
  font-size: 1.5rem;
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--primary-blue);
}
.value-item p {
  line-height: 1.6;
}

.value-icon img {
  width: 50px;
  height: 50px;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
}
.certificates-hero {
  padding: 80px 0;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center 30%;
  position: relative;
}
.certificates-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 93, 170, 0.75);
}
.certificates-hero .container {
  position: relative;
  z-index: 2;
}
.certificates-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.certificates-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.certificates-section {
  padding: 80px 0;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}
.section-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.section-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.certificate-item {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.certificate-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certificate-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/11;
  -o-object-fit: cover;
     object-fit: cover;
}

.certificate-content {
  padding: 25px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.certificate-content h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-top: 0;
  margin-bottom: 10px;
}
.certificate-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 768px) {
  .certificates-hero h1 {
    font-size: 2.5rem;
  }
}
.tech-support-hero {
  padding: 80px 0;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}
.tech-support-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(34, 93, 170, 0.8)), to(rgba(44, 62, 80, 0.8)));
  background: linear-gradient(rgba(34, 93, 170, 0.8), rgba(44, 62, 80, 0.8));
}
.tech-support-hero .container {
  position: relative;
  z-index: 2;
}
.tech-support-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.tech-support-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.services-section {
  padding: 80px 0;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background-color: #fff;
  padding: 30px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.service-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.service-item .service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-color);
}
.service-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.light-bg {
  background-color: var(--light-gray);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .tech-support-hero h1 {
    font-size: 2.5rem;
  }
  .form-group-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.services-hero {
  padding: 80px 0;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}
.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(34, 93, 170, 0.8)), to(rgba(44, 62, 80, 0.8)));
  background: linear-gradient(rgba(34, 93, 170, 0.8), rgba(44, 62, 80, 0.8));
}
.services-hero .container {
  position: relative;
  z-index: 2;
}
.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.services-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.page-section {
  padding: 80px 0;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.service-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card-icon img {
  width: 50px;
  height: 50px;
}

.service-card-content h3 {
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--text-color);
}
.service-card-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}
.service-card-content p a {
  color: var(--primary-blue);
  font-weight: 500;
}
.service-card-content p a:hover {
  text-decoration: underline;
}

.cta-banner {
  background-color: var(--primary-blue);
  padding: 60px 0;
  color: white;
  text-align: center;
}
.cta-banner h2 {
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 15px;
}
.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button-light {
  background-color: #fff;
  color: var(--primary-blue);
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}
.cta-button-light:hover {
  background-color: var(--light-gray);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2.5rem;
  }
  .services-page-grid {
    grid-template-columns: 1fr;
  }
}
.faq-hero {
  padding: 80px 0;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}
.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(44, 62, 80, 0.8)), to(rgba(34, 93, 170, 0.8)));
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(34, 93, 170, 0.8));
}
.faq-hero .container {
  position: relative;
  z-index: 2;
}
.faq-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.faq-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 50px;
}
.faq-category h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--primary-blue);
  padding-bottom: 10px;
  color: var(--text-color);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}
.faq-item summary {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 20px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary-blue);
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq-item summary:hover {
  color: var(--primary-blue);
}

/* --- Açılış Animasyonu --- */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease, padding 0.3s ease;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

details[open] > .faq-answer {
  max-height: 500px; /* İçeriğe göre yeterli yüksekliği bırakıyoruz */
  padding: 0 10px 20px 10px;
}

.faq-answer-content {
  line-height: 1.7;
  color: #333;
}
.faq-answer-content p {
  margin-top: 0;
}
.faq-answer-content a {
  color: var(--primary-blue);
  font-weight: 500;
}
.faq-answer-content a:hover {
  text-decoration: underline;
}

details[open] > summary::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.faq-cta {
  margin-top: 60px;
  padding: 40px;
  background-color: var(--light-gray);
  border-radius: 8px;
  text-align: center;
}

.sectors-hero {
  padding: 80px 0;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sectors-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(34, 93, 170, 0.7)), to(rgba(44, 62, 80, 0.7)));
  background: linear-gradient(rgba(34, 93, 170, 0.7), rgba(44, 62, 80, 0.7));
}
.sectors-hero .container {
  position: relative;
  z-index: 2;
}
.sectors-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.sectors-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.sector-card {
  position: relative;
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
  color: white;
  padding: 30px;
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.sector-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.sector-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.sector-card:hover::before {
  background-color: rgba(34, 93, 170, 0.8);
}

.sector-card-content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sector-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.sector-card h3 {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.sector-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 90%;
}

.new-features-section {
  padding: 80px 0;
}

.new-features-grid {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media (min-width: 992px) {
  .new-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.layout-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.feature-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #fff;
  padding: 25px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.feature-card:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.feature-card:hover .feature-icon {
  border-radius: 50%;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.feature-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: border-radius 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-radius 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-radius 0.3s ease, transform 0.3s ease;
  transition: border-radius 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.feature-icon img {
  width: 32px;
  height: 32px;
}
.feature-icon.purple {
  background-color: #f3e5f5;
}
.feature-icon.blue {
  background-color: #e3f2fd;
}
.feature-icon.orange {
  background-color: #fff3e0;
}

.feature-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--text-color);
}
.feature-content p {
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

.stats-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.stat-item {
  background-color: #fff;
  padding: 30px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.stat-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 20px auto;
}
.stat-icon-wrapper img {
  width: 32px;
  height: 32px;
}
.stat-icon-wrapper.orange {
  background-color: #fd7e14;
}
.stat-icon-wrapper.green {
  background-color: #28a745;
}
.stat-icon-wrapper.blue {
  background-color: #007bff;
}
.stat-icon-wrapper.teal {
  background-color: #20c997;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.stat-number.orange {
  color: #fd7e14;
}
.stat-number.green {
  color: #28a745;
}
.stat-number.blue {
  color: #007bff;
}
.stat-number.teal {
  color: #20c997;
}

.stat-label {
  font-size: 1rem;
  color: #6c757d;
}

.hero-alt-section {
  padding: 80px 0;
  background-color: #f0f4f8;
}

.hero-alt-grid {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media (min-width: 992px) {
  .hero-alt-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.hero-alt-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.hero-alt-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--text-color);
}
.hero-alt-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #555;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.feature-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #333;
}
.feature-list li img {
  width: 20px;
  height: 20px;
}

.cta-button.dark {
  background-color: #2c3e50;
  color: white;
  padding: 15px 30px;
  font-weight: 500;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.cta-button.dark svg {
  width: 20px;
  height: 20px;
}
.cta-button.dark:hover {
  background-color: #34495e;
}

@media (max-width: 991px) {
  .hero-alt-grid {
    grid-template-columns: 1fr;
  }
  .hero-alt-image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .hero-alt-content {
    text-align: center;
  }
  .feature-list {
    display: inline-grid;
    text-align: left;
  }
}
@media (max-width: 576px) {
  .hero-alt-content h1 {
    font-size: 2.2rem;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
}
/* Genel Stiller ve Değişkenler */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Yorumlar Bölümü */
.reviews-v3-section {
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  /* Kaydırıcı Kapsayıcısı */
  /* Yorum Kartı */
  /* Kaydırıcı Navigasyon Okları */
  /* Sayfalama Noktaları */
}
.reviews-v3-section .section-heading-v3 {
  margin-bottom: 50px;
}
.reviews-v3-section .section-heading-v3 h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
}
.reviews-v3-section .section-heading-v3 h2 span {
  color: #e74c3c;
}
.reviews-v3-section .reviews-slider-wrapper-v3 {
  position: relative;
  padding: 0 40px;
}
.reviews-v3-section .reviews-slider-wrapper-v3 .reviews-v3-slider {
  padding: 20px 0;
}
.reviews-v3-section .review-v3-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  /* Yazar Bilgisi */
}
.reviews-v3-section .review-v3-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.reviews-v3-section .review-v3-card .review-v3-quote-icon {
  width: 40px;
  height: 40px;
  color: #e74c3c;
  margin-bottom: 20px;
}
.reviews-v3-section .review-v3-card .review-v3-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #555;
}
.reviews-v3-section .review-v3-card .review-v3-author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}
.reviews-v3-section .review-v3-card .review-v3-author-info .review-v3-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
  border: 3px solid #e74c3c;
}
.reviews-v3-section .review-v3-card .review-v3-author-info .author-v3-details {
  text-align: left;
}
.reviews-v3-section .review-v3-card .review-v3-author-info .author-v3-details .author-v3-name {
  font-weight: 600;
  font-size: 18px;
  color: #2c3e50;
}
.reviews-v3-section .review-v3-card .review-v3-author-info .author-v3-details .review-v3-stars {
  color: #f1c40f;
  font-size: 20px;
}
.reviews-v3-section .swiper-button-prev-v3,
.reviews-v3-section .swiper-button-next-v3 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  color: #e74c3c;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reviews-v3-section .swiper-button-prev-v3:hover,
.reviews-v3-section .swiper-button-next-v3:hover {
  background-color: #e74c3c;
  color: #fff;
}
.reviews-v3-section .swiper-button-prev-v3::after,
.reviews-v3-section .swiper-button-next-v3::after {
  font-family: swiper-icons;
  font-size: 18px;
  font-weight: bold;
}
.reviews-v3-section .swiper-button-prev-v3 {
  left: 0px;
}
.reviews-v3-section .swiper-button-prev-v3::after {
  content: "prev";
}
.reviews-v3-section .swiper-button-next-v3 {
  right: 0px;
}
.reviews-v3-section .swiper-button-next-v3::after {
  content: "next";
}
.reviews-v3-section .swiper-pagination-v3 {
  position: relative;
  bottom: auto;
  margin-top: 40px;
}
.reviews-v3-section .swiper-pagination-v3 .swiper-pagination-bullet {
  background-color: #e74c3c;
  width: 10px;
  height: 10px;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s, background-color 0.3s;
  transition: opacity 0.3s, background-color 0.3s;
}
.reviews-v3-section .swiper-pagination-v3 .swiper-pagination-bullet-active {
  opacity: 1;
}

.price-list-section {
  width: 100%;
  padding: 40px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
}
.price-list-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
.price-list-section .price-table {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.price-list-section .price-table .table-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  background-color: #f8f9fa;
  border-bottom: 2px solid #e0e0e0;
  font-weight: 600;
}
.price-list-section .price-table .table-header .header-item {
  padding: 15px 20px;
  color: #333;
  text-align: left;
}
.price-list-section .price-table .table-header .header-item:last-child {
  text-align: right;
}
.price-list-section .price-table .table-body .table-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  border-bottom: 1px solid #e0e0e0;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.price-list-section .price-table .table-body .table-row:last-child {
  border-bottom: none;
}
.price-list-section .price-table .table-body .table-row:hover {
  background-color: #f1f1f1;
}
.price-list-section .price-table .table-body .table-row div {
  padding: 15px 20px;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price-list-section .price-table .table-body .table-row .product-price {
  font-weight: 500;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.image-gallery-section {
  width: 100%;
  background-color: #f8f9fe;
  padding: 50px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.image-gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.image-gallery-section .gallery-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
}
.image-gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .image-gallery-section .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .image-gallery-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .image-gallery-section .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.image-gallery-section .gallery-item {
  background-color: #ffffff;
  border: 1px solid #e0e6f1;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  text-align: center;
}
.image-gallery-section .gallery-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.image-gallery-section .gallery-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.image-gallery-section .gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #e0e6f1;
}
.image-gallery-section .gallery-item .caption {
  display: block;
  padding: 12px 10px;
  font-size: 15px;
  color: #555;
  background-color: #fff;
}

.video-gallery-section {
  width: 100%;
  background-color: var(--light-gray);
  padding: 50px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.video-gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.video-gallery-section .gallery-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 40px;
}
.video-gallery-section .gallery-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.video-gallery-section .video-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 350px;
          flex: 0 1 350px;
  position: relative;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  text-align: center;
}
.video-gallery-section .video-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.video-gallery-section .video-item:hover .play-icon {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.video-gallery-section .video-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.video-gallery-section .video-item img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--border-color);
}
.video-gallery-section .video-item .caption {
  display: block;
  padding: 12px 10px;
  font-size: 15px;
  color: #555;
  background-color: #fff;
}
.video-gallery-section .video-item .play-icon {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
          transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.video-gallery-section .video-item .play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--primary-red);
}

.demo-section {
  background-color: #f8f9fe;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}
.demo-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.demo-section .demo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .demo-section .demo-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.demo-section .demo-image img {
  max-width: 100%;
  height: auto;
}
.demo-section .demo-content .tag {
  display: inline-block;
  background-color: #e0f8f0;
  color: #00c851;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.demo-section .demo-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #212529;
  line-height: 1.3;
  margin-bottom: 30px;
}
.demo-section .download-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 576px) {
  .demo-section .download-links {
    grid-template-columns: 1fr;
  }
}
.demo-section .download-links .full-width {
  grid-column: 1/-1;
}
.demo-section .download-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 25px rgba(108, 117, 125, 0.1);
          box-shadow: 0 5px 25px rgba(108, 117, 125, 0.1);
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.demo-section .download-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 30px rgba(108, 117, 125, 0.15);
          box-shadow: 0 8px 30px rgba(108, 117, 125, 0.15);
}
.demo-section .download-card img {
  width: 48px;
  height: 48px;
}
.demo-section .download-card .card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.demo-section .download-card .card-text span {
  font-size: 14px;
  color: #555;
}
.demo-section .download-card .card-text strong {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
}

.image-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  background-color: white;
}
.image-row img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

body {font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin:0; padding:0; background:#f5f7fa; color:#333; line-height:1.7;}
header {background:linear-gradient(135deg,#1a73e8,#1558b0); color:#fff; padding:60px 20px; text-align:center;}
header h1 {margin:0; font-size:3em; letter-spacing:1px;}
header p {font-size:1.3em; opacity:0.9; margin-top:10px;}

h2 {color:#1a73e8; margin-bottom:25px; font-size:2em; position:relative; display:inline-block;}
h2::after {content:''; display:block; width:60%; height:3px; background:#1a73e8; margin:8px auto 0; border-radius:2px;}
.features, .modules {margin-bottom:70px; text-align:center;}
.features-grid {display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; justify-items:center;}
.feature-card {background:#fff; padding:20px; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.08); transition:transform 0.3s ease; text-align:center;}
.feature-card:hover {transform:translateY(-5px);}
.feature-card span {font-size:1.8em; display:block; margin-bottom:10px; color:#1a73e8;}
.modules ul {columns:2; -webkit-columns:2; -moz-columns:2; list-style: none; padding:0; margin:0 auto; text-align:left; max-width:800px;}
.modules li {margin-bottom:10px; padding-left:20px; position:relative;}
.modules li::before {content:"✔"; position:absolute; left:0; color:#1a73e8;}
.price-box {background:#fff; padding:40px; text-align:center; border-radius:16px; box-shadow:0 6px 18px rgba(0,0,0,0.12); margin-bottom:70px;}
.price-box h3 {margin-top:0; font-size:1.8em;}
.price {font-size:2.5em; color:#e53935; margin:25px 0; font-weight:bold;}
.demo-btn {display:inline-block; background:linear-gradient(135deg,#1a73e8,#4a90e2); color:#fff; padding:15px 35px; border-radius:10px; text-decoration:none; font-weight:bold; font-size:1.1em; transition:all 0.3s ease;}
.demo-btn:hover {background:linear-gradient(135deg,#1558b0,#1a73e8); transform:scale(1.05);}
.screenshots {margin-top:40px;}
.screenshots h2 {margin-bottom:30px;}
.screenshots-grid {display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:25px;}
.screenshots img {width:100%; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.1); transition:transform 0.3s ease;}
.screenshots img:hover {transform:scale(1.03);}

.video-section {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
}
.video-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #2c3e50;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}
.video-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.video-title {
  margin-top: 10px;
  font-size: 1em;
  color: #1a73e8;
  font-weight: bold;
}


.intro-features {
  padding: 60px 20px;
  background: #f8f9fa;
}
.intro-features h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a73e8;
}
.intro-features p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.6;
}


.table-striped tbody tr:nth-of-type(odd) {
    background-color: #ffffff; /* Beyaz */
}
.table-striped tbody tr:nth-of-type(even) {
    background-color: #f4f7fb; /* Açık mavi-gri */
}

.action-btn {
    flex:1;
    text-align:center;
    padding:10px 15px;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
    transition:0.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px; 
}

/* Buton renkleri */
.blue-btn { background-color:#ffc400ee; }
.blue-btn:hover { background-color:#ffc400ee; }

.green-btn { background-color:#28a745; }
.green-btn:hover { background-color:#1e7e34; }

.red-btn { background-color:#dc3545; }
.red-btn:hover { background-color:#a71d2a; }


.single-team-box .image {
    width: 100%;
    height: 220px; /* tüm görsellerin aynı yüksekliği */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px; /* köşeleri yumuşatır */
}

.single-team-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* resmi kırpar ama orantılı gösterir */
}



.menu-button {
  background-color: #493ec0; /* Yeşil buton rengi */
  color: white !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.menu-button:hover {
  background-color: #594fc2; /* Hover rengi */
}



.gallery-container{
    position:relative;
    width:100%;
    overflow:hidden;
    padding:10px 44px; /* ok tuşları için iç boşluk */
  }
  .gallery{
    display:flex;
    flex-wrap:nowrap;         /* tek satırda akış */
    gap:18px;
    overflow-x:auto;          /* yatay kaydırma */
    scroll-behavior:smooth;   /* yumuşak kayış */
    -webkit-overflow-scrolling: touch;
  }
  .gallery::-webkit-scrollbar{ display:none; } /* (isteğe bağlı) scrollbar gizle */

  /* İçteki her kartın sabit genişliği olsun */
  .gallery > div{
    flex:0 0 260px; /* ~260px genişlikte kart */
  }

  /* Ok butonları */
  .gallery-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    border:none;
    padding:10px 12px;
    background:rgba(0,0,0,0.55);
    color:#fff;
    border-radius:999px;
    cursor:pointer;
    z-index:5;
    line-height:1;
    font-size:18px;
  }
  .gallery-btn.left{ left:8px; }
  .gallery-btn.right{ right:8px; }
  .gallery-btn:hover{ background:rgba(0,0,0,0.8); }

  /* Görseller taşmasın */
  .gallery img{ display:block; width:100%; height:190px; object-fit:cover; border-radius:6px; }
  .gallery h6{ margin:8px 0 0; text-align:center; }

