
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #0a0d13;
  --color-primary: #0d42ff;
  --color-secondary: #0e1d34;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #406aff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #001973;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header span {
  position: absolute;
  top: 46px;
  color: rgba(14, 29, 52, 0.06);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 0;
}

.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 140px 0 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs .page-header:before {
  content: "";
  background-color: rgba(14, 29, 52, 0.8);
  position: absolute;
  inset: 0;
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f3f6fc;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4278cc;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(13, 66, 255, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
}

.header.sticked {
  background: rgba(14, 29, 52, 0.9);
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: #2756ff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-secondary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(14, 29, 52, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: rgba(13, 66, 255, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #19335c;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 20px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: #001f8d;
  font-size: 48px;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon {
  background: #fff;
}

.featured-services .service-item:hover .icon i {
  color: var(--color-primary);
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--color-secondary);
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: #132848;
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: var(--color-secondary);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  font-family: var(--font-secondary);
  color: #001f8d;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--color-primary);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
  color: #19335c;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
  border: 1px solid rgba(14, 29, 52, 0.15);
  background: #fff;
  position: relative;
  border-radius: 0;
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.services .card a {
  color: #001973;
  transition: 0.3;
}

.services .card a:hover {
  color: var(--color-primary);
}

.services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: var(--color-secondary);
  font-size: 15px;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(14, 29, 52, 0.6), rgba(14, 29, 52, 0.8)), url("../img/cta-bg.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-top: 80px;
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #001973;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--color-secondary);
}

.pricing h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  color: var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  transition: 0.3s;
  border: 1px solid var(--color-primary);
}

.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .featured {
  border-top-color: var(--color-primary);
}

.pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
  padding-top: 80px;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 10px;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 30px 20px 60px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: var(--color-default);
  text-align: left;
  background: rgba(14, 29, 52, 0.03);
  border-radius: 5px;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--color-primary);
}

.faq .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
}

.faq .accordion-body {
  padding: 0 30px 25px 60px;
  border: 0;
  background: rgba(14, 29, 52, 0.03);
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 29, 52, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats-counter .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid rgba(14, 29, 52, 0.15);
}

.team .member img {
  margin: -1px -1px 30px -1px;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #6c757d;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: rgba(14, 29, 52, 0.5);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--color-primary);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Horizontal Pricing Section
--------------------------------------------------------------*/
.horizontal-pricing .pricing-item {
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  padding-bottom: 30px;
  background: #fff;
  height: 100%;
  position: relative;
}

.horizontal-pricing h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
  color: var(--color-secondary);
}

.horizontal-pricing h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 25px;
  text-align: center;
}

.horizontal-pricing h4 sup {
  font-size: 28px;
}

.horizontal-pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.horizontal-pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.horizontal-pricing ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.horizontal-pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.horizontal-pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.horizontal-pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.horizontal-pricing ul .na span {
  text-decoration: line-through;
}

.horizontal-pricing .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  color: #fff;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--font-primary);
}

.horizontal-pricing .buy-btn:hover {
  background: #406aff;
  border-color: #406aff;
}

.horizontal-pricing .featured {
  background: var(--color-primary);
}

.horizontal-pricing .featured h3,
.horizontal-pricing .featured h4,
.horizontal-pricing .featured h4 span,
.horizontal-pricing .featured ul,
.horizontal-pricing .featured ul .na,
.horizontal-pricing .featured ul i,
.horizontal-pricing .featured ul .na i {
  color: #fff;
}

.horizontal-pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
  border-color: #fff;
}

.horizontal-pricing .featured .buy-btn:hover {
  background: #fff;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Get a Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote .php-email-form {
  background: #f3f6fc;
  padding: 40px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-a-quote .php-email-form {
    padding: 20px;
  }
}

.get-a-quote .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-a-quote .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-a-quote .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-a-quote .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.get-a-quote .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.get-a-quote .php-email-form input,
.get-a-quote .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.get-a-quote .php-email-form input:focus,
.get-a-quote .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.get-a-quote .php-email-form input {
  padding: 12px 15px;
}

.get-a-quote .php-email-form textarea {
  padding: 12px 15px;
}

.get-a-quote .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-a-quote .php-email-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(14, 29, 52, 0.8);
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d3dff3;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #c2cbdf;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  background-color: var(--color-secondary);
  background-image: url("../img/hero-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 0 60px 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero form {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

.hero form .form-control {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero form .btn-primary {
  background-color: var(--color-primary);
  padding: 15px 30px;
}

.hero form .btn-primary:hover {
  background-color: #2756ff;
}

.hero .stats-item {
  padding: 30px;
  width: 100%;
}

.hero .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-secondary);
  padding: 50px 0;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(13, 66, 255, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}





  
    /* Genel Stil Ayarları */
    .blog-home {
      background-color: #fcfcfc; /* Çok hafif bir arka plan rengi */
      font-family: 'Roboto', sans-serif; /* Okunaklı ve modern bir font varsayımı */
    }
    .blog-home .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .blog-home .section-header h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color: #333;
      margin-bottom: 10px;
    }
    .blog-home .section-header p {
      font-size: 1rem;
      color: #666;
      max-width: 1200px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* Blog Gönderi Kartları (İkon Odaklı) */
    .blog-post-card-full {
      background-color: #fff;
      border: 1px solid #e0e0e0; /* Hafif bir kenarlık */
      border-radius: 8px; /* Yumuşak köşeler */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Yumuşak gölge */
      transition: all 0.3s ease-in-out;
      overflow: hidden;
      display: flex;
      flex-direction: column; /* Mobil için dikey, desktop için yatay (d-md-flex ile) */
    }
    .blog-post-card-full:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    .blog-post-card-full .icon-placeholder {
      flex-shrink: 0; /* Küçülmesini engelle */
      width: 200px; /* İkon alanı genişliği */
      min-height: 180px; /* İkon alanı min yüksekliği (mobil için) */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--bs-primary, #007bff); /* Ana renk arka plan */
      border-radius: 8px 0 0 8px; /* Sadece sol köşeler yuvarlak */
    }
    .blog-post-card-full .icon-placeholder i {
      font-size: 4rem; /* İkon boyutu */
      color: #fff; /* İkon rengi */
    }
    .blog-post-card-full .p-4 {
      padding: 25px !important; /* Bootstrap'in varsayılan padding'ini ezin */
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .blog-post-card-full h3.h5 {
      font-size: 1.3rem;
      font-weight: 600;
      line-height: 1.4;
      margin-bottom: 10px;
    }
    .blog-post-card-full h3.h5 a {
      text-decoration: none;
      color: #333;
      transition: color 0.3s ease;
      position: relative;
      z-index: 1; /* stretched-link ile uyumluluk */
    }
    .blog-post-card-full h3.h5 a:hover {
      color: var(--bs-primary, #007bff);
    }
    .blog-post-card-full .post-meta {
      font-size: 0.8rem;
      color: #888;
      margin-bottom: 15px;
    }
    .blog-post-card-full .post-meta i {
      color: var(--bs-primary, #007bff);
      margin-right: 5px;
    }
    .blog-post-card-full .post-meta span:not(:last-child) {
        margin-right: 15px;
    }
    .blog-post-card-full p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 20px;
      flex-grow: 1;
    }
    .blog-post-card-full .btn-outline-primary {
      border-color: var(--bs-primary, #007bff);
      color: var(--bs-primary, #007bff);
      transition: all 0.3s ease;
      align-self: flex-start; /* Butonu sola hizala */
      z-index: 2; /* Butonun tıklanabilir kalması için */
      position: relative;
      padding: 8px 16px; /* Buton padding'i */
      font-size: 0.9rem;
    }
    .blog-post-card-full .btn-outline-primary:hover {
      background-color: var(--bs-primary, #007bff);
      color: #fff;
    }

    /* Yan Menü (Sidebar) Stilleri */
    .sidebar {
      padding: 0;
    }
    .sidebar .sidebar-item {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
      margin-bottom: 25px;
      padding: 25px;
    }
    .sidebar .sidebar-title {
      font-size: 1.4rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--bs-primary, #007bff); /* Ana renkte kalın alt çizgi */
    }

    /* Arama Formu */
    .sidebar-item.search-form form {
      display: flex;
      align-items: center;
      border: 1px solid #ced4da;
      border-radius: 5px;
      overflow: hidden; /* Input ve butonun köşeleri için */
    }
    .sidebar-item.search-form input[type="text"] {
      border: none;
      padding: 10px 15px;
      flex-grow: 1;
      font-size: 0.95rem;
      outline: none; /* Odaklandığında kenarlık olmasın */
    }
    .sidebar-item.search-form button {
      background-color: var(--bs-primary, #007bff);
      border: none;
      color: #fff;
      padding: 10px 15px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .sidebar-item.search-form button:hover {
      background-color: #0056b3;
    }
    .sidebar-item.search-form button i {
        font-size: 1.1rem;
    }

    /* Kategoriler */
    .sidebar-item.categories ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .sidebar-item.categories ul li {
      margin-bottom: 8px;
    }
    .sidebar-item.categories ul li:last-child {
      margin-bottom: 0;
    }
    .sidebar-item.categories ul li a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 12px;
      text-decoration: none;
      color: #555;
      font-size: 0.95rem;
      border-radius: 5px;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    .sidebar-item.categories ul li a:hover {
      background-color: var(--bs-primary, #007bff);
      color: #fff;
    }
    .sidebar-item.categories ul li a span { /* Kategori sayıları */
      background-color: #e9ecef;
      color: #6c757d;
      font-weight: normal;
      padding: 4px 8px;
      border-radius: 15px;
      font-size: 0.8rem;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    .sidebar-item.categories ul li a:hover span {
      background-color: #fff;
      color: var(--bs-primary, #007bff);
    }

    /* Popüler Yazılar */
    .sidebar-item.recent-posts .post-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    .sidebar-item.recent-posts .post-item:last-child {
      margin-bottom: 0;
    }
    .sidebar-item.recent-posts .post-thumb {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border-radius: 5px;
      margin-right: 15px;
    }
    .sidebar-item.recent-posts .post-content h4 {
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.3;
      margin-bottom: 5px;
    }
    .sidebar-item.recent-posts .post-content h4 a {
      text-decoration: none;
      color: #333;
      transition: color 0.3s ease;
    }
    .sidebar-item.recent-posts .post-content h4 a:hover {
      color: var(--bs-primary, #007bff);
    }
    .sidebar-item.recent-posts .post-content time {
      font-size: 0.75rem;
      color: #888;
    }

    /* Etiketler */
    .sidebar-item.tags ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap; /* Etiketlerin alt alta gelmesini sağlar */
      gap: 8px; /* Etiketler arası boşluk */
    }
    .sidebar-item.tags ul li {
      margin: 0; /* Kendi margin'i olmasın */
    }
    .sidebar-item.tags ul li a {
      display: inline-block;
      padding: 6px 12px;
      background-color: #e6f0ff; /* Açık mavi arka plan */
      border-radius: 20px;
      text-decoration: none;
      color: var(--bs-primary, #007bff);
      font-size: 0.85rem;
      transition: all 0.3s ease;
      font-weight: 500;
    }
    .sidebar-item.tags ul li a:hover {
      background-color: var(--bs-primary, #007bff);
      color: #fff;
    }

    /* Sayfalama Stilleri */
    .pagination .page-item .page-link {
      color: var(--bs-primary, #007bff);
      border: 1px solid #dee2e6;
      border-radius: 5px;
      margin: 0 4px;
      transition: all 0.3s ease;
      min-width: 38px;
      text-align: center;
    }
    .pagination .page-item.active .page-link {
      background-color: var(--bs-primary, #007bff);
      border-color: var(--bs-primary, #007bff);
      color: #fff;
    }
    .pagination .page-item:not(.active):hover .page-link {
      background-color: #e9ecef;
      color: var(--bs-primary, #007bff);
    }
    .pagination .page-item.disabled .page-link {
      color: #adb5bd;
      background-color: #fff;
      border-color: #dee2e6;
    }

    /* Duyarlı Tasarım (Responsive) */
    @media (max-width: 991.98px) { /* Tablet ve altı */
      .blog-post-card-full .icon-placeholder {
        width: 100%; /* Mobil'de ikon alanı tam genişlik */
        min-height: 150px;
        border-radius: 8px 8px 0 0; /* Üst köşeler yuvarlak */
      }
      .blog-post-card-full .icon-placeholder i {
        font-size: 3.5rem;
      }
      .blog-post-card-full {
        flex-direction: column; /* Mobil'de kartlar dikey düzen */
      }
      .sidebar {
        margin-top: 40px;
        padding-left: 0 !important;
      }
      .sidebar .sidebar-item {
        padding: 20px;
        margin-bottom: 20px;
      }
      .blog-home .section-header h2 {
        font-size: 2.2rem;
      }
      .blog-home .section-header p {
        font-size: 1rem;
      }
    }

    @media (max-width: 767.98px) { /* Mobil ve altı */
      .blog-post-card-full .p-4 {
        padding: 18px !important;
      }
      .blog-post-card-full h3.h5 {
        font-size: 1.2rem;
      }
      .blog-post-card-full p {
        font-size: 0.9rem;
      }
      .sidebar .sidebar-title {
        font-size: 1.25rem;
      }
      .sidebar-item.search-form input[type="text"],
      .sidebar-item.search-form button {
        padding: 8px 12px;
      }
    }  





/* Footer Genel Stilleri */
.footer-section {
    background-color: #212529; /* Koyu arka plan rengi */
    color: #ffffff; /* Beyaz metin rengi */
    padding: 5rem 0; /* Üst ve alttan boşluk */
}

/* Başlık Stilleri */
.footer-heading {
    color: #ffffff; /* Başlık metin rengi */
    font-size: 1.35rem; /* Başlık font boyutu */
    margin-bottom: 1.5rem; /* Başlık alt boşluğu */
    padding-bottom: 0.75rem; /* Başlık alt çizgi boşluğu */
    border-color: #007bff !important; /* Birincil renkli alt çizgi */
}

/* Genel Metin Stilleri */
.footer-text-regular {
    font-size: 0.95rem; /* Metin font boyutu */
    line-height: 1.5; /* Satır yüksekliği */
    color: rgba(255, 255, 255, 0.75); /* Hafif şeffaf beyaz metin */
    margin-bottom: 0.75rem; /* Metin paragrafı alt boşluğu */
}

.footer-col .text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important; /* Üst div'deki şeffaf beyaz metin */
}

/* Sosyal Medya İkon Stilleri */
.footer-social-icon {
    transition: color 0.3s ease, transform 0.3s ease; /* Fare üzerine gelince geçiş efekti */
}

.footer-social-icon:hover {
    color: #007bff !important; /* Birincil renge döner */
    transform: translateY(-3px); /* Hafif yukarı kayar */
}

/* Liste Bağlantı Stilleri */
.footer-links li {
    margin-bottom: 0.1rem; /* Liste öğeleri arası boşluk */
}

.footer-link {
    font-size: 0.95rem; /* Bağlantı font boyutu */
    font-weight: 400; /* Bağlantı font kalınlığı */
    line-height: 1.3; /* Bağlantı satır yüksekliği */
    transition: color 0.3s ease, padding-left 0.3s ease; /* Fare üzerine gelince geçiş efekti */
}

.footer-link:hover {
    color: #007bff !important; /* Birincil renge döner */
    padding-left: 8px; /* Sola doğru kayar */
}

.footer-link .text-primary {
    color: #007bff !important; /* Ok ikonunun birincil rengi */
}

/* İletişim İkon Stilleri */
.footer-icon {
    font-size: 1.1rem; /* İletişim ikon boyutu */
    color: #007bff !important; /* Birincil renkte */
}

/* Yatay Çizgi Stili */
.footer-section .border-secondary {
    border-color: rgba(255, 255, 255, 0.15) !important; /* Hafif şeffaf beyaz çizgi */
}

/* Duyarlı Tasarım (Mobil Cihazlar İçin) */
@media (max-width: 767.98px) {
    .footer-heading {
        font-size: 1.2rem; /* Başlık font boyutu küçülür */
    }
    .footer-text-regular, .footer-link {
        font-size: 0.9rem; /* Metin ve bağlantı font boyutu küçülür */
        line-height: 1.5;
    }
    .footer-links li {
        margin-bottom: 0.2rem; /* Liste öğeleri arası boşluk artar */
    }
}

/* Duyarlı Tasarım (Orta Boy Ekranlar İçin) */
@media (min-width: 576px) and (max-width: 991.98px) {
    .footer-col:nth-child(2), /* Hızlı Erişim */
    .footer-col:nth-child(3), /* İhale ve Onay */
    .footer-col:nth-child(4)  /* Uzmanlık Alanları (burada 4. sütun olmalıydı, iletişim değil) */
    {
        flex: 0 0 auto;
        width: 50% !important; /* Orta boy ekranlarda 2'li sütuna döner */
    }
}





.services-minimal.section-bg {
  background-color: #fcfcfc;
  padding: 80px 0;
}


.section-header {
  margin-bottom: 50px;
}

.section-header .section-subtitle {
  font-size: 1.05rem;
  color: #888;
  font-weight: 400;
}

.section-header .section-title {
  color: #222;
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
}

.section-header .section-description {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  color: #666;
}


.services-minimal .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}


.services-minimal .service-card-minimal {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}


.services-minimal .service-card-minimal:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #eee;
}


.services-minimal .service-card-minimal .icon-minimal {
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}


.services-minimal .service-card-minimal:hover .icon-minimal i {
  color: #0069d9 !important;
}


.services-minimal .service-card-minimal .title-minimal {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}

.services-minimal .service-card-minimal .title-minimal a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-minimal .service-card-minimal:hover .title-minimal a {
  color: #007bff;
}


.services-minimal .service-card-minimal .description-minimal {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: auto;
  min-height: 75px;
}


.services-minimal .service-card-minimal .readmore-minimal {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #007bff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin-top: 15px;
}

.services-minimal .service-card-minimal .readmore-minimal i {
  margin-left: 6px;
  transition: margin-left 0.3s ease;
}

.services-minimal .service-card-minimal .readmore-minimal:hover {
  color: #0056b3;
}

.services-minimal .service-card-minimal .readmore-minimal:hover i {
  margin-left: 10px;
}


.services-minimal .service-card-minimal .stretched-link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}


.services-minimal .service-card-minimal .text-primary { color: #007bff !important; }
.services-minimal .service-card-minimal .text-info { color: #17a2b8 !important; }
.services-minimal .service-card-minimal .text-success { color: #28a745 !important; }
.services-minimal .service-card-minimal .text-warning { color: #ffc107 !important; }
.services-minimal .service-card-minimal .text-danger { color: #dc3545 !important; }
.services-minimal .service-card-minimal .text-secondary { color: #6c757d !important; }
.services-minimal .service-card-minimal .text-dark { color: #343a40 !important; }


.category-main-title {
  color: #222;
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
}

.category-main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    border-radius: 2px;
}


.category-group {
  margin-bottom: 60px;
}

.category-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #555 !important;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #888;
    border-radius: 1px;
}


  /* Fiyat Hesaplama - Kesin Minimalist Stilleri (Tüm Efektler Kaldırıldı) */
  :root {
    --color-primary: #007bff; /* Ana markanızın rengi */
    --color-primary-dark: #0056b3;
    --color-success: #28a745;
    --color-success-light: #e6ffe9; /* Çok açık yeşil */
    --color-bg-light: #f8f9fa; /* Bölüm arka planı */
    --color-text-dark: #343a40;
    --color-border-clean: #ced4da; /* Temiz, ince kenarlık */
  }

  .price-calculator-kesin-minimal {
    background-color: var(--color-bg-light);
    padding: 80px 0; /* Daha fazla dikey boşluk */
  }

  .price-calculator-kesin-minimal .section-header {
    margin-bottom: 4rem;
  }

  .price-calculator-kesin-minimal .section-header h2 {
    color: var(--color-text-dark);
  }

  .price-calculator-kesin-minimal .section-header p {
    color: #6c757d;
  }

  /* Ana Kart Stili - Efektsiz */
  .calculator-card-no-effects {
    border: 1px solid var(--color-border-clean);
    border-radius: 0; /* Köşeler tamamen düz */
    box-shadow: none; /* Gölge kaldırıldı */
    transition: none; /* Animasyonlar kaldırıldı */
    transform: none; /* Dönüşümler kaldırıldı */
  }

  /* Form Elemanları - Efektsiz */
  .price-calculator-kesin-minimal .form-label {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
  }

  .price-calculator-kesin-minimal .form-control-lg,
  .price-calculator-kesin-minimal .form-select-lg {
    border-radius: 0; /* Köşeler tamamen düz */
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border-clean);
    transition: none; /* Animasyonlar kaldırıldı */
    box-shadow: none; /* Gölge kaldırıldı */
    outline: none; /* Odaklandığında dış çizgi kaldırıldı */
  }

  .price-calculator-kesin-minimal .form-control-lg:focus,
  .price-calculator-kesin-minimal .form-select-lg:focus {
    border-color: var(--color-primary); /* Sadece kenarlık rengi değişsin */
    box-shadow: none; /* Odak gölgesi kaldırıldı */
  }

  .price-calculator-kesin-minimal .form-text {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.4rem;
  }

  .price-calculator-kesin-minimal .form-check-input {
    border-color: var(--color-border-clean);
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.1em;
    border-radius: 0; /* Köşeler tamamen düz */
    transition: none; /* Animasyonlar kaldırıldı */
  }

  .price-calculator-kesin-minimal .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
  }

  /* Buton Stilleri - Efektsiz */
  .calculate-btn-no-effects {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 0; /* Köşeler tamamen düz */
    transition: none; /* Animasyonlar kaldırıldı */
    box-shadow: none; /* Gölge kaldırıldı */
    transform: none; /* Dönüşümler kaldırıldı */
  }

  .calculate-btn-no-effects:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    /* Hover efektleri de minimize edildi (sadece renk değişimi) */
  }

  /* Sonuç Kutusu Stilleri - Efektsiz */
  .price-result-box-no-effects {
    background-color: var(--color-success-light);
    border: 1px solid var(--color-success);
    border-radius: 0; /* Köşeler tamamen düz */
    animation: none; /* Animasyon kaldırıldı */
  }

  .price-result-box-no-effects #estimatedPriceKesinMinimal {
    color: var(--color-success);
    font-size: 3.8rem;
    line-height: 1;
    margin-bottom: 1rem;
  }

  .price-result-box-no-effects .btn-outline-primary {
    border-color: var(--color-primary);
    color: var(--color-primary);
    padding: 0.75rem 2rem;
    font-size: 1.05rem;
    border-radius: 0; /* Köşeler tamamen düz */
    font-weight: 600;
    transition: none; /* Animasyonlar kaldırıldı */
    box-shadow: none; /* Gölge kaldırıldı */
  }

  .price-result-box-no-effects .btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: #fff;
  }

  .reset-form-btn-no-effects {
    color: #6c757d;
    font-size: 0.95rem;
    text-decoration: underline; /* Link olduğu belli olsun */
    transition: none; /* Animasyonlar kaldırıldı */
  }

  .reset-form-btn-no-effects:hover {
    color: var(--color-primary-dark);
  }

  /* Mobil Uyumlu Düzenleme */
  @media (max-width: 767px) {
    .price-calculator-kesin-minimal {
      padding: 60px 0;
    }
    .calculator-card-no-effects {
      padding: 1.5rem;
    }
    .price-result-box-no-effects #estimatedPriceKesinMinimal {
      font-size: 3rem;
    }
  }



  /* Özelleştirme için CSS */
  .feature-box {
    border: 1px solid rgba(var(--bs-primary-rgb), .2) !important; /* Hafif birincil renkli kenarlık */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
  }

  .feature-box .icon {
    line-height: 1; /* İkonun dikey hizalamasını ayarlar */
  }

  .highlight-box {
    background-color: var(--color-primary); /* Sitenizin ana rengi */
  }
  .highlight-box h3, .highlight-box p {
    color: white !important;
  }
  .highlight-box .btn-light {
    color: var(--color-primary) !important; /* Buton metni ana renk */
  }
  .highlight-box .text-warning {
    color: #ffda6a !important; /* Daha yumuşak bir sarı tonu */
  }





  /* Özelleştirme için CSS */
  .pricing-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  }
  .pricing-card.featured {
    background-color: var(--color-primary); /* Ana Bootstrap renginiz */
    color: white;
    border-color: var(--color-primary) !important;
  }
  .pricing-card.featured h3,
  .pricing-card.featured p,
  .pricing-card.featured .features li,
  .pricing-card.featured .features li i {
    color: white !important; /* Öne çıkan karttaki tüm metinleri ve ikonları beyaz yapar */
  }
  .pricing-card.featured .text-highlight {
      color: white !important; /* Öne çıkan kartta özel vurgu rengi varsa */
  }



      
/* General Section Padding and Background */
.services-minimal.section-bg {
  background-color: #fcfcfc;
  padding: 80px 0;
}

/* Section Header Styling */
.section-header {
  margin-bottom: 50px;
}

.section-header .section-subtitle {
  font-size: 1.05rem;
  color: #888;
  font-weight: 400;
}

.section-header .section-title {
  color: #222;
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
}

.section-header .section-description {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  color: #666;
}

/* Bootstrap Gutter Overrides for consistent spacing */
.services-minimal .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

/* Service Card Styling (Minimalist - Revize Edildi) */
.services-minimal .service-card-minimal {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #fff; /* Kenarlık tamamen beyaza ayarlandı veya #f8f8f8 gibi çok açık bir ton olabilir */
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Hover effect for the entire service card */
.services-minimal .service-card-minimal:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #eee; /* Hover'da çok hafif belirginleşen kenarlık */
}

/* Icon Container Styling */
.services-minimal .service-card-minimal .icon-minimal {
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}

/* Icon color on hover (subtle change) */
.services-minimal .service-card-minimal:hover .icon-minimal i {
  color: #0069d9 !important;
}

/* Title Styling */
.services-minimal .service-card-minimal .title-minimal {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}

.services-minimal .service-card-minimal .title-minimal a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-minimal .service-card-minimal:hover .title-minimal a {
  color: #007bff;
}

/* Description Styling */
.services-minimal .service-card-minimal .description-minimal {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: auto;
  min-height: 75px;
}

/* Readmore Link Styling */
.services-minimal .service-card-minimal .readmore-minimal {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #007bff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin-top: 15px;
}

.services-minimal .service-card-minimal .readmore-minimal i {
  margin-left: 6px;
  transition: margin-left 0.3s ease;
}

.services-minimal .service-card-minimal .readmore-minimal:hover {
  color: #0056b3;
}

.services-minimal .service-card-minimal .readmore-minimal:hover i {
  margin-left: 10px;
}

/* Stretched Link Overlay */
.services-minimal .service-card-minimal .stretched-link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* Specific icon colors (Bootstrap's text-color classes) */
.services-minimal .service-card-minimal .text-primary { color: #007bff !important; }
.services-minimal .service-card-minimal .text-info { color: #17a2b8 !important; }
.services-minimal .service-card-minimal .text-success { color: #28a745 !important; }
.services-minimal .service-card-minimal .text-warning { color: #ffc107 !important; }
.services-minimal .service-card-minimal .text-danger { color: #dc3545 !important; }
.services-minimal .service-card-minimal .text-secondary { color: #6c757d !important; }
.services-minimal .service-card-minimal .text-dark { color: #343a40 !important; }

/* New Category Styling */
.category-main-title {
  color: #222; /* Genel başlık rengi */
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
}

.category-main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px; /* Başlıktan ne kadar aşağıda olacağı */
    width: 60px; /* Çizginin genişliği */
    height: 3px; /* Çizginin kalınlığı */
    background-color: #007bff; /* Çizginin rengi */
    border-radius: 2px;
}


.category-group {
  margin-bottom: 60px; /* Her kategori grubu arasına boşluk */
}

.category-title {
  font-size: 1.8rem; /* Kategori başlığı boyutu */
  font-weight: 600;
  color: #555 !important; /* Daha yumuşak kategori başlık rengi */
  margin-bottom: 30px;
  position: relative;
  display: inline-block; /* Çizginin başlıkla aynı genişlikte olması için */
}

.category-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px; /* Başlıktan ne kadar aşağıda olacağı */
    width: 40px; /* Çizginin genişliği */
    height: 2px; /* Çizginin kalınlığı */
    background-color: #888; /* Çizginin rengi */
    border-radius: 1px;
}





    /* Kategori kutuları için özel stil */
    .archive-category-box {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 20px;
        background-color: #fff;
        height: 100%; /* Tüm kutuların aynı yüksekliğe sahip olmasını sağlar */
        display: flex;
        flex-direction: column;
    }

    .archive-category-box h3 {
        font-size: 1.35rem; /* Başlık boyutunu ayarla */
        color: #0056b3; /* Primary rengi ile uyumlu */
        margin-bottom: 15px;
        font-weight: 600;
    }

    /* Kaydırılabilir liste için stil */
    .scrollable-list {
        max-height: 250px; /* İstediğiniz yüksekliği buradan ayarlayın */
        overflow-y: auto; /* Dikey kaydırma çubuğunu etkinleştirir */
        padding-right: 15px; /* Kaydırma çubuğu için sağda boşluk */
        scrollbar-width: thin; /* Firefox */
        scrollbar-color: #007bff #f1f1f1; /* Firefox */
        flex-grow: 1; /* İçeriğin kutuyu doldurmasını sağlar */
    }

    /* Webkit (Chrome, Safari) için kaydırma çubuğu stilleri */
    .scrollable-list::-webkit-scrollbar {
        width: 8px;
    }

    .scrollable-list::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .scrollable-list::-webkit-scrollbar-thumb {
        background: #007bff;
        border-radius: 10px;
    }

    .scrollable-list::-webkit-scrollbar-thumb:hover {
        background: #0056b3;
    }

    .scrollable-list ul {
        list-style: none; /* Varsayılan madde işaretini kaldır */
        padding-left: 0;
        margin-bottom: 0;
    }

    .scrollable-list ul li {
        padding: 8px 0;
        border-bottom: 1px dashed #eee; /* Listede yatay çizgi */
        font-size: 0.95rem;
        color: #555;
    }

    .scrollable-list ul li:last-child {
        border-bottom: none;
    }

    /* Arama sonuçları için stil */
    #searchResults .list-group-item {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        margin-bottom: 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    #searchResults .list-group-item:hover {
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

    #searchResults .list-group-item h5 {
        font-size: 1.1rem;
    }

    #searchResults .list-group-item small {
        font-size: 0.85rem;
    }

    /* Arama kutusu ve filtre stilleri */
    .search-input-group .form-control,
    .custom-form-select {
        border-color: #007bff;
        box-shadow: none;
    }

    .search-input-group .form-control:focus,
    .custom-form-select:focus {
        border-color: #0056b3;
        box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
    }

    .search-button {
        background-color: #007bff;
        border-color: #007bff;
    }

    .search-button:hover {
        background-color: #0056b3;
        border-color: #0056b3;
    }





/* General Section Padding and Background */
#languages-minimal-categorized-v2.section-bg { /* ID'yi güncelledik */
  background-color: #fcfcfc;
  padding: 80px 0;
}

/* Section Header Styling */
.section-header {
  margin-bottom: 50px;
}

.section-header .section-subtitle {
  font-size: 1.05rem;
  color: #888;
  font-weight: 400;
}

.section-header .section-title {
  color: #222;
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
}

.section-header .section-description {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  color: #666;
}

/* Bootstrap Gutter Overrides for consistent spacing */
.services-minimal .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

/* Service Card Styling (Minimalist - Revize Edildi) */
.services-minimal .service-card-minimal {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #fff; /* Kenarlık tamamen beyaza ayarlandı veya #f8f8f8 gibi çok açık bir ton olabilir */
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Hover effect for the entire service card */
.services-minimal .service-card-minimal:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #eee; /* Hover'da çok hafif belirginleşen kenarlık */
}

/* Icon Container Styling */
.services-minimal .service-card-minimal .icon-minimal {
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}

/* Icon color on hover (subtle change) */
.services-minimal .service-card-minimal:hover .icon-minimal i {
  color: #0069d9 !important;
}

/* Title Styling */
.services-minimal .service-card-minimal .title-minimal {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}

.services-minimal .service-card-minimal .title-minimal a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-minimal .service-card-minimal:hover .title-minimal a {
  color: #007bff;
}

/* Description Styling */
.services-minimal .service-card-minimal .description-minimal {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: auto;
  min-height: 75px;
}

/* Readmore Link Styling */
.services-minimal .service-card-minimal .readmore-minimal {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #007bff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin-top: 15px;
}

.services-minimal .service-card-minimal .readmore-minimal i {
  margin-left: 6px;
  transition: margin-left 0.3s ease;
}

.services-minimal .service-card-minimal .readmore-minimal:hover {
  color: #0056b3;
}

.services-minimal .service-card-minimal .readmore-minimal:hover i {
  margin-left: 10px;
}

/* Stretched Link Overlay */
.services-minimal .service-card-minimal .stretched-link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* Specific icon colors (Bootstrap's text-color classes) */
.services-minimal .service-card-minimal .text-primary { color: #007bff !important; }
.services-minimal .service-card-minimal .text-info { color: #17a2b8 !important; }
.services-minimal .service-card-minimal .text-success { color: #28a745 !important; }
.services-minimal .service-card-minimal .text-warning { color: #ffc107 !important; }
.services-minimal .service-card-minimal .text-danger { color: #dc3545 !important; }
.services-minimal .service-card-minimal .text-secondary { color: #6c757d !important; }
.services-minimal .service-card-minimal .text-dark { color: #343a40 !important; }

/* New Category Styling */
.category-main-title {
  color: #222; /* Genel başlık rengi */
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
}

.category-main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px; /* Başlıktan ne kadar aşağıda olacağı */
    width: 60px; /* Çizginin genişliği */
    height: 3px; /* Çizginin kalınlığı */
    background-color: #007bff; /* Çizginin rengi */
    border-radius: 2px;
}

.category-group {
  margin-bottom: 60px; /* Her kategori grubu arasına boşluk */
}

.category-title {
  font-size: 1.8rem; /* Kategori başlığı boyutu */
  font-weight: 600;
  color: #555 !important; /* Daha yumuşak kategori başlık rengi */
  margin-bottom: 30px;
  position: relative;
  display: inline-block; /* Çizginin başlıkla aynı genişlikte olması için */
}

.category-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px; /* Başlıktan ne kadar aşağıda olacağı */
    width: 40px; /* Çizginin genişliği */
    height: 2px; /* Çizginin kalınlığı */
    background-color: #888; /* Çizginin rengi */
    border-radius: 1px;
}      



    
      /* Temel Tipografi ve Renkler */
      .blog-post {
        font-family: 'Inter', sans-serif; /* Google Fonts'tan alınan Inter fontu kullanılabilir */
        color: #333;
        background-color: #f9f9f9;
      }

      .blog-post h1, .blog-post h2, .blog-post h3 {
        font-family: 'Poppins', sans-serif; /* Başlıklar için Poppins fontu */
        color: #007bff; /* Mavi tonu */
        margin-top: 2rem;
        margin-bottom: 1rem;
      }

      .blog-post h1 {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        color: #212529; /* Daha koyu bir renk */
      }

      .blog-post h2 {
        font-size: 2rem;
      }

      .blog-post h3 {
        font-size: 1.75rem;
      }

      .blog-post p {
        font-size: 1.05rem; /* Orijinal boyut */
        line-height: 1.7;
        margin-bottom: 1rem;
      }

      /* Meta Bilgileri */
      .blog-post .post-meta {
        font-size: 0.9rem;
        color: #6c757d;
        margin-bottom: 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 15px; /* Elemanlar arası boşluk */
        justify-content: center; /* Ortalamak için */
      }

      .blog-post .post-meta span {
        display: flex;
        align-items: center;
      }

      .blog-post .post-meta i {
        margin-right: 5px;
        color: #007bff; /* İkon rengi */
      }

      .blog-post .post-meta a {
        color: #6c757d;
        text-decoration: none;
      }

      .blog-post .post-meta a:hover {
        color: #0056b3;
      }

      /* İçerik Blokları */
      .blog-post blockquote {
        background-color: #e9f5ff; /* Açık mavi arka plan */
        border-left: 5px solid #007bff; /* Mavi sol kenarlık */
        padding: 1.5rem;
        margin: 2rem 0;
        font-style: italic;
        color: #495057;
        border-radius: 5px;
      }

      .blog-post ul {
        list-style-type: disc;
        padding-left: 25px;
        margin-bottom: 1rem;
      }

      .blog-post ul li {
        margin-bottom: 0.5rem;
        line-height: 1.6;
      }

      /* Etiketler */
      .blog-post .post-tags {
        margin-top: 3rem;
        border-top: 1px solid #eee;
        padding-top: 1.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        justify-content: center; /* Ortalamak için */
      }

      .blog-post .post-tags i {
        font-size: 1.2rem;
        color: #007bff;
        margin-right: 5px;
      }

      .blog-post .post-tags .tag-item {
        background-color: #f0f8ff; /* Açık mavi etiket arka planı */
        color: #007bff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
      }

      .blog-post .post-tags .tag-item:hover {
        background-color: #007bff;
        color: #fff;
      }

      /* Responsive Ayarlamalar - p etiketi için font-size kaldırıldı */
      @media (max-width: 768px) {
        .blog-post h1 {
          font-size: 2rem;
        }
        .blog-post h2 {
          font-size: 1.75rem;
        }
        .blog-post h3 {
          font-size: 1.5rem;
        }
        /* .blog-post p {
          font-size: 1rem; ARTIK BURADA DEĞİL
        } */
        .blog-post .post-meta {
          flex-direction: column;
          gap: 10px;
        }
      }
    


  
    .flag-icon {
      font-size: 3rem;
      line-height: 1;
    }
  





   
      /* Temel Tipografi ve Renkler */
      .blog-post {
        font-family: 'Inter', sans-serif; /* Google Fonts'tan alınan Inter fontu kullanılabilir */
        color: #333;
        background-color: #f9f9f9;
      }

      .blog-post h1, .blog-post h2, .blog-post h3 {
        font-family: 'Poppins', sans-serif; /* Başlıklar için Poppins fontu */
        color: #007bff; /* Mavi tonu */
        margin-top: 2rem;
        margin-bottom: 1rem;
      }

      .blog-post h1 {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        color: #212529; /* Daha koyu bir renk */
      }

      .blog-post h2 {
        font-size: 2rem;
      }

      .blog-post h3 {
        font-size: 1.75rem;
      }

      .blog-post p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1rem;
      }

      /* Meta Bilgileri */
      .blog-post .post-meta {
        font-size: 0.9rem;
        color: #6c757d;
        margin-bottom: 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 15px; /* Elemanlar arası boşluk */
        justify-content: center; /* Ortalamak için */
      }

      .blog-post .post-meta span {
        display: flex;
        align-items: center;
      }

      .blog-post .post-meta i {
        margin-right: 5px;
        color: #007bff; /* İkon rengi */
      }

      .blog-post .post-meta a {
        color: #6c757d;
        text-decoration: none;
      }

      .blog-post .post-meta a:hover {
        color: #0056b3;
      }

      /* İçerik Blokları */
      .blog-post blockquote {
        background-color: #e9f5ff; /* Açık mavi arka plan */
        border-left: 5px solid #007bff; /* Mavi sol kenarlık */
        padding: 1.5rem;
        margin: 2rem 0;
        font-style: italic;
        color: #495057;
        border-radius: 5px;
      }

      .blog-post ul {
        list-style-type: disc;
        padding-left: 25px;
        margin-bottom: 1rem;
      }

      .blog-post ul li {
        margin-bottom: 0.5rem;
        line-height: 1.6;
      }

      /* Etiketler */
      .blog-post .post-tags {
        margin-top: 3rem;
        border-top: 1px solid #eee;
        padding-top: 1.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        justify-content: center; /* Ortalamak için */
      }

      .blog-post .post-tags i {
        font-size: 1.2rem;
        color: #007bff;
        margin-right: 5px;
      }

      .blog-post .post-tags .tag-item {
        background-color: #f0f8ff; /* Açık mavi etiket arka planı */
        color: #007bff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
      }

      .blog-post .post-tags .tag-item:hover {
        background-color: #007bff;
        color: #fff;
      }

      /* Responsive Ayarlamalar */
      @media (max-width: 768px) {
        .blog-post h1 {
          font-size: 2rem;
        }
        .blog-post h2 {
          font-size: 1.75rem;
        }
        .blog-post h3 {
          font-size: 1.5rem;
        }
        .blog-post p {
          font-size: 1rem;
        }
        .blog-post .post-meta {
          flex-direction: column;
          gap: 10px;
        }
      }

