/* Genel Stiller */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin: 0; /* Eklenen: Body'deki varsayılan marjı kaldır */
    padding: 0; /* Eklenen: Body'deki varsayılan padding'i kaldır */
}

/* Container Stilleri (Bootstrap Container'ı gibi) */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
/* Responsive Container için */
@media (min-width: 576px) {
    .container { max-width: 540px; }
}
@media (min-width: 768px) {
    .container { max-width: 720px; }
}
@media (min-width: 992px) {
    .container { max-width: 960px; }
}
@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}
@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}


/* Row Stilleri (Bootstrap Row'u gibi) */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* Kolon Stilleri (Bootstrap Kolonları gibi - Örnek) */
.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 50%;
    max-width: 50%;
}

/*Responsive düzenleme eklendi*/
@media (max-width: 768px) {
    .col-md-6{
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Slider Stilleri */
.carousel-item {
  position: relative;
  overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: auto; /* Yüksekliği otomatik ayarla */
     object-fit: cover; /* Resimleri kapsayacak şekilde yerleştir */
     display: block; /* Resimleri blok seviyesine getir */
}


/* Slider Yükseklik Ayarları (Medya Sorguları) */
@media (min-width: 1024px) {
    #desktopCarousel .carousel-item img {
        height: 500px; /* Masaüstü için yükseklik */
    }
}

@media (max-width: 1023px) {
    #mobileCarousel .carousel-item img {
       height: auto;  /* mobil için otomatik yükseklik */
       object-fit: contain; /* Resimlerin oranını koruyarak sığdır */

    }
     .hero-section #mobileCarousel .carousel-item img {
        object-fit: cover;
    }
}

/* Top header area start */
.top-header {
    background-color: #0c2a65;
    padding: 10px 0; /* üst başlık için padding*/
    
}

.logos img {
    height: 30px;
    margin: 0 15px;
}
.top-header-title {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin: 0;
    text-align: center;

}
/* Top header area end */

/* Navbar start */
.navbar {
    padding: 15px 0; /* navbar padding*/
}

.navbar-brand img {
    height: 75px;
}

.navbar .nav-link {
    color: #333;
    margin-right: 15px;
    font-size: 14px;
    font-weight: 600;
}
.navbar .whatsapp-icon svg {
    fill: #25d366; /* WhatsApp'ın yeşil rengi */
    height: 20px; /* SVG yüksekliği */
    width: 20px; /* SVG genişliği */
    display:inline;
}
.navbar .dropdown-menu a {
    font-size: 14px;
    font-weight: 600;
}

.navbar .contact-phone {
    background-color: #0c2a65;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border: 0;
    border-radius: 5px;
}

.navbar .contact-phone:hover {
    background-color: #183f8f;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #0c2a65;
}

.navbar-light .navbar-toggler {
    border: 0;
}

.navbar-light .navbar-toggler:focus {
    box-shadow: none;
}

/* Navbar end */

/* Hero Section start */
.hero-section {
    position: relative;
}

.hero-section .carousel-indicators{
     bottom: 20px;
}
 /* Hero Section end */

/* Section title start */
/* Section title start */
.section-title {
    position: relative !important;
    margin-bottom: 30px !important;
    display: block !important;
    align-items: normal !important;
    justify-content: normal !important;
    text-align: center !important;
}
.section-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ccc;
    z-index: 1;
}
.section-title span {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 0 15px;
    font-weight: 600;
    display: inline-block !important;
}

.section-title .title-line {
    display: none !important;
}

.section-title .owl-nav-buttons {
    display: none !important;
}
/* Daha güçlü selector */
body .section-title {
    display: block !important;
    align-items: normal !important;
    justify-content: normal !important;
    text-align: center !important;
}

body .section-title span {
    display: inline-block !important;
}
/* Section title end */



/* Projects section start */
.projects-section .owl-carousel .item {
    padding: 0 10px;
}
.projects-section .owl-carousel .owl-nav{
     display:none;
}
.projects-section .owl-carousel .owl-nav button {
   background-color: rgba(255,255,255,0.5);
    color:#000;
    font-size:35px;
    border:0;
    padding:0px 20px;
    cursor:pointer;
    transition: all 0.3s ease-in-out;
    margin: 0 15px; /* added margin */
}
.projects-section .owl-carousel .owl-nav button:hover {
    background-color:rgba(255,255,255,1);
}
.projects-section .project-card {
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
}

.projects-section .project-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.projects-section .project-card .card-body {
    text-align: center;
}

.projects-section .project-card .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.projects-section .project-card .btn-secondary {
    background-color: #0c2a65;
    color: #fff;
    border: 0;
    padding: 8px 15px;
     border-radius: 5px;
}

.projects-section .project-card .btn-secondary:hover {
    background-color: #183f8f;
}

/* Projects section end */

/* Blog section start */
.blog-section .owl-carousel .item {
    padding: 0 10px;
}
.blog-section .owl-carousel .owl-nav{
     display:none;
}
.blog-section .owl-carousel .owl-nav button {
   background-color: rgba(255,255,255,0.5);
    color:#000;
    font-size:35px;
    border:0;
    padding:0px 20px;
    cursor:pointer;
    transition: all 0.3s ease-in-out;
    margin: 0 15px; /* added margin */
}
.blog-section .owl-carousel .owl-nav button:hover {
    background-color:rgba(255,255,255,1);
}

.blog-section .blog-card {
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
}

.blog-section .blog-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.blog-section .blog-card .card-body {
    text-align: center;
}

.blog-section .blog-card .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}
.blog-section .blog-card .blog-date{
      margin-bottom: 15px;
     font-size: 14px;
    color: #777;
}
.blog-section .blog-card .btn-secondary {
    background-color: #0c2a65;
    color: #fff;
    border: 0;
    padding: 8px 15px;
    border-radius: 5px;
}

.blog-section .blog-card .btn-secondary:hover {
    background-color: #183f8f;
}

/* Blog section end */

/* Footer section start */
footer.site-footer {
    background-color: #f8f9fa;
    padding-top: 5px;
    padding-bottom: 0px; /* Düzenlendi */
    margin-bottom: 0; /* Düzenlendi */
    border-top: 1px solid #ececec;
}

footer.site-footer .footer-top{
    background-color: #f5f5f7;
      padding-bottom: 0px;  /* Düzenlendi */
    margin-bottom: 0; /* Düzenlendi */
}

.footer-logo {
    width: 180px;
    margin-bottom: 0px; /* Düzenlendi */
    margin-top: 0; /* Gerekiyorsa ekle */
}

.widget.widget_services {
        margin-top: 0; /* Gerekiyorsa ekle */
    }
 .widget.widget_services img{
          margin-top:0;
          padding-top: 0;
          margin-bottom: 0;
          padding-bottom: 0;
    }
.archi-footer-2 .widget.widget_services h5 {
  font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

footer ul {
    padding: 0;
    list-style: none;
    margin-bottom: 20px;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
}

footer ul li a:hover {
    color: #0c2a65;
}

.social-media {
        list-style-type: none;
        display: flex;
        gap: 15px;
        justify-content: flex-end;

}

.social-media li i {
    font-size: 24px;
}

/* Footer section end */


/* Floating Whatsapp button start */
.wp {
    position: fixed;
    right: 15px;
    bottom: 15px;
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50%;
    z-index: 1000;
    display: none; /* initially hidden */
}

.wp a {
    color: #fff;
    text-decoration: none;
}

.wp i {
    font-size: 24px;
}

/* Floating Whatsapp button end */

/* Custom Style */

.archi-footer-2.site-footer .footer-top .widget.widget_services ul li:first-child {
    padding-top:6px;
}
.owl-dots{
     display:none;
}
/* FAQ Section Start */
.faq-section .section-title{
  margin-bottom: 40px;
    text-align: center;
}
.faq-section .section-title span {
  position: relative;
    z-index: 2;
    background-color: #fff;
     padding: 0 15px;
      font-weight: 600;
}
.faq-section .section-title::before {
 content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ccc;
    z-index: 1;
}
.faq-section .accordion-item {
     border: 0;
    border-bottom: 1px solid #ececec;
    margin-bottom: 10px;
    box-shadow: none;
}
.faq-section .accordion-button {
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background-color: transparent;
    box-shadow: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #0c2a65;
}

.faq-section .accordion-button:focus {
    border: 0;
     box-shadow: none;
}
.faq-section .accordion-button::after {
    display: none;
}
.faq-section .accordion-button .faq-plus::before {
    content: '+';
  font-size: 22px;
    font-weight: 700;
    color: #ff0000; /* Kırmızı artı işareti */
     margin-right: 10px;
      transition: transform 0.3s ease;
}
.faq-section .accordion-button.collapsed .faq-plus::before {
    transform: rotate(0deg);
}
.faq-section .accordion-button:not(.collapsed) .faq-plus::before {
    transform: rotate(45deg);
}
.faq-section .accordion-body {
    padding: 1rem 0;
    color: #555;
}

/* FAQ Section End */

/* Blog List Section Start */
.blog-list-section .section-title{
    margin-bottom: 30px;
     display: flex;
    align-items: center;
}
.blog-list-section .section-title span {
   position: relative;
    z-index: 2;
    background-color: #fff;
     padding: 0 15px;
      font-weight: 600;
}
.blog-list-section .section-title::before {
  content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ccc;
    z-index: 1;
}
.blog-list-section .section-title .all-blog-btn {
    background-color: #0c2a65;
    color: #fff;
    border: 0;
    padding: 8px 15px;
    border-radius: 5px;
}
.blog-list-section .section-title .all-blog-btn:hover{
    background-color: #183f8f;
}
.blog-list-section .blog-card {
     border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
}

.blog-list-section .blog-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.blog-list-section .blog-card .card-body {
    text-align: left;
    padding: 15px;
}

.blog-list-section .blog-card .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}
.blog-list-section .blog-card .blog-date{
      margin-bottom: 15px;
     font-size: 14px;
    color: #777;
}
.blog-list-section .pagination .page-link{
     color: #333;
     border: 1px solid #ececec;
}
.blog-list-section .pagination .page-item.active .page-link{
      background-color: #0c2a65;
      color:#fff;
      border-color: #0c2a65;
}
/* Blog List Section End */
/* Breadcrumb Banner Start */
.breadcrumb-banner {
    background-color: #f0f0f0;
    background-image: url('https://csknteknik.com/wp-content/uploads/2025/10/bread.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.breadcrumb-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.breadcrumb-banner .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-banner h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    /* Responsive font size */
    @media (max-width: 768px) {
        font-size: 2.5rem; /* Smaller font size for tablets */
    }
    @media (max-width: 576px) {
         font-size: 2rem;/* Smaller font size for phones */
    }
}

.breadcrumb-banner .breadcrumb {
    color: #fff;
    font-size: 1rem;
    display: inline-block;
}

.breadcrumb-banner .breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-banner .breadcrumb span {
    color: #fff;
}

/* Responsive padding for smaller screens */
@media (max-width: 768px) {
  .breadcrumb-banner {
    padding: 60px 0; /* Less padding for tablets */
    }
}
@media (max-width: 576px) {
 .breadcrumb-banner {
    padding: 40px 0; /* Less padding for phones */
    }
}

/* Breadcrumb Banner End */
/* Blog Detail Section Start */
.blog-detail-section {
    font-family: 'Poppins', sans-serif;
}
.blog-detail-section .blog-detail-content h1,
.blog-detail-section .blog-detail-content h2,
.blog-detail-section .blog-detail-content h3,
.blog-detail-section .blog-detail-content h4,
.blog-detail-section .blog-detail-content h5,
.blog-detail-section .blog-detail-content h6 {
    color: #0c2a65; /* Tema rengi (mavi) */
    margin-bottom: 10px;
    margin-top: 10px;
}
.blog-detail-section .blog-detail-content h1{
    font-size: 2rem;
}
.blog-detail-section .blog-detail-content h2{
      font-size: 1.8rem;
}
.blog-detail-section .blog-detail-content h3{
       font-size: 1.6rem;
}
.blog-detail-section .blog-detail-content h4{
         font-size: 1.4rem;
}
.blog-detail-section .blog-detail-content h5{
           font-size: 1.2rem;
}
.blog-detail-section .blog-detail-content h6{
            font-size: 1rem;
}

.blog-detail-section .blog-detail-content p {
    font-size: 13px;
     color: #333;
    line-height: 1.8;
      margin-bottom: 15px;

}
.blog-detail-section .blog-detail-content  h1 + p,
.blog-detail-section .blog-detail-content  h2 + p,
.blog-detail-section .blog-detail-content  h3 + p,
.blog-detail-section .blog-detail-content  h4 + p,
.blog-detail-section .blog-detail-content  h5 + p,
.blog-detail-section .blog-detail-content  h6 + p {
    margin-top: 3px;
}


.blog-detail-section .blog-detail-content .custom-blockquote {
   border-left: 5px solid #0c2a65; /* Tema renginde sol kenarlık */
    padding: 10px 20px;
    font-style: italic;
    color: #555;
     margin-top: 20px;
       margin-bottom: 20px;

    background-color: #f9f9f9;
}
.blog-detail-section .recent-blogs h5{
     margin-bottom: 20px;
     font-weight: 600;
     font-size: 1.2rem;
}
.blog-detail-section .recent-blogs ul {
    padding: 0;
    list-style: none;
}
.blog-detail-section .recent-blogs ul li {
    margin-bottom: 8px;
}

.blog-detail-section .recent-blogs ul li a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
}

.blog-detail-section .recent-blogs ul li a:hover {
    color: #0c2a65;
}

.blog-detail-content > p {
	font-size: 15px !important;
    color: #333 !important;
    line-height: 1.8 !important;
    margin-bottom: 15px !important; 
	> strong{
	color: #0c2a65 !important;
    margin-bottom: 10px !important;
    margin-top: 10px !important;
		
	}
	
}

/* Blog Detail Section End */

/* About Us Section Start */
.about-us-section .section-title-about{
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: bold;
}
.about-us-section .about-item {
    margin-bottom: 20px;
}

.about-us-section .about-item h3 {
     font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.about-us-section .about-item p {
    font-size: 13px;
      color: #555;
    line-height: 1.6;
}
/* About Us Section End */

/* References Section Start */
.references-section .section-title {
    margin-bottom: 30px;
    text-align: center;
}
.references-section .section-title span {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 0 15px;
    font-weight: 600;
}
.references-section .section-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ccc;
    z-index: 1;
}
.references-section .reference-item {
    text-align: center;
    margin-bottom: 15px;
    border: 1px solid #eee; /* Kutu kenarlığı */
    padding: 15px; /* Kutu içi boşluk */
    border-radius: 8px; /* Köşeleri yuvarlak yapma */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Kutu gölgesi */
    transition: all 0.3s ease;
    height: 100%; /* Eşit yükseklik için */
    display: flex; /* Flexbox ile içerik dikey hizalama */
    flex-direction: column; /* İçeriği dikey sırala */
    justify-content: center; /* İçeriği dikey ortala */
}

.references-section .reference-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Hover efekti */
}

.references-section .reference-item img {
    display: block;
    margin: 0 auto 10px; /* Logo resmi ortala ve alt boşluk ayarla */
    max-width: 100%; /* Resmin kutuyu aşmasını engelle */
    height: 120px;
     object-fit: contain; /* Resim boyutunu koru, sığdır */

}
.references-section .reference-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
     color: #555;
     margin: 0;
}
/* References Section End */

/* Contact Section Start */
.contact-section {
  font-family: 'Poppins', sans-serif;
}
.contact-section .contact-info{
    background-color: #f8f9fa;
    padding: 20px;
     border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact-section .contact-info .contact-item .contact-icon{
    margin-right: 15px;
     width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;

}
.contact-section .contact-info .contact-item .contact-icon svg{
    width: 20px;
    height: 20px;
    fill: #0c2a65;
}
.contact-section .contact-info .contact-item h5{
    font-size: 1.1rem;
    font-weight: 600;
     color: #333;
}

.contact-section .contact-info .contact-item p {
    font-size: 14px;
     color: #555;
     margin: 0;
}
.contact-section .contact-form {
   padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-form .contact-form-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: left;
}
.contact-section .contact-form .form-control {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
}
.contact-section .contact-form .form-control:focus{
     outline: none;
    border-color: #0c2a65;
     box-shadow: none;
}
.contact-section .contact-form .btn-primary {
    background-color: #0c2a65;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    border-radius: 5px;
}
.contact-section .contact-form .btn-primary:hover {
    background-color: #183f8f;
}

.contact-section .contact-form .form-check-input{
    margin-right: 5px;
}
.contact-section .contact-form .form-check-label{
    font-size: 14px;
     color: #555;
}
/* Contact Section End */

/* Anasayfa Ana Bant (Homepage Banner) */
.homepage-banner {
    padding: 60px 0;
    font-family: 'Poppins', sans-serif; /* Örnek bir font, fontu değiştirebilirsiniz. */
}

.homepage-banner .banner-title {
  font-size: 3rem; /* Başlık büyük font boyutu */
    font-weight: 700;
  line-height: 1.2; /* Daha iyi satır aralığı */
    margin-bottom: 20px;
    color: #333;
}

.homepage-banner .banner-description {
  font-size: 1rem;
   line-height: 1.6; /* Metin satır aralığı */
    color: #555;
}

.homepage-banner .banner-services {
    list-style: none;
    padding: 0;
}

.homepage-banner .banner-services li {
    font-size: 1rem; /* Liste elemanları font boyutu */
     margin-bottom: 20px; /* Aralığı artırdım */
     color: #555;
     display: flex;
      align-items: center;
}
.homepage-banner .banner-services li svg {
     width: 20px; /* SVG ikon boyutunu ayarladım */
    height: 20px; /* SVG ikon boyutunu ayarladım */
    fill: #1abc9c;
    margin-right: 8px; /* ikon ve yazı arasına biraz boşluk verdim */

}


/*Responsive düzenleme eklendi*/
@media (max-width: 768px) {

    .homepage-banner .banner-title{
         font-size: 2.5rem;
        text-align: center;

    }
      .homepage-banner .banner-description{
          text-align: center;
      }
}