/* Custom Styles for Bootstrap Header */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
}

/* Navbar customization */
.navbar {
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #007bff !important;
}

/* Custom navigation links */
.custom-nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: #495057 !important;
  text-decoration: none;
  padding: 0.75rem 1.25rem !important;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Remove focus/active borders and outlines */
.custom-nav-link:focus,
.custom-nav-link:active,
.custom-nav-link:visited {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Hover animation - blue underline */
.custom-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #007bff;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.custom-nav-link:hover::after {
  width: 80%;
}

.custom-nav-link:hover {
  color: #007bff !important;
  transform: translateY(-1px);
}

/* Login button customization */
.custom-login-btn {
  background-color: #007bff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  white-space: nowrap;
  outline: none !important;
  box-shadow: none !important;
}

.custom-login-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  color: white;
}

.custom-login-btn:focus,
.custom-login-btn:active {
  background-color: #0056b3;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  color: white;
  outline: none !important;
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  .custom-nav-link {
    padding: 0.75rem 0 !important;
    margin: 0.25rem 0;
  }
  
  /* Position login button below menu items and center it */
  .navbar-nav:last-child {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
  }
  
  .custom-login-btn {
    width: 100%;
    max-width: 250px;
  }
  
  /* Mobile hover effects */
  .custom-nav-link::after {
    display: none;
  }
  
  .custom-nav-link:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    transform: none;
  }
}

/* Hamburger menu customization */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Container improvements */
.container {
  max-width: 1200px;
}

/* Demo content styling */
.display-4 {
  font-weight: 700;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Additional animations */
.navbar {
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Remove all focus outlines for navbar elements */
.navbar-brand:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .custom-nav-link {
    color: #000 !important;
  }
  
  .custom-nav-link:hover {
    color: #007bff !important;
    background-color: #f8f9fa;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .custom-nav-link,
  .custom-login-btn,
  .navbar {
    transition: none;
    animation: none;
  }
  
  .custom-nav-link:hover {
    transform: none;
  }
  
  .custom-login-btn:hover {
    transform: none;
  }
}

/* ===== HERO SECTION STYLES ===== */

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #212529;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  font-family: "Poppins", sans-serif;
}

.highlight-badge {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #212529;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  transform: rotate(-1deg);
  margin: 0 0.5rem;
  font-family: "Poppins", sans-serif;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 3rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
  color: white;
}

.hero-btn-link {
  color: #6c757d;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.hero-btn-link::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #007bff;
  transition: width 0.3s ease;
}

.hero-btn-link:hover {
  color: #007bff;
}

.hero-btn-link:hover::after {
  width: 100%;
}

.hero-image {
  position: relative;
  text-align: center;
  padding: 2rem;
}

.hero-img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 1rem 0;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .highlight-badge {
    transform: rotate(0deg);
    margin: 0.5rem 0;
    display: block;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-description {
    font-size: 1.1rem;
    text-align: center;
    margin: 0 auto 2rem auto;
  }
  
  .hero-buttons {
    justify-content: center;
    margin-bottom: 3rem;
  }
  
  .hero-content {
    padding: 1rem 0;
  }
  
  .hero-image {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
    margin-bottom: 3rem;
    flex-direction: column;
  }
  
  .hero-btn-primary {
    width: auto;
    min-width: 200px;
    max-width: 250px;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-btn-link {
    text-align: center;
  }
}

/* Animation on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }

.hero-image {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

/* Reduced motion support for hero */
@media (prefers-reduced-motion: reduce) {
  .hero-content > *,
  .hero-image {
    animation: none;
    opacity: 1;
  }
  
  .hero-btn-primary:hover {
    transform: none;
  }
  
  .hero-img:hover {
    transform: none;
  }
}

/* ===== WHY SERVICE SECTION STYLES ===== */

.why-service-section {
  padding: 5rem 0;
  background-color: #ffffff;
  position: relative;
}

.why-service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 500;
  color: #212529;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-family: "Poppins", sans-serif;
}

.highlight-service {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #212529;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  font-family: "Poppins", sans-serif;
}

.section-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.service-card {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  color: white;
  position: relative;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
  overflow: hidden;
  transform-origin: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 123, 255, 0.3);
}

.service-card:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.card-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  position: relative;
  z-index: 2;
}

.card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  max-width: 280px;
}

/* Responsive Design for Service Section */
@media (max-width: 991.98px) {
  .why-service-section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .service-card {
    margin-bottom: 2rem;
    padding: 2rem 1.5rem;
  }
  
  .card-icon {
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .card-description {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .service-card {
    padding: 1.5rem;
    text-align: center;
  }
  
  .card-icon {
    position: static;
    margin: 0 auto 1.5rem auto;
    width: 60px;
    height: 60px;
  }
  
  .card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .card-description {
    font-size: 0.9rem;
    max-width: 100%;
  }
}

/* Animation for service cards */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: slideInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* Reduced motion support for service section */
@media (prefers-reduced-motion: reduce) {
  .service-card {
    animation: none;
  }
  
  .service-card:hover {
    transform: none;
  }
}

/* Statistics Section */
.statistics-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.statistics-content {
  padding-right: 20px;
}

/* Main Headline */
.main-headline {
  font-size: 2.5rem;
  font-weight: 500;
  color: #212529;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}

.highlighted {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  padding: 4px 12px;
  border-radius: 8px;
  color: #212529;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

/* Subheading */
.subheading {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Statistics List */
.statistics-list {
  margin-bottom: 40px;
  border-left: 4px solid #007bff;
  padding-left: 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px 0;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-right: 15px;
  min-width: 80px;
}

.stat-label {
  font-size: 1.1rem;
  color: #495057;
  font-weight: 500;
}

/* Progress Card */
.progress-card {
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.progress-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.progress-percentage {
  font-size: 1.5rem;
  font-weight: 700;
  color: #007bff;
  margin-right: 15px;
}

.progress-title {
  font-size: 1.1rem;
  color: #2c3e50;
  margin: 0;
  flex: 1;
}

.progress-details {
  font-size: 1rem;
  color: #6c757d;
}

.progress-bar-container {
  margin-top: 15px;
}

.progress-bar-custom {
  width: 100%;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #007bff, #0056b3);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Right Column Images */
.images-content {
  padding-left: 20px;
}

.person-image-container {
  margin-bottom: 30px;
}

.person-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Chart Container */
.chart-container {
  margin-top: 30px;
}

.chart-card {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  border-radius: 15px;
  padding: 25px;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.chart-header {
  margin-bottom: 25px;
}

.chart-title {
  font-size: 1rem;
  color: #bdc3c7;
  margin-bottom: 10px;
  font-weight: 400;
}

.total-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3498db;
}

.chart-content {
  position: relative;
}

.chart-bars {
  display: flex;
  align-items: end;
  justify-content: space-around;
  height: 120px;
  margin-bottom: 15px;
}

.chart-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
}

.bar-fill {
  width: 40px;
  border-radius: 4px 4px 0 0;
  margin-bottom: 10px;
  transition: height 0.3s ease;
}

.chart-bar.azercell .bar-fill {
  background: linear-gradient(180deg, #3498db, #2980b9);
}

.chart-bar.bakcell .bar-fill {
  background: linear-gradient(180deg, #e74c3c, #c0392b);
}

.chart-bar.nar .bar-fill {
  background: linear-gradient(180deg, #9b59b6, #8e44ad);
}

.bar-label {
  font-size: 0.9rem;
  color: #bdc3c7;
  text-align: center;
}

.chart-footer {
  text-align: center;
  margin-top: 15px;
}

.chart-note {
  font-size: 0.9rem;
  color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .statistics-section {
    padding: 50px 0;
  }
  
  .statistics-content,
  .images-content {
    padding-left: 0;
    padding-right: 0;
  }
  
  .main-headline {
    font-size: 2rem;
  }
  
  .statistics-list {
    padding-left: 20px;
    margin-bottom: 30px;
  }
  
  .stat-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px 0;
  }
  
  .stat-number {
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .progress-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .progress-percentage {
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .person-image {
    height: 200px;
  }
  
  .chart-bars {
    height: 100px;
  }
  
  .total-number {
    font-size: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .main-headline {
    font-size: 2.2rem;
  }
  
  .person-image {
    height: 220px;
  }
}

@media (min-width: 992px) {
  .statistics-content {
    padding-right: 40px;
  }
  
  .images-content {
    padding-left: 40px;
  }
}

/* Hover Effects */
.progress-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.chart-card:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.person-image:hover {
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background-color: rgba(0, 123, 255, 0.05);
  border-radius: 8px;
  padding: 15px 10px;
  margin-left: -10px;
  margin-right: -10px;
  transition: all 0.3s ease;
}

/* Slider Section Styles */
.slider {
  padding: 60px 0;
  background-color: #ffffff;
}

/* Carousel Styling */
.carousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid #e9ecef;
  background: #ffffff;
}

.carousel-inner {
  border-radius: 12px;
  overflow: hidden;
}

.slider-image {
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Carousel Indicators Styling */
.carousel-indicators {
  bottom: 20px;
  margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin: 0 6px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: #ffffff;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 575.98px) {
  .slider {
    padding: 30px 0;
  }
  
  .slider-image {
    height: 300px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .slider-image {
    height: 350px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .slider-image {
    height: 400px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .slider-image {
    height: 450px;
  }
}

@media (min-width: 1200px) {
  .slider-image {
    height: 500px;
  }
}

/* Smooth transitions for carousel items */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Loading animation for images */
.slider-image {
  background: linear-gradient(90deg, #f0f0f0 25%, transparent 37%, #f0f0f0 63%);
  background-size: 400% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

.slider-image[src] {
  animation: none;
  background: none;
}

@keyframes loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: -100% 50%;
  }
}

/* Hover effects */
.carousel-item:hover .slider-image {
  transform: scale(1.02);
}


/* Custom styles for the search component */
.search-container {
  padding: 1rem 0;
  margin: 0;
  background-color: #fff;
  position: relative;
  z-index: 10;
}

.search-form {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  max-width: 800px;
}

.dropdown-toggle {
  background-color: #f8f9fa;
  border: 2px solid #e9ecef;
  color: #495057;
  font-weight: 500;
  border-radius: 12px;
  padding: 12px 20px;
  transition: all 0.3s ease;
  min-width: 120px;
}

.dropdown-toggle:hover {
  background-color: #e9ecef;
  border-color: #ced4da;
  transform: translateY(-1px);
}

.dropdown-toggle:focus {
  box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.25);
}

.dropdown-item {
  padding: 10px 20px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #495057;
}

.dropdown-item:active {
  background-color: #e9ecef;
  color: #495057;
}

.search-input {
  width: 60px;
  height: 60px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #495057;
  border-color: #1D4ED8;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
  outline: none;
}

.search-input:hover {
  border-color: #ced4da;
  background-color: #e9ecef;
  transform: translateY(-1px);
  border-color: #1D4ED8;
}

.search-input:focus {
  border-color: #1D4ED8;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  background-color: #fff;
}

.search-input.has-value {
  background-color: #fff;
  border-color: #28a745;
  color: #28a745;
}

.search-input.invalid {
  border-color: #dc3545;
  background-color: #fff5f5;
  animation: shake 0.3s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.btn-search {
  background-color: #1D4ED8;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 100px;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);

}

.btn-search:hover {
  background-color: #1E40AF;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  color: white;
}

.btn-clear {
  background-color: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 100px;
  box-shadow: 0 6px 14px rgba(100, 116, 139, 0.3);
}

.btn-clear:hover {
  background-color: #e9ecef;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(100, 116, 139, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .search-form {
    padding: 0.75rem;
    margin: 0 0.5rem;
  }
  
  .search-input.mobile-input {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    padding: 0.25rem;
  }
  
  .dropdown-toggle {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  
  .btn-search, .btn-clear {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    min-width: 80px;
    height: 38px;
  }
}

@media (max-width: 576px) {
  .search-input {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .dropdown-toggle {
    min-width: 80px;
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .btn-search, .btn-clear {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Mobile specific styles */
.mobile-input {
  width: 35px;
  height: 35px;
  font-size: 16px;
}

@media (max-width: 480px) {
  .mobile-input {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}


/* Email Section Styles */
.email-section {
  padding: 40px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.email-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.email-card {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Resmin üzerine hafif bir karartma ekleyelim ki içerik daha okunabilir olsun */
.email-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(124, 58, 237, 0.9) 100%);
  border-radius: 24px;
  z-index: -1;
}

.email-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.15);
}

.email-headline {
  color: white;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
  font-family: "Poppins", sans-serif;
}

.email-form {
  position: relative;
  margin-top: 20px;
  max-width: 800px;
  margin-left: 0;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.input-group {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.email-input {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  padding: 16px 20px;
  font-size: 1rem;
  color: #374151;
  border-radius: 16px !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 100%;
}

.email-input:focus {
  background: white;
  box-shadow: none;
  border-color: transparent;
  outline: none;
}

.email-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.subscribe-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  border-radius: 17px !important;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.025em;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.subscribe-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .email-section {
    padding: 30px 15px;
  }
  
  .email-card {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .email-headline {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .email-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 100%;
  }
  
  .email-input {
    border-radius: 16px !important;
    padding: 18px 20px;
    font-size: 1.1rem;
    width: 100%;
    min-height: 55px;
    box-sizing: border-box;
  }
  
  .subscribe-btn {
    width: 100%;
    max-width: 100%;
    padding: 18px 32px;
    font-size: 1.1rem;
    min-height: 55px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
}

@media (max-width: 575.98px) {
  .email-headline {
    font-size: 1.4rem;
  }
  
  .email-card {
    padding: 24px 20px;
  }
  
  .email-input {
    padding: 16px 20px;
    font-size: 1rem;
    min-height: 50px;
    box-sizing: border-box;
  }
  
  .subscribe-btn {
    padding: 16px 32px;
    font-size: 1rem;
    min-width: unset;
    max-width: 200px;
    box-sizing: border-box;
  }
}

/* Medium screens optimization */
@media (min-width: 768px) and (max-width: 991.98px) {
  .email-headline {
    font-size: 1.7rem;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .email-card {
    padding: 40px;
  }
  
  .email-headline {
    font-size: 1.7rem;
  }
}

/* Focus states for accessibility */
.email-input:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.subscribe-btn:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .email-card {
    border: 2px solid rgba(255, 255, 255, 0.8);
  }
}

/* Most Viewed Numbers Section */
.most-viewed-numbers {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.highlighted-text {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  padding: 4px 12px;
  border-radius: 8px;
  color: #212529;
  font-family: 'Poppins',sans-serif;
  font-weight: 700;
}

.section-description {
  font-size: 0.9rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Number Cards */
.number-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  width: 93%;
  margin: 0 auto;
}

.number-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-heart {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-heart:hover {
  background: #ff6b6b;
  color: white;
}

.card-heart i {
  font-size: 1.2rem;
  color: #6c757d;
  transition: color 0.3s ease;
}

.card-heart:hover i {
  color: white;
}

/* Operator Logo Areas */
.operator-logo {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.operator-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.15s ease-in-out;
}

.operator-image.fade-out {
  opacity: 0;
}

.operator-image.fade-in {
  opacity: 1;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-transform: lowercase;
  letter-spacing: 1px;
}

/* Card Content */
.card-content {
  padding: 10px 25px;
}

.operator-name {
  font-size: 1rem;
  color: #007bff;
  font-weight: 600;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

.view-count {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

.view-number {
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.view-count i {
  font-size: 1rem;
}

.view-icon {
  font-size: 1.1rem;
  color: #6c757d;
}

.phone-number {
  margin-top: 3%;
  font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    font-family: "Poppins", sans-serif;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: -15px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #ffc107;
  font-size: 0.9rem;
}

.review-count {
  font-size: 0.9rem;
  color: #212529;
}

.price-button-container {
  margin-top: 1.3rem;
}

.price {
  width: 60%;
  font-size: 1.2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0;
}

.buy-btn {
  background-color: #1D4ED8;
  color: white;
  border: none;
  padding: 0.5rem 0.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.buy-btn:hover {
  background-color: #1E40AF;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  color: white;
}

.buy-btn i {
  font-size: 1.1rem;
}

.custom-more-btn {
  background-color: #343a40;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 155px;
}

.custom-more-btn:hover {
  background-color: #23272b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .operator-logo {
    height: 300px;
  }
  
  .number-card {
    width: 100%;
    margin: 0 auto 1rem auto;
  }
  
  .price {
    font-size: 1.25rem;
  }
  
  .buy-btn {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
}

/* FAQ Section Styles */
.frequently-questions {
  padding: 80px 0;
}

.faq-title {
  font-size: 2.2rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

.highlighted-yellow {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  padding: 4px 12px;
  border-radius: 6px;
  color: #1f2937;
  font-weight: 700;
  display: inline-block;
  position: relative;
  font-family: "Poppins",sans-serif;
}

.faq-subtitle {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* Custom Accordion Styles */
.accordion {
  border-radius: 0;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background: white;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background: white;
  border: none;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  border-radius: 12px !important;
  box-shadow: none;
  position: relative;
  padding-right: 4rem;
}

.accordion-button:not(.collapsed) {
  background: white;
  color: #1f2937;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  display: none;
}

.accordion-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.accordion-icon i {
  color: white;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion-icon {
  background: #3b82f6;
  transform: translateY(-50%) rotate(45deg);
}

.accordion-button:not(.collapsed) .accordion-icon i {
  transform: rotate(0deg);
}

.accordion-body {
  padding: 0 2rem 1.5rem 2rem;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}

.accordion-collapse {
  border: none;
}
/* ===== FOOTER STYLES ===== */
.main-footer {
  color: #f8f9fa;
  padding: 4rem 0;
  font-size: 0.95rem;
  border-top: 3px solid #e9ecef;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #000;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  border-radius: 2px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007bff;
}

.footer-contact li {
  color: #000;
}

/* Responsive adjustments for footer */
@media (max-width: 767.98px) {
  .footer-column {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main-footer {
    padding: 3rem 0;
    border-top: 1px solid #e9ecef;
  }
}

.search-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #212529;
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif;

  margin-top: 2rem;
}

.search-title .highlighted-text {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #212529;
 font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

@media (max-width: 768px) {
  .search-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
  }
}

.product-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #212529;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
}

.color-options {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.color-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.color-circle.active {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.color-circle[data-color="white"] {
  background-color: #f8f9fa;
}

.color-circle[data-color="red"] {
  background-color: #dc3545;
}

.color-circle[data-color="blue"] {
  background-color: #007bff;
}

.color-circle[data-color="green"] {
  background-color: #28a745;
}

/* Rating */
.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: -15px;
  margin-top: 2%;
}

/* ====== Özel ID'li stiller ====== */
#why-service-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #e9ecef 100%);
  border-top: 3px solid #007bff;
  border-bottom: 3px solid #007bff;
}

#why-service-container {
  max-width: 1200px;
}

#why-service-row-header {
  margin-bottom: 2rem;
}

#why-service-header-col {
  padding-bottom: 1rem;
}

#why-service-title {
  color: #1d4ed8;
  letter-spacing: 1px;
  font-size: 2.7rem;
}

#why-service-highlight {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #212529;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

#why-service-subtitle {
  color: #374151;
  font-style: italic;
  font-size: 1.1rem;
}

#why-service-cards-row {
  margin-top: 2rem;
}

#service-card-col-1, #service-card-col-2, #service-card-col-3 {
  display: flex;
  justify-content: center;
}

#service-card-1 {
  border: 2px solid #007bff;
  background: #e3f0ff;
}
#service-card-2 {
  border: 2px solid #ffc107;
  background: #fffbe6;
}
#service-card-3 {
  border: 2px solid #a78bfa;
  background: #f3e8ff;
}

#service-card-icon-1, #service-card-icon-2, #service-card-icon-3 {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#service-card-icon-1 {
  background: #007bff;
}
#service-card-icon-2 {
  background: #ffc107;
  color: #212529;
}
#service-card-icon-3 {
  background: #a78bfa;
}

#service-card-i-1, #service-card-i-2, #service-card-i-3 {
  font-size: 2rem;
}

#service-card-title-1, #service-card-title-2, #service-card-title-3 {
  color: #1d1d1d;
  font-size: 1.4rem;
  margin-top: 1.5rem;
}

#service-card-desc-1, #service-card-desc-2, #service-card-desc-3 {
  color: #333;
  font-size: 1rem;
  margin-top: 0.5rem;
}


.user-dropdown-bg {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff !important;
  border-radius: 30px;
  padding: 6px 18px;
  min-height: 40px;
  min-width: 120px;
  border: none;
  box-shadow: none;
  outline: none;
  transition: background 0.2s, color 0.2s;
}
.user-dropdown-bg .user-icon-bg {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.user-dropdown-bg:hover,
.user-dropdown-bg:focus,
.user-dropdown-bg[aria-expanded="true"] {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff !important;
  outline: none;
  box-shadow: none;
  border: none;
  text-decoration: none;
}
.dropdown-menu {
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: none;
  padding: 8px 0;
  min-width: 180px;
}
.dropdown-menu .dropdown-item {
  border-radius: 8px;
  padding: 8px 18px;
  color: #222;
  background: transparent;
  border: none;
  margin: 0;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background: #f1f3f7;
  color: #007bff;
  border: none;
  margin: 0;
  box-shadow: none;
  outline: none;
}