/*
  Theme Name: NewBiz
  Theme URL: https://bootstrapmade.com/newbiz-bootstrap-business-template/
  Author: BootstrapMade.com
  License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

/* Modern Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Merriweather:wght@700&family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* CSS Custom Properties for Modern Color Palette */
:root {
  /* Primary Color System */
  --primary-blue: #003d82;
  --secondary-blue: #0066cc;
  --accent-blue: #4a90e2;
  --dark-blue: #003D7A;
  --light-blue: #E3F2FD;
  
  /* Accent Colors */
  --accent-orange: #85C900;
  --success-green: #28a745;
  
  /* Neutral Colors */
  --text-dark: #1a1a1a;
  --text-gray: #4a4a4a;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-light: #e1e4e8;
  
  /* Legacy Support */
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  --white: #FFFFFF;
  
  /* Effects */
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-heavy: rgba(0, 0, 0, 0.25);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
}

/* Global Text Selection Reset */
* {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

/* Content Text Selection */
.sayfa_icerik,
.sayfa_icerik p,
.sayfa_icerik h1,
.sayfa_icerik h2,
.sayfa_icerik h3,
.sayfa_icerik h4,
.sayfa_icerik h5,
.sayfa_icerik h6,
.sayfa_icerik span:not(.btn):not(.social-links *),
.sayfa_icerik div:not(.btn):not(.social-links *),
.sayfa_icerik td,
.sayfa_icerik th,
.sayfa_icerik table {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Footer Text Areas - Only Text Content */
.footer-about p,
.footer-company .company-description,
.footer-bottom .copyright,
.contact-details span,
.contact-details strong {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Navigation and Interactive Elements - No Selection */
button, 
.btn, 
.mobile-nav-toggle, 
.back-to-top, 
.social-links a,
.social-links-modern a,
nav a,
.main-nav a,
.mobile-nav a,
.navbar a,
input[type="submit"],
input[type="button"],
.footer-links a,
.footer-column a,
a[href] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

/* Content Links - Can Be Selected */
.sayfa_icerik a {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  cursor: pointer;
}

body {
  background: var(--white);
  color: var(--dark-gray);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 16px;
  scroll-behavior: smooth;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

a {
  color: var(--primary-blue);
  transition: var(--transition-smooth);
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: var(--accent-orange);
  outline: none;
  text-decoration: none;
  transform: translateY(-1px);
}

p {
  padding: 0;
  margin: 0 0 24px 0;
  color: var(--medium-gray);
  font-size: 16px;
  line-height: 1.7;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  cursor: text;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 0 0 24px 0;
  padding: 0;
  color: var(--dark-blue);
  line-height: 1.3;
  letter-spacing: -0.02em;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  cursor: text;
}

/* Page Hero Özel Yazı Stilleri - Güçlü Override */
.page-hero,
.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero h4,
.page-hero h5,
.page-hero h6,
.page-hero p,
.page-hero span,
.page-hero div {
  color: white !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4) !important;
}

.page-hero h1 {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.75rem; font-weight: 600; }
h3 { font-size: 2.25rem; font-weight: 600; }
h4 { font-size: 1.75rem; font-weight: 500; }
h5 { font-size: 1.25rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

/* Responsive Typography */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }
  body { font-size: 15px; }
}

/* Modern Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: var(--primary-blue);
  color: var(--white);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 1;
  font-size: 18px;
  border-radius: var(--border-radius);
  right: 20px;
  bottom: 20px;
  transition: var(--transition-smooth);
  z-index: 11;
  box-shadow: var(--shadow-medium);
  cursor: pointer;
}

.back-to-top:hover {
  background: var(--accent-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.back-to-top i {
  padding-top: 14px;
  color: var(--white);
  transition: var(--transition-smooth);
}

/* Modern Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  width: 60px;
  height: 60px;
  border: 4px solid var(--light-blue);
  border-top: 4px solid var(--primary-blue);
  border-radius: 50%;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Top Bar Responsive Styles
--------------------------------------------------------------*/

/* Top bar normal gösterim */
.top-bar {
  background: var(--primary-blue, #027aa7) !important;
  color: white !important;
  padding: 8px 0 !important;
  font-size: 14px !important;
  display: block !important;
  transition: var(--transition-smooth);
}

/* Mobile responsive top bar - Küçült */
@media (max-width: 991px) {
  #header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85px;
    padding: 10px 15px;
  }

  #header .logo {
    float: none;
    align-self: center;
  }

  #header {
    padding: 15px 0;
    min-height: 85px;
  }

  #header.header-scrolled {
    padding: 10px 0;
    min-height: 70px;
  }

  #header .logo {
    display: block; /* Logoyu her zaman göster */
  }

  #header.header-scrolled .logo {
    display: block; /* Scrolled header'da logoyu göster */
  }

  #header.header-scrolled .logo img {
    max-height: 45px !important; /* Scrolled header'da logoyu küçült */
  }

  #header.header-scrolled .mobile-nav-toggle {
    position: static; /* Butonun pozisyonunu düzelt */
    margin: 0;
  }

  /* Hamburger menü hizalama düzeltmesi */
  .mobile-nav-toggle {
    position: static;
    align-self: center;
    margin: 0;
  }
  
  /* Bazı span'ları gizle */
  .top-bar div:first-child span:nth-child(3) {
    display: none !important; /* Çalışma saatlerini gizle */
  }
}

/* Mobile responsive top bar - Sadece telefon ve mail göster */
@media (max-width: 768px) {
  .top-bar {
    display: block !important;
    padding: 10px 0 !important;
    font-size: 13px !important;
  }
  
  .header-spacer {
    height: 120px; /* Çok küçük ekranlar için boşluk */
  }
  
  #header .logo img {
    max-height: 65px;
    margin: 10px 0;
  }
  
  /* Ana container içindeki ilk div - ana flex container */
  .top-bar .container > div {
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  /* Sol div - telefon, email, saat içeren */
  .top-bar .container > div > div:first-child {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 10px !important;
  }
  
  /* Çalışma saatlerini mobilde gizle (3. span) */
  .top-bar .container > div > div:first-child span:nth-child(3) {
    display: none !important;
  }
  
  /* Sağdaki ISO bilgisini mobilde gizle */
  .top-bar .container > div > div:last-child {
    display: none !important;
  }
  
  /* Telefon solda kalsın */
  .top-bar .container > div > div:first-child span:first-child {
    order: 1;
  }
  
  /* Mail sağda olsun */
  .top-bar .container > div > div:first-child span:nth-child(2) {
    order: 2;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: auto;
  min-height: 90px;
  transition: var(--transition-smooth);
  z-index: 997;
  padding: 18px 0;
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: block;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

#header.fixed-top {
  position: fixed;
  top: 0;
}

/* Top bar ile birlikte scroll yapıldığında */
body:not(.scrolled) #header {
  top: 30px; /* Top bar yüksekliği kadar aşağıda başla */
}

body.scrolled #header {
  top: 0; /* Scroll yapılınca en üste yapış */
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

body.scrolled .top-bar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.top-bar {
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
}

#header.header-scrolled,
#header.header-pages {
  height: 75px;
  padding: 10px 0;
  box-shadow: var(--shadow-medium);
}

#header .logo h1 {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: var(--dark-blue);
  text-decoration: none;
  transition: var(--transition-smooth);
}

#header .logo h1 a:hover {
  color: var(--primary-blue);
  transform: none;
}

#header .logo img {
  padding: 0;
  margin: 8px 0;
  max-height: 70px;
  transition: var(--transition-smooth);
  vertical-align: middle;
}

#header .logo img:hover {
  transform: scale(1.02);
}

.main-pages {
  margin-top: 75px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  position: relative;
  background: url("../img/intro-bg.png") center bottom no-repeat;
  background-size: cover;
  padding: 185px 0 180px 0;
}

#intro .intro-img {
  width: 50%;
  float: right;
}

#intro .intro-info {
  width: 50%;
  float: left;
}

#intro .intro-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

#intro .intro-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #027aa7;
  border: 2px solid #027aa7;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #027aa7;
  border-color: #027aa7;
  color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  font-family: "Poppins", sans-serif;
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  border-right: 1px solid var(--light-gray);
}

.main-nav > ul > li:last-child {
  border-right: none;
}

.main-nav a {
  display: block;
  position: relative;
  color: var(--dark-blue);
  padding: 10px 12px;
  transition: var(--transition-smooth);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  border-radius: 6px;
  margin: 0 1px;
  line-height: 1.5;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: var(--accent-orange);
  background: var(--light-blue);
  text-decoration: none;
  transform: translateY(-1px);
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 12px 0;
  background: var(--white);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  min-width: 220px;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: calc(100% + 5px);
  visibility: visible;
}

.main-nav .drop-down li {
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 12px 20px;
  font-size: 14px;
  color: var(--medium-gray);
  border-radius: 6px;
  margin: 2px 8px;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: var(--primary-blue);
  background: var(--light-blue);
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 8px;
  transition: var(--transition-smooth);
}

.main-nav .drop-down:hover > a:after {
  transform: rotate(180deg);
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 10px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 40px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -280px;
  width: 280px;
  padding: 20px 0;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: var(--white);
  padding: 12px 25px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: var(--transition-smooth);
  border-radius: 8px;
  margin: 3px 15px;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: var(--accent-orange);
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transform: translateX(5px);
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 20px;
  transition: var(--transition-smooth);
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
  transform: rotate(180deg);
}

.mobile-nav .drop-down > a {
  padding-right: 50px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 5px 15px;
}

.mobile-nav .drop-down li {
  padding-left: 15px;
}

/* Mobile Nav Toggle - Bootstrap Uyumlu */
.mobile-nav-toggle {
  position: static;
  z-index: 9998;
  border: 0;
  background: var(--primary-blue);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  transition: var(--transition-smooth);
  outline: none !important;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  /* Bootstrap d-lg-none class ile kontrol ediliyor */
}

/* Smaller screens - hamburger menü hizalama */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    /* top ve right değerlerini kaldırdık - flexbox ile hizalanıyor */
    position: static;
    align-self: center;
  }
  
  #header .container {
    min-height: 60px; /* Küçük ekranlarda header yüksekliğini azalt */
  }
}

.mobile-nav-toggle:hover {
  background: var(--accent-orange);
  transform: scale(1.05);
}

.mobile-nav-toggle i {
  /* line-height: 44px; */ /* Flexbox ile ortalandığı için kaldırıldı */
  transition: var(--transition-smooth);
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  overflow: hidden;
  display: none;
  transition: var(--transition-smooth);
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  background: var(--accent-orange);
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Modern Sections Header
--------------------------------*/

.section-header {
  margin-bottom: 80px;
  position: relative;
}

.section-header h3 {
  font-size: 2.5rem;
  color: var(--dark-blue);
  text-align: center;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.section-header h3:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header p {
  text-align: center;
  margin: 20px auto 0;
  font-size: 18px;
  color: var(--medium-gray);
  width: 70%;
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 768px) {
  .section-header h3 {
    font-size: 2rem;
  }
  .section-header p {
    width: 90%;
    font-size: 16px;
  }
  .section-header {
    margin-bottom: 50px;
  }
}

/* Modern Section with background
--------------------------------*/

.section-bg {
  background: var(--light-blue);
  position: relative;
}

.section-bg:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--light-blue) 0%, rgba(255, 255, 255, 0.8) 100%);
  pointer-events: none;
}

/* About Us Section
--------------------------------*/

#about {
  background: #fff;
  padding: 60px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #027aa7;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #027aa7;
  font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
  background: #027aa7;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

/* Services Section
--------------------------------*/

#services {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#services .icon {
  position: absolute;
  left: -10px;
  top: calc(50% - 32px);
}

#services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #027aa7;
}

#services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

#why-us {
  padding: 40px 0;
  background: #027aa7;
}

#why-us .section-header {
  margin-bottom: 40px;
}

#why-us .section-header h3,
#why-us .section-header p {
  color: #fff;
}

#why-us .section-header h3 {
  font-size: 36px;
  font-weight: 500;
  position: relative;
  margin-bottom: 20px;
}

#why-us .section-header h3:after {
  display: none;
}

#why-us .card {
  background: #004965;
  border-color: #0083b4;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#why-us .card:hover {
  background: #002a3a;
  border-color: #0083b4;
}

#why-us .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#why-us .card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

#why-us .card p {
  font-size: 14px;
  color: #d8eafe;
  margin-bottom: 15px;
  line-height: 1.5;
}

#why-us .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #017aa7 solid 2px;
  text-decoration: none;
}

#why-us .card .readmore:hover {
  border-bottom: #fff solid 2px;
  text-decoration: none;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}

/* Portfolio Section
--------------------------------*/

#portfolio {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #027aa7;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #027aa7;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #027aa7;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #027aa7;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #3395ff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #003166;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/* Testimonials Section
--------------------------------*/

#testimonials {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #027aa7;
}

/* Team Section
--------------------------------*/

#team {
  background: #fff;
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

#team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 62, 128, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #027aa7;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Clients Section
--------------------------------*/

#clients {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients .client-logo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}

/* Contact Section - Corporate Style
--------------------------------*/

#contact {
  background: #f8f9fa;
  padding: 80px 0;
  position: relative;
}

#contact:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(2, 122, 167, 0.02) 0%, rgba(255, 255, 255, 0.8) 100%);
}

#contact .container {
  position: relative;
  z-index: 2;
}

#contact .section-header {
  margin-bottom: 60px;
}

#contact .section-header h3 {
  color: #027aa7;
  font-size: 36px;
  font-weight: 600;
}

#contact .section-header p {
  font-size: 16px;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

#contact .contact-about {
  margin-bottom: 40px;
}

#contact .contact-about h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #027aa7;
  text-transform: none;
  letter-spacing: normal;
}

#contact .contact-about p {
  font-size: 15px;
  line-height: 1.7;
  color: #6c757d;
  margin-bottom: 25px;
}

#contact .info {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  border-top: 4px solid #027aa7;
}

#contact .info i {
  font-size: 28px;
  color: #027aa7;
  float: left;
  line-height: 1.2;
  margin-top: 4px;
}

#contact .info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 10px 50px;
  font-family: "Montserrat", sans-serif;
}

#contact .info p {
  padding: 0;
  margin-left: 50px;
  line-height: 1.6;
  font-size: 14px;
  color: #6c757d;
}

#contact .form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #86b800;
}

#contact .form .form-group {
  margin-bottom: 25px;
}

#contact .form label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

#contact .form input,
#contact .form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: #fff;
}

#contact .form input:focus,
#contact .form textarea:focus {
  outline: none;
  border-color: #027aa7;
  box-shadow: 0 0 0 3px rgba(2, 122, 167, 0.1);
}

#contact .form textarea {
  resize: vertical;
  min-height: 120px;
}

#contact .form button[type="submit"] {
  background: linear-gradient(135deg, #027aa7 0%, #004965 100%);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(2, 122, 167, 0.3);
}

#contact .form button[type="submit"]:hover {
  background: linear-gradient(135deg, #86b800 0%, #027aa7 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 122, 167, 0.4);
}

#contact .form button[type="submit"]:active {
  transform: translateY(0);
}

#contact .form #sendmessage {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-weight: 500;
  display: none;
}

#contact .form #errormessage {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-weight: 500;
  display: none;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show {
  display: block;
}

#contact .form .validation {
  color: #dc3545;
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

#contact .social-links {
  text-align: center;
  margin-top: 30px;
}

#contact .social-links a {
  display: inline-block;
  width: 44px;
  height: 44px;
  background: #027aa7;
  color: #fff;
  border-radius: 8px;
  line-height: 44px;
  text-align: center;
  margin: 0 8px;
  transition: all 0.3s ease;
  font-size: 18px;
  box-shadow: 0 3px 10px rgba(2, 122, 167, 0.3);
}

#contact .social-links a:hover {
  background: #86b800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(134, 201, 0, 0.4);
}

/* Contact Responsive */
@media (max-width: 768px) {
  #contact {
    padding: 60px 0;
  }
  
  #contact .form {
    padding: 30px 20px;
  }
  
  #contact .info {
    padding: 25px 20px;
  }
  
  #contact .info i {
    font-size: 24px;
  }
  
  #contact .info h4 {
    margin-left: 40px;
    font-size: 16px;
  }
  
  #contact .info p {
    margin-left: 40px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

/* Ultra Modern Footer Section */
#footer {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #001f3f 100%);
  padding: 0;
  color: white;
  font-size: 14px;
  font-family: "IBM Plex Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 0h20v20H0V0zm20 20h20v20H20V20z'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-modern {
  position: relative;
  z-index: 1;
}

#footer .footer-top {
  background: transparent;
  padding: 80px 0 40px 0;
}

#footer .footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* Company Info Column */
.footer-company {
  grid-column: span 1;
}

.footer-company .company-logo {
  margin-bottom: 24px;
}

.footer-company .company-logo img {
  max-height: 60px;
  transition: var(--transition-smooth);
  filter: brightness(1.2);
}

.footer-company .company-logo img:hover {
  transform: scale(1.05);
}

.footer-company .company-description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

.footer-company .company-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-orange);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-company .company-link:hover {
  color: white;
  transform: translateX(3px);
}

/* Quick Links Column */
.footer-links h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  font-family: "IBM Plex Sans", sans-serif;
  position: relative;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--secondary-blue) 100%);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
  transform: translateX(0);
  transition: var(--transition-smooth);
}

.footer-links-list li:hover {
  transform: translateX(5px);
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.footer-links-list a:before {
  content: "→";
  opacity: 0;
  transition: var(--transition-smooth);
  color: var(--accent-orange);
  font-weight: bold;
}

.footer-links-list a:hover {
  color: white;
  padding-left: 15px;
}

.footer-links-list a:hover:before {
  opacity: 1;
}

/* Contact Info Column */
.footer-contact h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  font-family: "IBM Plex Sans", sans-serif;
  position: relative;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--secondary-blue) 100%);
  border-radius: 2px;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--secondary-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-details {
  flex: 1;
}

.contact-details strong {
  display: block;
  color: white;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: "IBM Plex Sans", sans-serif;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 14px;
  line-height: 1.5;
}

.contact-details a:hover {
  color: var(--accent-orange);
}

/* Social Media Links */
.social-media-modern {
  margin-top: 20px;
}

.social-links-modern {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links-modern a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.social-links-modern a:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(133, 201, 0, 0.4);
}

/* Newsletter Column */
.footer-newsletter h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  font-family: "IBM Plex Sans", sans-serif;
  position: relative;
}

.footer-newsletter h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--secondary-blue) 100%);
  border-radius: 2px;
}

.newsletter-description {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 14px;
}

.newsletter-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input[type="email"] {
  background: transparent;
  border: none;
  padding: 14px 16px;
  flex: 1;
  font-size: 14px;
  color: white;
  font-family: "IBM Plex Sans", sans-serif;
  border-radius: 8px;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="submit"] {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #e55a2b 100%);
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: "IBM Plex Sans", sans-serif;
}

.newsletter-form input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(133, 201, 0, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  font-family: "IBM Plex Sans", sans-serif;
}

/* Responsive Footer */
@media (max-width: 1200px) {
  #footer .footer-container {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  #footer .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  #footer .footer-top {
    padding: 60px 0 30px 0;
  }
}

@media (max-width: 768px) {
  #footer .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  #footer .footer-top {
    padding: 50px 0 30px 0;
  }
  
  .footer-links h4::after,
  .footer-contact h4::after,
  .footer-newsletter h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-item {
    justify-content: center;
    text-align: left;
  }
  
  .social-links-modern {
    justify-content: center;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .newsletter-form input[type="email"],
  .newsletter-form input[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .contact-icon {
    align-self: center;
  }
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 991px) {
  #header {
    height: 80px;
    padding: 10px 0;
  }


  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #intro {
    padding: 140px 0 60px 0;
  }

  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }

  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }

  #why-us .card {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }

  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .section-header p {
    width: 100%;
  }

  #testimonials .testimonial-item {
    text-align: center;
  }

  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

@media (max-width: 574px) {
  #intro {
    padding: 100px 0 20px 0;
  }

	#header .logo img {
	  max-height: 60px;
	  margin: 8px 0;
	}
	
	.header-spacer {
	  height: 115px; /* Çok küçük mobil cihazlar için */
	}
  
}



@media only screen and (min-width: 992px) and (max-width: 1199px)  {
	.main-nav a {
  	padding: 10px 6px;
  }
}



h1.sayfa_baslik {
	padding-bottom:8px;
	margin-bottom:16px;
	padding-top:20px;
	border-bottom:1px dotted #D8D8D8;
	font-size:40px;
	border-top:8px solid #017aa7;
}

/* Modern Sidebar Styles */
.kamuihalesolmenubaslik {
    background: linear-gradient(135deg, #003d82 0%, #0066cc 100%);
    padding: 16px 20px;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    font-family: 'IBM Plex Sans', sans-serif;
    border-radius: 12px 12px 0 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    position: relative;
}

.kamuihalesolmenubaslik::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.kamuihalesagmenu {
    margin-bottom: 24px;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.kamuihalesagmenu:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.kamuihalesagmenuul, .kamuihalesagmenuul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kamuihalesagmenuul {
    font-size: 14px;
    border: none;
    background: #ffffff;
}

.kamuihalesagmenuul a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 10px;
}

.kamuihalesagmenuul a:last-child {
    border-bottom: none;
}

.kamuihalesagmenuul a i {
    color: #003d82;
    width: 16px;
    text-align: center;
    font-size: 13px;
}

.kamuihalesagmenuul a:hover {
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    color: #003d82;
    padding-left: 24px;
    border-left: 4px solid #003d82;
}

.kamuihalesagmenuul a:hover i {
    color: #003d82;
    transform: scale(1.1);
}

/* Blog kategorileri için özel stiller */
.kamuihalesagmenu .kamuihalesagmenuul a span {
    margin-left: auto;
    font-size: 11px;
    background: #e1e8ed;
    color: #64748b;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

.kamuihalesagmenu .kamuihalesagmenuul a:hover span {
    background: #003d82;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kamuihalesagmenu {
        margin-bottom: 16px;
    }
    
    .kamuihalesolmenubaslik {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .kamuihalesagmenuul a {
        padding: 12px 16px;
        font-size: 13px;
    }
}

.sayfa_icerik h4{
	padding-bottom:0;
	margin-bottom:12px;
    font-family: "Open Sans", sans-serif;
	color:#027aa7;
}

/* İletişim Sayfası Tablo Linkleri - Tıklanabilir hale getir */
.sayfa_icerik table a {
	color: #107ba8 !important;
	text-decoration: none !important;
	cursor: pointer !important;
	position: relative;
	z-index: 10;
	display: inline-block;
	padding: 2px 4px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.sayfa_icerik table a:hover {
	color: #86b800 !important;
	background-color: rgba(16, 123, 168, 0.1);
	text-decoration: underline !important;
	transform: translateY(-1px);
}

.sayfa_icerik table a[href^="tel:"] {
	font-weight: 600;
	color: #107ba8 !important;
}

.sayfa_icerik table a[href^="tel:"]:hover {
	color: #25d366 !important;
}

.sayfa_icerik table a[href^="tel:"]:before {
	content: "📞 ";
	font-size: 12px;
}

.sayfa_icerik table a[href^="mailto:"] {
	font-weight: 500;
	color: #107ba8 !important;
}

.sayfa_icerik table a[href^="mailto:"]:hover {
	color: #dc3545 !important;
}

.sayfa_icerik table a[href^="mailto:"]:before {
	content: "✉️ ";
	font-size: 12px;
}

.sayfa_icerik table a[href*="whatsapp.com"] {
	color: #25d366 !important;
	font-weight: 600;
}

.sayfa_icerik table a[href*="whatsapp.com"]:hover {
	color: #128c7e !important;
	background-color: rgba(37, 211, 102, 0.1);
}

.sayfa_icerik table a[href*="whatsapp.com"]:before {
	content: "💬 ";
	font-size: 12px;
}

/* Tablo hücreleri için özel stil */
.sayfa_icerik table td {
	position: relative;
	vertical-align: top;
}

.sayfa_icerik table strong {
	color: #2c3e50;
	font-weight: 600;
}

/* Contact Form Button - Modern Style */
.sayfa_icerik .form button[type="submit"] {
	background: linear-gradient(135deg, #027aa7 0%, #004965 100%) !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 14px 32px !important;
	color: #fff !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	font-family: "Poppins", sans-serif !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	box-shadow: 0 4px 15px rgba(2, 122, 167, 0.3) !important;
	width: auto !important;
	display: inline-block !important;
	position: relative !important;
	z-index: 10 !important;
}

.sayfa_icerik .form button[type="submit"]:hover {
	background: linear-gradient(135deg, #86b800 0%, #027aa7 100%) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px rgba(2, 122, 167, 0.4) !important;
	color: #fff !important;
}

.sayfa_icerik .form button[type="submit"]:active {
	transform: translateY(0) !important;
}

.sayfa_icerik .form button[type="submit"]:focus {
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(2, 122, 167, 0.2) !important;
}

/* Form Input Styles */
.sayfa_icerik .form input,
.sayfa_icerik .form textarea {
	width: 100% !important;
	padding: 12px 16px !important;
	border: 2px solid #e9ecef !important;
	border-radius: 8px !important;
	font-size: 14px !important;
	font-family: "Poppins", sans-serif !important;
	transition: all 0.3s ease !important;
	background: #fff !important;
}

.sayfa_icerik .form input:focus,
.sayfa_icerik .form textarea:focus {
	outline: none !important;
	border-color: #027aa7 !important;
	box-shadow: 0 0 0 3px rgba(2, 122, 167, 0.1) !important;
}

/* Textarea özel düzenlemesi - tıklanabilir hale getir */
.sayfa_icerik .form textarea {
	width: 100% !important;
	padding: 12px 16px !important;
	border: 2px solid #e9ecef !important;
	border-radius: 8px !important;
	font-size: 14px !important;
	font-family: "Poppins", sans-serif !important;
	transition: all 0.3s ease !important;
	background: #fff !important;
	resize: vertical !important;
	min-height: 120px !important;
	cursor: text !important;
	position: relative !important;
	display: block !important;
}

.sayfa_icerik .form textarea:hover {
	border-color: #027aa7 !important;
	background: #fafbfc !important;
}

.sayfa_icerik .form textarea:focus {
	outline: none !important;
	border-color: #027aa7 !important;
	box-shadow: 0 0 0 3px rgba(2, 122, 167, 0.1) !important;
	background: #fff !important;
}

/* Form group düzenlemesi */
.sayfa_icerik .form .form-group {
	position: relative !important;
	margin-bottom: 15px !important;
}




#whatsappmessage {
		display:none;
		z-index: 299;
		position: fixed;
		width: 300px;
		font-size: 14px;
		top: auto;
		left: 20px;
		right: auto;
		bottom: 90px;
		border-radius: 15px;
		background-color:#FFFFFF;
		box-shadow:1px 2px 4px rgba(0,0,0,0.2);
	}
#wamsg_header {
		background-color:#007A56;
		height:49px;
		background-image:url(../images/whatsapp_ust_logo.png);
		background-repeat:no-repeat;
		background-position:12px center;
		border-top-left-radius:15px;
		border-top-right-radius:15px;
	}
	
#wamsg_content {
		background-image:url(../images/whatsapp_msg_background.jpg);
		background-color:#e5ddd5;
		width:100%;
		padding:18px;
		border-bottom-left-radius:15px;
		border-bottom-right-radius:15px;
		height:240px;
	}

#wamsg_message {
	position: relative;
	background: #ffffff;
	border-radius: .4em;
	padding:16px;
	margin:15px;
}

#wamsg_message:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 15px solid transparent;
	border-right-color: #ffffff;
	border-left: 0;
	border-top: 0;
	margin-top: -7.5px;
	margin-left: -15px;
}
	

#whatsapp_btn {
		display:block;
		z-index: 300;
		position: fixed;
		width: 64px;
		height:64px;
		top: auto;
		left: 20px;
		right: auto;
		bottom: 20px;
		background-image:url(../images/whatsapp_btn.png);
		background-repeat:no-repeat;
	}


.altsiteharitasi li{
	padding:0 !important;
	margin:0;
	margin-left:16px;
	list-style:disc;
}

/*--------------------------------------------------------------
# Modern Buttons and Components
--------------------------------------------------------------*/

/* Modern Button Styles */
.btn-modern {
  display: inline-block;
  padding: 14px 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  line-height: 1;
}

.btn-modern:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-smooth);
}

.btn-modern:hover:before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  color: var(--white);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #e55a2b 100%);
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(135deg, var(--success-green) 0%, #1e7e34 100%);
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  color: var(--white);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white) !important;
  box-shadow: var(--shadow-medium);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  color: var(--white) !important;
}

/* Phone Button */
.btn-phone {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--white) !important;
  box-shadow: var(--shadow-medium);
}

.btn-phone:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  color: var(--white) !important;
}

/* Form Button */
.btn-form {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #e55a2b 100%);
  color: var(--white) !important;
  box-shadow: var(--shadow-medium);
}

.btn-form:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  color: var(--white) !important;
}

/* PDF Button */
.btn-pdf {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--white) !important;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
}

.btn-pdf:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  color: var(--white) !important;
}

/* Modern Card Styles */
.card-modern {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  overflow: hidden;
  position: relative;
}

.card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.card-modern:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
}

.card-modern .card-body {
  padding: 30px;
}

.card-modern .card-title {
  color: var(--dark-blue);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-modern .card-text {
  color: var(--medium-gray);
  line-height: 1.7;
}

.card-modern .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 24px;
}

/* Enhanced Services Section */
#services .box {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin: 0 10px 40px 10px;
  background: var(--white);
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  border-top: 4px solid var(--primary-blue);
}

#services .box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-top-color: var(--accent-orange);
}

#services .box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, rgba(255, 107, 53, 0.02) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

#services .box:hover:before {
  opacity: 1;
}

#services .icon {
  position: absolute;
  left: 30px;
  top: 40px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#services .icon i {
  font-size: 32px;
  line-height: 1;
  color: var(--white);
  transition: var(--transition-smooth);
}

#services .title {
  margin-left: 110px;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--dark-blue);
  font-family: "Montserrat", sans-serif;
}

#services .title a {
  color: var(--dark-blue);
  transition: var(--transition-smooth);
}

#services .box:hover .title a {
  color: var(--accent-orange);
}

#services .description {
  font-size: 15px;
  margin-left: 110px;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--medium-gray);
}

/* Corporate Why Us Section */
#why-us {
  padding: 60px 0;
  background: #027aa7;
}

#why-us .section-header h3,
#why-us .section-header p {
  color: #fff;
}

#why-us .section-header h3 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

/*--------------------------------------------------------------
# Modern Hero Section (Index3 Style)
--------------------------------------------------------------*/

.hero-modern {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: white;
  font-family: 'Merriweather', Georgia, serif;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero butonları - mobil responsive */
@media (max-width: 768px) {
  .hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 2rem;
    flex-wrap: nowrap !important;
  }
  
  .hero-buttons .btn-modern {
    flex: 1 !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    text-align: center !important;
    min-width: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 48% !important;
  }
  
  .hero-buttons .btn-modern i {
    font-size: 14px !important;
    margin-right: 6px !important;
  }
  
  /* Buton metinlerini mobilde kısaltmak için */
  .hero-buttons .btn-modern {
    font-weight: 600 !important;
    line-height: 1.2 !important;
  }
}

/* Çok küçük ekranlar için ek optimizasyon */
@media (max-width: 480px) {
  .hero-buttons {
    gap: 8px !important;
  }
  
  .hero-buttons .btn-modern {
    padding: 10px 12px !important;
    font-size: 13px !important;
    max-width: 47% !important;
  }
  
  .hero-buttons .btn-modern i {
    font-size: 12px !important;
    margin-right: 4px !important;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.stat-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Trust Bar */
.trust-bar {
  background: var(--bg-light);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.trust-item i {
  font-size: 24px;
  color: var(--secondary-blue);
}

.trust-item div h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text-dark);
}

.trust-item div p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Process Steps Timeline */
.process-section {
  padding: 80px 0;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-blue) 0%, var(--accent-blue) 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  background: white;
  border: 3px solid var(--secondary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-blue);
  font-family: 'IBM Plex Sans', sans-serif;
}

.process-step h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text-dark);
}

.process-step p {
  font-size: 14px;
  color: var(--text-gray);
}

/* Modern Testimonials */
.testimonials-modern {
  padding: 80px 0;
  background: var(--bg-light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border-top: 4px solid var(--secondary-blue);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-size: 24px;
  color: var(--secondary-blue);
}

.testimonial-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text-dark);
}

.testimonial-info p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.testimonial-content {
  color: var(--text-gray);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-rating {
  color: #ffc107;
}

/* CTA Section */
.cta-modern {
  background: var(--primary-blue);
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
}

.cta-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.cta-modern .container {
  position: relative;
  z-index: 1;
}

.cta-modern h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: white;
  font-family: 'Merriweather', Georgia, serif;
}

.cta-modern p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

/* Responsive Design for Modern Components */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Hero stats mobilde 2x2 kalacak, sadece gap küçültülür */
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps::before {
    display: none;
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Trust items mobilde 2x2 grid düzenine geçiriyor */
  .trust-items {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }
  
  /* Hero stats mobilde 2x2 düzenini koruyoruz */
  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  
  /* Stat box'ları mobil için optimize ediyoruz */
  .stat-box {
    padding: 20px !important;
    text-align: center;
  }
  
  .stat-number {
    font-size: 28px !important;
    font-weight: 700;
    margin-bottom: 6px !important;
  }
  
  .stat-label {
    font-size: 12px !important;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  /* Çalışma Sürecimiz - Mobilde 2x2 Grid */
  .process-steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-top: 40px !important;
  }
  
  /* Process step'leri mobil için küçült */
  .process-step {
    text-align: center;
  }
  
  .step-number {
    width: 50px !important;
    height: 50px !important;
    font-size: 18px !important;
    margin-bottom: 16px !important;
    border-width: 2px !important;
  }
  
  .process-step h4 {
    font-size: 14px !important;
    margin-bottom: 8px !important;
    line-height: 1.3;
  }
  
  .process-step p {
    font-size: 12px !important;
    line-height: 1.4;
    color: var(--text-gray);
  }
  
  .hero-modern {
    padding: 60px 0;
  }
  
  .cta-modern h2 {
    font-size: 28px;
  }
  
  .cta-modern p {
    font-size: 18px;
  }
}

/* Çok küçük mobil cihazlar için ek optimizasyon */
@media (max-width: 480px) {
  .hero-stats {
    gap: 15px !important;
  }
  
  .stat-box {
    padding: 15px !important;
  }
  
  .stat-number {
    font-size: 24px !important;
  }
  
  .stat-label {
    font-size: 11px !important;
  }
  
  /* Çalışma Sürecimiz - Çok küçük mobil optimizasyon */
  .process-steps {
    gap: 15px !important;
    margin-top: 30px !important;
  }
  
  .step-number {
    width: 45px !important;
    height: 45px !important;
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }
  
  .process-step h4 {
    font-size: 13px !important;
    margin-bottom: 6px !important;
    line-height: 1.2;
  }
  
  .process-step p {
    font-size: 11px !important;
    line-height: 1.3;
  }
  
  /* Process section padding'ini de küçült */
  .process-section {
    padding: 60px 0 !important;
  }
}

/*--------------------------------------------------------------
# Footer Corporate Design (Index3.php Style)
--------------------------------------------------------------*/

#footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
  font-family: 'IBM Plex Sans', sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: white;
}

.footer-about p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 15px;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  cursor: text;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: white;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  z-index: 10;
  display: inline-block;
  padding: 4px 0;
}

.footer-column ul li a:hover {
  color: white;
  transform: translateX(3px);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #b0b0b0;
  margin: 0;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

.social-links a:hover {
  background: var(--secondary-blue);
  transform: translateY(-2px);
}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  #footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Header için responsive boşluk */
.header-spacer {
  margin: 0;
  padding: 0;
  height: 120px; /* Mobil için varsayılan yükseklik */
}

/* Masaüstü (örneğin 992px ve üstü) için yükseklik */
@media (min-width: 992px) {
  .header-spacer {
    height: 165px;
  }
  
  #header {
    min-height: 95px;
  }
  
  #header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    min-height: 95px;
  }
  
  #header .logo {
    display: flex;
    align-items: center;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
  }
}

/* Öne Çıkan Konular Slider - Mobil Optimizasyonu */
@media (max-width: 768px) {
  /* Slider container padding'ini küçült */
  #carousel1 .owl-carousel .owl-stage-outer {
    padding: 10px 0 !important;
  }
  
  /* Slider içindeki resimlerin boyutunu mobilde küçült */
  #carousel1 .item img {
    max-height: 200px !important; /* Masaüstünde 450px, mobilde 200px */
    width: auto !important;
    margin: 0 auto !important;
    border-radius: 8px !important;
    box-shadow: var(--shadow-light) !important;
  }
  
  /* Section başlığını da küçült */
  #carousel1 .owl-carousel .owl-item .item h3 {
    font-size: 1.2rem !important;
  }
  
  /* Section padding'ini küçült */
  section:has(#carousel1) {
    padding: 20px 0 !important;
  }
  
  /* Section header'ı küçült */
  section:has(#carousel1) .section-header {
    margin-bottom: 20px !important;
  }
  
  section:has(#carousel1) .section-header h3 {
    font-size: 1.8rem !important;
  }
}

/* Daha küçük mobil cihazlar için */
@media (max-width: 480px) {
  #carousel1 .item img {
    max-height: 150px !important; /* Çok küçük ekranlarda daha da küçült */
  }
}
