/* Page fade transition */
.page-fade {
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1);
}
.page-fade-leave {
  opacity: 0 !important;
}
/* Enterprise page dark header */
.enterprise-header-bg {
  background: #000 !important;
  border-bottom: 1px solid #222 !important;
}
/* Active menu item style */
.active-menu {
  background: #c5c5ff;
  color: #ffffff !important;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(67,67,196,0.08);
  transition: background 0.2s, color 0.2s;
}
.stayintouch-carousel {
  min-height: 400px !important;
  height: 100%;
  display: flex;
  align-items: center;
}


/* Network map container */
.network-map-container {
  width: 100vw;
  height: 340px;
}

/* ================================================
  GLOBAL CSS 
  ================================================ */
.feature-image-container {
  
}

/* Font Face */
@font-face {
  font-family: 'Funnel Display';
  src: url('../assets/fonts/FunnelDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('../assets/fonts/Aileron-UltraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Aileron';
  src: url('../assets/fonts/Aileron-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Aileron';
  src: url('../assets/fonts/Aileron-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Aileron';
  src: url('../assets/fonts/Aileron-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Aileron';
  src: url('../assets/fonts/Aileron-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Aileron';
  src: url('../assets/fonts/Aileron-Heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Aileron';
  src: url('../assets/fonts/Aileron-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

.onboarding-w100 {
  width:100%;
}

/* Reset ve Base Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Funnel Display';
  line-height: 1.6;
  color: #1F2937;
  background-color: #F9FAFB;
}

/* Scrollbar Stilleri */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  font-family: 'Aileron', sans-serif;
  margin-bottom: 1rem;
}

.font-aileron {
  font-family:'Aileron', sans-serif
}

a {
  text-decoration: none !important;
  color: inherit;
  transition: color 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons - Genel */
button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.slide-in {
  animation: slideIn 0.5s ease-out;
}

/* Transitions */
.transition-all {
  transition: all 0.3s ease-in-out;
}

.transition-fast {
  transition: all 0.15s ease-in-out;
}

.transition-slow {
  transition: all 0.5s ease-in-out;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Header Styles */
header {
  transition: all 0.3s ease;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  border:0;
}

#main-header { 
  background-color: transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.37);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12.6px);
  -webkit-backdrop-filter: blur(12.6px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .menu-item {
  color:#000000 !important;
  font-weight: 400;
  padding:6px 14px;
  border-radius:100px;
  transition:all 0.3s ease;
}

header .menu-item:hover {
  background-color:#ffffff;
  padding:6px 14px;
  border-radius:100px;
  transition:all 0.3s ease;
}

header .dropdown button {
  color:#000000 !important;
}

header .desktop-menu {
  height: 24px;
  padding-top:10px;
}



/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 8px;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 20px;
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: 8px;
  margin: 4px 8px;
}

.dropdown-item:hover {
  background: #F3F4F6;
  color: #4343C4;
}

.dropdown-submenu {
  padding-left: 32px;
  font-size: 0.9rem;
  color: #6B7280;
}

.dropdown-submenu-item {
  padding: 8px 20px;
  cursor: default;
  position: relative;
}

.dropdown-submenu-item:before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #4343C4;
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  max-height: 100vh;
}

.hamburger {
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #1F2937;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn-primary {
  padding: 10px 24px;
  background: #4343C4;
  color: white;
  border-radius: 100px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding:0 24px !important;
  height: 44px;
  display: flex;
  align-items: center;
}

.btn-primary:hover {
  background: #3535a3;
  border-color: #3535a3;
}

.btn-secondary {
  padding: 10px 24px;
  background: #D0D0FF;
  color: #4343C4 !important;
  border-radius: 100px !important;
  font-weight: 600;
  transition: all 0.3s ease;;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding:0 24px !important;
  height: 44px;
  display: flex;
  align-items: center;
}

.btn-secondary:hover {
  background: #b8b8ff;
  border-color: #b8b8ff;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  height: 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  pointer-events: none;
}

.badge-success {
  background: #10B981;
  color: white;
}

.badge-info {
  background: #3B82F6;
  color: white;
}

.badge-warning {
  background: #F59E0B;
  color: white;
}

.badge-danger {
  background: #EF4444;
  color: white;
}

/* Hero Section */
.home-hero-section {
  height: 80vh;
  background-image: url('../assets/images/bggradient.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.enterprise-hero-bg {
  background-image: url('../assets/images/black-background.jpg') !important;
}

.enterprise-hero-bg .hero-heading,
.enterprise-hero-bg #hero-desc,
.enterprise-hero-bg #hero-subtitle {
  color: #ffffff !important;
}

.enterprise-header-bg {
  background-color: #ffffff !important;
}

.hero-section .hero-arrow-icon {
  padding-top:5px;
}

.hero-section .hero-logo {
  width: 220px;
}

.hero-section {
  padding-top:100px;
}

.hero-section .sub-title {
  font-weight: 300;
  font-size:20px;
}

/* Chat Input */
.chat-input {
  position: relative;
  overflow: visible !important;
  max-width: 1000px;
}

.chat-input::after {
  content: '';
  position: absolute;
  bottom: -160px;
  right: -200px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at top left, #c5fa12 0%, rgb(255 204 0 / 80%) 15%, rgba(153, 255, 0, 0.5) 30%, rgba(246, 255, 0, 0.2) 50%, transparent 75%);
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

#onboarding-section {
  padding-top:120px;
}

.ai-chat-input {
  height: 160px;;
  position: relative;
  overflow: visible;
  border: 1px solid transparent;
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, 
      #4343C4 0%,
      rgba(67, 67, 196, 0.7) 30%,
      rgba(67, 67, 196, 0.4) 70%,
      rgba(67, 67, 196, 0.2) 100%
    ) border-box;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 0 15px rgba(67, 67, 196, 0.15),
    inset 0 -2px 10px rgba(67, 67, 196, 0.08);
}

.chat-input .plus-button {
  height: 40px;
  width: 40px;
  padding:0;
}

.chat-input .attach-button {
  height: 40px;
}

.chat-input .theme-button {
  height: 40px;
}

.chat-input .voice-button {
  height: 40px;
  width: 40px;
  padding:0;
}

.accordion-section .accordion-image-container {
  margin-top: 70px;
}





/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  .home-hero-section .sub-title {
    flex-direction: column;
  }

  .accordion-section .accordion-image-container {
    margin-top: 0;
  }

  .home-hero-section .sub-title i:before {
    content:none !important;
  }

  .solutions-carousel-wrapper {
    padding:16px;
  }

  .solutions-carousel-section {
    padding-bottom:0;
    padding-top:20px !important;
  }

  .solutions-carousel-section h2 {
    font-size:26px;
    line-height: auto !important;
  }

  .accordion-inner {
    padding-left:0
  }

  .stay-in-touch-section .top-block {
    margin:30px 0;
  }

  .stay-in-touch-section .section-title {
    font-size:24px;
  }

  .carousel-nav-arrows {
    display: none !important;
  }

  .faq-section {
    padding:40px 16px !important;
  }

  .home-hero-section {
    height: auto !important;
  }

  .chat-input::after {
    content:none
  }

  .hidden-mobile {
    display: none !important;
  }

  .hero-section .divider {
    display: none;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0 15px;
  }

  .hero-heading {
    flex-direction: column !important;
  }

  // .hero-heading span {
  //   display: none !important;
  // }
}

/* Brand Slider */
.brand-slider-section {
  background: linear-gradient(to bottom, #F9FAFB 0%, #ffffff 100%);
}

.brand-carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.brand-logo {
  height: 50px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Owl Carousel Custom Styles */
.brand-carousel .owl-nav,
.brand-carousel .owl-dots {
  display: none;
}

/* Print Styles */
@media print {
  * {
    background: white !important;
    color: black !important;
  }
}

/* Rotating Border Animation */
@keyframes rotate-gradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.benefit-card-animated {
  position: relative;
}

.benefit-card-animated::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  animation: rotate-gradient 8s linear infinite;
  z-index: 0;
}

.benefit-card-1::before {
  background: conic-gradient(from 0deg, #F5F3FF 0deg, #EDE9FE 90deg, #E9D5FF 180deg, #EDE9FE 270deg, #F5F3FF 360deg);
}

.benefit-card-2::before {
  background: conic-gradient(from 120deg, #EDE9FE 0deg, #E9D5FF 90deg, #F5F3FF 180deg, #EDE9FE 270deg, #E9D5FF 360deg);
}

.benefit-card-3::before {
  background: conic-gradient(from 240deg, #E9D5FF 0deg, #F5F3FF 90deg, #EDE9FE 180deg, #E9D5FF 270deg, #F5F3FF 360deg);
}

.benefit-card-animated > div {
  position: relative;
  z-index: 1;
}

.cta-section {
  background: linear-gradient(135deg, #F3E8FF 0%, #FAF5FF 50%, #F3E8FF 100%);
}

.cta-background {
  opacity: 0.3 !important;
}

.glow-button-text {
  background: #416ffa;
}

.glow-button-arrow {
  color: #2f71bc !important;
}

.glow-button:hover .arrow-icon {
  transform: translateX(-150px);
  opacity: 0;
  transition: all 0.4s ease;
}

/* Get Started Button */
.get-started-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 50px;
  padding: 0 1.5rem;
  background: #5340FF;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  position: relative;
}

.get-started-btn:hover {
  opacity: 0.9;
}

.get-started-btn .arrow-circle {
  width: 32px;
  height: 32px;
  background: white;
  color: #5340FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.image-title-desc-section {
  font-size:14px;
}

.get-started-btn:hover .arrow-circle {
  transform: translateX(4px);
}

footer {
  padding-bottom:30px !important; 
}

footer .logo-wrapper img {
  width: 160px !important;
}

/* Testimonials Section */
.testimonial-card {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), 
                    linear-gradient(135deg, 
                      rgba(255, 255, 255, 0.9), 
                      #5340FF 20%, 
                      #7c6fff 50%, 
                      #5340FF 80%, 
                      rgba(255, 255, 255, 0.9));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(83, 64, 255, 0.05), rgba(124, 111, 255, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(120deg, 
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.5) 15%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(83, 64, 255, 0.2),
              0 0 20px rgba(83, 64, 255, 0.1),
              0 0 60px rgba(255, 255, 255, 0.3);
  border-color: #5340FF;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover::after {
  opacity: 0.6;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-author {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(83, 64, 255, 0.1);
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  margin-top: 0.25rem;
  font-size: 0.95rem;
}

/* Accordion / FAQ Section */
.accordion-item {
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: #5340FF;
  box-shadow: 0 4px 12px rgba(83, 64, 255, 0.1);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(83, 64, 255, 0.05);
}

.accordion-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  padding-right: 1rem;
}

.accordion-icon {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-icon i {
  color: inherit;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #6b7280;
  line-height: 1.75;
  font-family: 'Aileron', sans-serif;
}

/* Solutions Carousel Section */
.solutions-carousel-section {
  position: relative;
  overflow: hidden;
}

.network-slider-area {
  min-height: 400px;
}

.carousel-slide {
  padding: 2rem 0;
}

.carousel-slide img {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.solutions-carousel .owl-stage-outer {
  overflow: hidden;
}

.carousel-nav-arrows {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.carousel-nav-prev,
.carousel-nav-next {
  width: 48px;
  height: 48px;
  background: #5340FF;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav-prev:hover,
.carousel-nav-next:hover {
  background: #4230DD;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(83, 64, 255, 0.3);
}

.carousel-nav-prev:active,
.carousel-nav-next:active {
  transform: scale(0.95);
}

/* Hide default Owl Carousel navigation */
.solutions-carousel .owl-nav {
  display: none;
}

.solutions-carousel .owl-dots {
  display: none;
}

/* Services Cards Section */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card-image {
  overflow: hidden;
}

.service-card-image img {
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-get-started-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #5340FF;
  color: white;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
}

.service-get-started-btn:hover {
  background: #4230DD;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(83, 64, 255, 0.3);
}

.service-get-started-btn i {
  transition: transform 0.3s ease;
}

.service-get-started-btn:hover i {
  transform: translateX(4px);
}

.stay-in-touch-section img {
  height: auto;
}

/* Six Column Feature Cards (Purple Gradient Border + Lighting) */
.feature-card {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    padding: 0;
    z-index: 1;
}
.feature-card::before {
    content: none;
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 1px; /* 1px border for less prominent look */
    background: linear-gradient(120deg, #7c3aed 0%, #5340FF 60%, #a78bfa 100%);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}
.feature-card::after {
    content: "";
    display: none; /* Remove top-left purple lighting effect */
}

.login-wrapper {
  margin-top:100px;
}