/* Genel Stiller */
body {
  background: #2a2a2a;
  background-size: cover;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  color: #ff6600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:active,
a:focus {
  color: #ff9933;
  outline: none;
  text-decoration: none;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin: 0px 15px 30px 15px
}

/* Başlıklar ve Açıklama Yazıları */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ff6600;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  margin-bottom: 20px;
}

h2 {
  font-size: 36px;
  /* border-bottom: 2px solid #ff6600; */
  padding-bottom: 8px;
  display: inline-block;
}

h3 {
  font-size: 30px;
  /* border-bottom: 1px solid #ff6600; */
  padding-bottom: 6px;
  display: inline-block;
}

/* h4 {
  font-size: 24px;
  border-bottom: 1px solid #ff6600;
  padding-bottom: 6px;
  display: inline-block;
} */

h2 + p, h3 + p, h4 + p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* Vurgulu Metinler */
p em, p strong {
  /* color: #ff6600; */
  font-weight: bold;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  background: #333333;
  color: #fff;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: visibility 0s, opacity 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
  width: 64px;
  height: 34px;
}

.back-to-top i {
  line-height: 0;
  font-size: 20px;
}

.back-to-top:focus {
  background: #333333;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #555555;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-20px);
}

/* Header */
#header {
  height: 90px;
  transition: all 0.4s ease-in-out;
  z-index: 997;
  background: #333333;
}

#header.header-transparent {
  background: #04040485;
}

#header.header-scrolled {
  background: #333333;
  height: 70px;
  transition: all 0.4s ease-in-out;
}

#header #logo h1 {
  font-size: 36px;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }

  #header #logo img {
    max-height: 40px;
  }
}

/* Navigation Menu */
.navbar {
    padding: 0px 255px 0px 255px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 !important;
    }
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  padding: 0 2px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.4px;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -8px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
  transform: scale(1.1);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #444444;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: all 0.3s ease-in-out;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #ffffff;
}

.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: #ff6600;
}

.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #444444;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #ffffff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ff6600;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #444444;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ff6600;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/* Arama ve Google Translate Butonu */
.translate-button, .search-bar {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 10px;
}

.translate-button #google_translate_element {
  display: inline-block;
}

/* Google Translate Button Style */
#google_translate_element {
  display: inline-block;
  margin-right: 10px;
}

/* Google Translate çeviri bildirimi gizleme */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Google Translate çeviri arayüzü için stil ayarları */
.goog-te-gadget {
  font-family: "Montserrat", sans-serif !important;
  font-size: 0px !important;
  color: #ffffff !important;
}

.goog-te-gadget .goog-te-combo {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  color: #333;
  background: #ffffff;
}

.goog-te-gadget .goog-te-combo:hover {
  border-color: #ff6600;
}

/* Google Translate destek bildirimi gizleme */
.goog-logo-link {
  display: none !important;
}

.goog-te-gadget-simple {
  border: none !important;
  background-color: transparent !important;
}

.goog-te-gadget-icon {
  display: none;
}

/* Alt kısımdaki "Google Translate tarafından desteklenir" metnini gizleme */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.goog-te-gadget span {
  display: none !important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none !important;
}

.search-bar input[type="text"] {
  padding: 5px 10px;
  background: none;
  border: 1px solid #ffffff;
  border-radius: 4px;
  margin-right: 5px;
  outline: none;
  color: #ffffff;
  max-width: 100px;
}

.search-bar button {
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  background: #ff6600;
  color: white;
  cursor: pointer;
}

.search-bar button:hover {
  background: #ffa500;
}




/* Hero Section */
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") center top no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 1025px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 640px) {
  #hero {
    height: 120vh;
  }
}

#hero .hero-text {
  position: absolute;
  left: 0;
  top: 300px;
  right: 0;
  height: calc(50% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

#hero h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #ffffff;
  animation: fadeIn 1s ease-in-out;
  border-bottom: none;
  padding-bottom: 10px;
  display: inline-block;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero p {
  font-size: 24px;
  color: #cccccc;
  margin-bottom: 20px;
  padding: 0 15px;
  animation: fadeIn 1.5s ease-in-out;
}

@media (max-width: 768px) {
  #hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: all 0.5s ease-in-out;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  animation: fadeIn 2s ease-in-out;
}

#hero .btn-get-started:hover {
  color: #1a2a3a;
  background: #fff;
}

/* Sections */
section {
  overflow: hidden;
}

/* Sections Header */
.section-header .section-title {
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  /* border-bottom: 2px solid #ff6600; */
  padding-bottom: 30px;
  text-shadow: 2px 1px #0000004f;
  display: inline-block;
}

.section-header {
  text-align: center;
  padding-bottom: 20px;
  color: #ffffff;
  font-style: italic;
}


.section-divider {
  display: block;
  width: 40px;
  height: 3px;
  background: #ff6600;
  margin: 0 auto;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: #cccccc;
  text-align: center;
}

/* Section with background */
.section-bg {
  background: #2a2a2a;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0;
  
  min-height: 40px;
  margin-top: 92px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  color: #ffffff;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #999999;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* About Us Section */
#about {
  padding: 60px 0;
  overflow: hidden;
}

#about .about-img {
  height: 510px;
  overflow: hidden;
}

#about .about-img img {
  margin-left: -5px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }

  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .content {
  text-align: center;

  max-width: 1700px;
  margin: auto;
  width: 100%;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 300;
  font-size: 24px;


}


#about .about-logo-wrapper {
  position: relative;
  left: 600px; 
  margin-bottom: 20px;
}
#about .about-logo {
  position: absolute;
  max-width: 1200px; 
  animation: fly-oval 10s linear infinite;
}
@media (max-width: 1600px) {
  #about .about-logo {
    max-width: 300px; 
  }
}

@media (max-width: 1400px) {
  #about .about-logo {
    opacity: 0;
  }
}

@keyframes fly-oval {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(50px) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(90deg) translateX(50px) rotate(-90deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg) translateX(50px) rotate(-180deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(270deg) translateX(50px) rotate(-270deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(50px) rotate(-360deg);
  }
}
#about .content2 {
  background: #333333;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 300;
  font-size: 24px;


}
#about .content p {
  font-size: 18px;
}


#about .content .h2 {
  color: #ffffff;
  font-weight: 300;
  font-size: 24px;
}

#about .content h3 {
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
  font-style: italic;
  color: #cccccc;
  border-bottom: none;
}

#about .content p {
  line-height: 26px;
  color: #cccccc;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #ff6600;
}

#about .content ul {
  list-style: none;
  padding: 0;
}

#about .content ul li {
  padding-bottom: 10px;
}


/* Product Features Section */
#features {
  overflow: hidden;
  background: linear-gradient(rgba(26, 42, 58, 0.65), rgba(26, 42, 58, 0.2)), url(../img/savunmasanayii2.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
  justify-content: space-between; /* Box'lar arasındaki boşluğu ayarlamak için kullanılır */

}

#features .features-img {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 769px) {
  #features .features-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}

#features .features-img img {
  max-width: 100%;
}

#features .box {
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
  padding: 40px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #333333;
  transition: all 0.4s ease-in-out;
  color: #ffffff;
  border-radius: 15px;
  flex: 1 1 calc(33.333% - 20px); /* Box'ların genişliğini ayarlar ve aralarındaki boşluğu kontrol eder */
  margin: 10px; /* Box'lar arasındaki boşluğu ayarlar */
}
#features .icon {
  margin-bottom: 10px;
}

.more-features .section-divider {
  display: block;
  width: 140px;
  height: 3px;
  background: #ff6600;
  margin: 0 auto;
  margin-bottom: 20px;
}

#features .icon i {
  color: #ffffff;
  font-size: 55px;
  transition: 0.5s;
}

#features .icon i:before {
  background: #ff6600;
  background: linear-gradient(45deg, #ff6600 0%, #ffa500 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#features .title {
  text-shadow: 2px 0 #00000061;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 25px;
  color: #ffffff;
}

#features .title a {
  color: #ffffff;
}

#features .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Product Advanced Features Section */
#advanced-features {
  position: relative;

  overflow: hidden;
}



#advanced-features .features-row {
  padding: 60px 0 30px 0;
}

#advanced-features h2 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

#advanced-features h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  border-bottom: none;
}

#advanced-features p {
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 30px;
}

#advanced-features i {
  color: #999999;
  font-size: 64px;
  transition: 0.5s;
  float: left;
  padding: 0 15px 0px 0;
  line-height: 1;
}

#advanced-features i:before {
  background: #ff6600;
  background: linear-gradient(45deg, #ff6600 0%, #ffa500 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#advanced-features .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  /* padding: 0 0 30px 30px; */
  animation: slideInRight 1s ease-in-out;
}

#advanced-features .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 90px 40px 0;
  animation: slideInLeft 1s ease-in-out;
}

@media (max-width: 768px) {

  #advanced-features .advanced-feature-img-right,
  #advanced-features .advanced-feature-img-left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {

  #advanced-features .advanced-feature-img-right,
  #advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}
/* 
.diger-arkaplan {
  background:url(../img/Adsız-tasarım.jpg) fixed center center;
} */

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none; /* Video üzerine tıklamayı engellemek için */
}

#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#advanced-features .features-content {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6); /* Optional: Dark overlay for better text visibility */
  padding: 60px 0;
}

/* Call To Action Section */
.arkaplanalt {
  overflow: hidden;
  background: linear-gradient(rgba(26, 42, 58, 0.65), rgba(26, 42, 58, 0.2)), url(../img/sa.jpg) fixed center center;
  background-size: cover;
}
#call-to-action {

  padding: 80px 0;
}

#call-to-action .cta-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #cccccc;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: all 0.5s ease-in-out;
  margin: 10px;
  border: 2px solid #ffffff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #ff6600;
  border: 2px solid #ff6600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* More Features Section */
#more-features {
  padding: 60px 0 60px 0;
  overflow: hidden;
}

#more-features .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #333333;
  transition: all 0.4s ease-in-out;
  height: 100%;
  color: #ffffff;
}

#more-features .box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 40px rgba(73, 78, 92, 0.25);
}

#more-features .icon {
  float: left;
}

#more-features .icon i {
  color: #999999;
  font-size: 80px;
  transition: 0.5s;
  line-height: 0;
}

#more-features .icon i:before {
  background: #ff6600;
  background: linear-gradient(45deg, #ff6600 0%, #ffa500 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#more-features h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#more-features h4 a {
  color: #fff;
}

#more-features p {
  font-size: 14px;
  margin-left: 100px;
  margin-bottom: 0;
  line-height: 24px;
  color: #cccccc;
}

@media (max-width: 767px) {
  #more-features .box {
    margin-bottom: 20px;
  }

  #more-features .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }

  #more-features h4,
  #more-features p {
    margin-left: 0;
    text-align: center;
  }
}

/* Clients Section */
#clients {
  
  padding: 30px 0;

}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

/* Pricing Section */
#pricing {
  padding: 60px 0 60px 0;
  overflow: hidden;
  background: #2a2a2a;
}

#pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #333333;
  text-align: center;
  color: #ffffff;
}

#pricing h3 {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 28px;
}

#pricing h4 {
  font-size: 46px;
  color: #ff6600;
  font-weight: 300;
}

#pricing h4 sup {
  font-size: 20px;
  top: -20px;
}

#pricing h4 span {
  color: #bababa;
  font-size: 20px;
}

#pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

#pricing ul li {
  padding-bottom: 12px;
}

#pricing ul i {
  color: #ff6600;
  font-size: 18px;
  padding-right: 4px;
}

#pricing .get-started-btn {
  background: #515e61;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

#pricing .featured {
  border: 2px solid #ff6600;
}

#pricing .featured .get-started-btn {
  background: linear-gradient(45deg, #ff6600, #ffa500);
}

/* Frequently Asked Questions Section */
#faq {
  padding: 60px 0;
  overflow: hidden;
}

#faq2 {
  padding: 30px 0;
  overflow: hidden;
  background-color: rgba(26, 42, 58, 0.103);
}

#faq2 .faq-list {
  padding: 0;
  list-style: none;
}

#faq2 .faq-list li {
  border-bottom: 1px solid #4a4a4a;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#faq2 .faq-list .question {
  display: block;
  position: relative;
  font-family: #ff6600;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  padding-left: 25px;
  cursor: pointer;
  color: #ff6600;
  transition: 0.3s;
}

#faq2 .faq-list .question:hover {
  color: #ffa500;
}

#faq2 .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

#faq2 .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
  color: #cccccc;
}

#faq2 .faq-list .icon-show {
  display: none;
}

#faq2 .faq-list .collapsed {
  color: #cccccc;
}

#faq2 .faq-list .collapsed:hover {
  color: #ff6600;
}

#faq2 .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

#faq2 .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq .faq-list li {
  border-bottom: 1px solid #4a4a4a;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #ff6600;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  padding-left: 25px;
  cursor: pointer;
  color: #ff6600;
  transition: 0.3s;
}

#faq .faq-list .question:hover {
  color: #ffa500;
}

#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

#faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
  color: #cccccc;
}

#faq .faq-list .icon-show {
  display: none;
}

#faq .faq-list .collapsed {
  color: #cccccc;
}

#faq .faq-list .collapsed:hover {
  color: #ff6600;
}

#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/* Contact Section */
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
  background: #1a2a3a;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  /* text-transform: uppercase; */
  color: #ff6600;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
  margin: 15px 15px 0px 0px;

}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  background: #333333;
  color: #ff6600;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #ff6600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contact .social-links a i {
  line-height: 0;
}

#contact .social-links a:hover {
  background: #ff6600;
  color: #fff;
}

#contact .info {
  color: #cccccc;
}

#contact .info i {
  font-size: 32px;
  color: #ff6600;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 0 42px;
  line-height: 28px;
  font-size: 14px;
  margin-bottom: 0px !important;
}

.address-item {
  padding: 15px;

  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.address-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.address-item i {
  font-size: 24px;
  margin-bottom: 10px;
  color: #5cb874;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  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 #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 0;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.151);
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: #1a2a3a;
}

#contact .php-email-form button[type=submit] {
  background: linear-gradient(45deg, #ff6600, #ffa500);
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
}

#contact .php-email-form button[type=submit]:hover {
  cursor: pointer;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Footer */
#footer {
  background: #333333;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #cccccc;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
  color: #888;
}

#footer .footer-links a {
  color: #cccccc;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #ff6600;
}




.partners {
  padding: 3em 0;
  text-align: center;
  /* background: linear-gradient(rgba(26, 42, 58, 0.65), rgba(26, 42, 58, 0.2)), url(../img/sa.jpg) fixed center center; */
  overflow: hidden;
  position: relative;
}

.section-title {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 20px;
}

.section-divider {
  width: 100px;
  height: 3px;
  background-color: #ff6600;
  margin: 0 auto 20px;
}

.partner-logos-container {
  overflow: hidden;
  position: relative;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.partner-logo {
  flex: 1 1 calc(20% - 20px); /* Adjust width for responsive */
  box-sizing: border-box;
  padding: 10px;
  opacity: 0;
  margin: auto;
  height: 100%;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid #0098fd;
  background-color: transparent;
}

.carousel-item.active .partner-logo {
  opacity: 1;
  margin-top: 15px;
  max-width: 300px;
}

.partner-logo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-border {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 15px;
  background-color: #fff;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease-in-out;
}

.partner-logo .partner-info {
  margin-top: 10px;
  text-align: center;
}

.partner-logo .partner-info p {
  font-size: 14px;
  color: #ffffff;
}

.partner-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}

.partner-buttons .dot {
  height: 1em;
  width: 1em;
  margin: 0 0.3em;
  background-color: #3A596D;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.partner-buttons .dot.active {
  background-color: #0099FF;
}

.partner-logo:hover {
  background-color: #0098fd;
  transform: translateY(-15px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .partner-logo {
    flex: 1 1 calc(25% - 20px); /* Adjust width for larger tablets */
  }
}

@media (max-width: 992px) {
  .partner-logo {
    flex: 1 1 calc(33.33% - 20px); /* Adjust width for tablets */
  }
}

@media (max-width: 768px) {
  .partner-logo {
    flex: 1 1 calc(50% - 20px); /* Adjust width for mobile */
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .partner-logo {
    flex: 1 1 100%; /* Adjust width for small mobile */
  }

  .section-title {
    font-size: 24px;
  }
}


.blogs {
  padding: 3em 0;
  text-align: center;
  /* background: linear-gradient(rgba(26, 42, 58, 0.65), rgba(26, 42, 58, 0.2)), url(../img/sa.jpg) fixed center center; */
  overflow: hidden;
  position: relative;
}

.section-title {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 20px;
}

.section-divider {
  width: 100px;
  height: 3px;
  background-color: #ff6600;
  margin: 0 auto 20px;
}

.blog-logos-container {
  overflow: hidden;
  position: relative;
}

.blog-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.blog-logo {
  flex: 1 1 calc(20% - 20px); /* Adjust width for responsive */
  box-sizing: border-box;
  padding: 10px;
  opacity: 0;
  margin: auto;
  height: 100%;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid #0098fd;
  background-color: transparent;
}

.carousel-item2.active .blog-logo {
  opacity: 1;
  margin-top: 15px;
  max-width: 300px;
}

.blog-logo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-border {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 15px;
  background-color: #fff;
}

.blog-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease-in-out;
}

.blog-logo .blog-info {
  margin-top: 10px;
  text-align: center;
}

.blog-logo .blog-info p {
  font-size: 14px;
  color: #ffffff;
}

.blog-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}

.blog-buttons .dot2 {
  height: 1em;
  width: 1em;
  margin: 0 0.3em;
  background-color: #3A596D;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blog-buttons .dot2.active {
  background-color: #0099FF;
}

.blog-logo:hover {
  background-color: #0098fd;
  transform: translateY(-15px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .blog-logo {
    flex: 1 1 calc(25% - 20px); /* Adjust width for larger tablets */
  }
}

@media (max-width: 992px) {
  .blog-logo {
    flex: 1 1 calc(33.33% - 20px); /* Adjust width for tablets */
  }
}

@media (max-width: 768px) {
  .blog-logo {
    flex: 1 1 calc(50% - 20px); /* Adjust width for mobile */
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .blog-logo {
    flex: 1 1 100%; /* Adjust width for small mobile */
  }

  .section-title {
    font-size: 24px;
  }
}


.search-bar input::placeholder {
  color: #ffffff; /* İstediğiniz renk kodunu buraya ekleyin */
}