:root {
    --font-primary: 'ClashDisplay', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* General Styles */
body {
    font-family: var(--font-secondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 ,strong{
    font-family: var(--font-primary) !important;
    font-weight: 600 !important;
    font-display: swap;
}

.navbar-brand {
    font-family: var(--font-primary) !important;
    font-weight: 600 !important;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #000;
}

p, span, a, .lead, li {
    font-family: var(--font-secondary) !important;
    font-weight: 400;
    font-display: swap;
}

.nav-link {
    font-family: var(--font-secondary) !important;
    font-weight: 400;
    font-size: 1.1rem;
    font-display: swap;
    color: #000 !important;
}

.main-wrapper {
    min-height: 100vh;
    background: linear-gradient(180deg, 
        #CEBFFC 0%, 
        #FBFBFB 15%, 
        #FBFBFB 75%, 
        #FBFBFB 95%, 
        #CEBFFC 100%);
    overflow-x: hidden;
}

.content-wrapper {
    padding-top: 0;
}

/* Navigation */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.navbar {
    padding: 0;
    background: transparent;
    position: relative;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #000;
}

/* Hero Section */
#hero {
    padding-top: 0rem;
}

#hero .container {
    padding-left: 7rem;
}

@media (max-width: 768px) {
    #hero {
        text-align: center;
        padding-top: 1rem;
    }
    
    #hero .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    #hero h1 {
        font-size: 3.5rem;
    }
    
    .d-flex.align-items-center.justify-content-center {
        justify-content: center !important;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-button {
        margin: 0 auto;
        padding: 0.5rem 1.5rem;
        width: auto;
        justify-content: center;
    }
}

#hero h1 {
    font-size: 6rem;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-left: -0.2rem;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 600px;
}

.d-flex.align-items-center.justify-content-center {
    justify-content: flex-start !important;
}

.hero-button {
    background: #000;
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.5rem 0.5rem 2.5rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    width: auto;
    white-space: nowrap;
}

.phone-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.phone-icon-wrapper i {
    color: #000;
    transform: rotate(90deg);
}

.team-images {
    display: flex;
    align-items: center;
}

.team-img {
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 10%;
}

.team-img:first-child {
    margin-left: 0;
}

/* Sections */
section {
    padding: 6rem 0;
    background-color: transparent !important;
    position: relative;
    z-index: 2;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    background-color: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(10px);
}

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

.bg-light {
    background-color: transparent !important;
}

/* Buttons */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 0.75rem 2rem;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}

.btn-dark {
    background-color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-outline-primary {
    border-color: #0d6efd;
    color: #0d6efd;
    padding: 0.75rem 2rem;
    border-radius: 50px;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Team Section */
.team-section {
    padding: 3rem 0;
}

.team-section .row {
    margin: 0 -0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-section .col-md-6 {
    padding: 0 0.5rem;
}

.team-card {
    background: transparent;
    padding: 0;
}

.team-image {
    width: 268px;
    height: 268px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 20px;
}

.team-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #000;
    font-family: var(--font-primary);
}

.team-description {
    font-size: 1rem;
    color: #000;
    margin-bottom: 1rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.linkedin-link {
    font-size: 1.2rem;
    font-weight: 1000;
    color: #000;
    text-decoration: none;
}

.linkedin-link:hover {
    color: #333;
}

#team .lead {
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto;
    font-weight: 500;
}

.rounded-circle {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Animated Text */
.text-wrapper {
    white-space: nowrap;
    display: inline-block;
    padding: 0;
    line-height: 1.2;
}

.animated-text {
    display: inline-block;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    min-width: 700px;
    text-align: left;
    word-wrap: break-word;
    max-width: 100%;
}

.animated-text.fade-out {
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animated Text with Line */
.animated-text {
    position: relative;
    padding-left: 20px;
    color: #000;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.35) 0%, rgba(76, 175, 80, 0.05) 100%);
    padding: 5px 15px;
    border-radius: 4px;
    display: inline-block;
}

.animated-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: #4CAF50;
    border-radius: 0;
}

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

/* Services Section */
#services {
    position: relative;
    overflow: visible;
}

.service-title {
    font-size: 1.375rem;  /* 22px */
    font-weight: 300;
    margin: 1.5rem 0;
}

.services-title {
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.services-description {
    font-size: 1.2rem;
    max-width: 550px;
    font-weight: 550;
    margin: 0 auto;
}

.service-card {
    background-color: #CABAFB;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-icon {
    width: 36px;
    height: 36px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.service-list {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.service-list li {
    font-size: 1rem;
    color: #000;
}

.discover-more {
    display: inline-block;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.discover-more:hover {
    background-color: #222;
    color: #fff;
    transform: translateY(-2px);
}

.services-icon {
    position: absolute;
    right: -350px;
    top: 0;
    transform: translateY(-15%);
    width: 1000px;
    height: auto;
    z-index: -1;
    pointer-events: none;
}

/* Process Section */
#process {
    background-color: transparent !important;
}

/* Services Section */
.team-title {
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}
.process-description {
    font-size: 1.1rem;
    max-width: 520px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.book-call {
    display: inline-block;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-call:hover {
    background-color: #222;
    color: #fff;
    transform: translateY(-2px);
}

.process-card {
    background: transparent;
    padding: 1rem;
    height: 100%;
    border: none;
}

.process-number {
    width: 48px;
    height: 48px;
    background-color: #CABAFB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.process-title {
    font-size: 1.8rem;
    margin-top:5px;
    color: #000;
    font-weight: 300;
    font-family: var(--font-primary);
}

.process-text {
    font-size: 1rem;
    color: #000;
    margin: 0;
    line-height: 1.6;
}

/* Transition Section */
#transition {

}

@media screen and (min-width: 768px) {
    #transition {
        display: flex;
    }
}

.transition-text {
    font-size: 1.2rem;
    line-height: 1.2;
    margin: 0;
    position: relative;
    color: #000;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    z-index: 998;
}

.green-dot {
    width: 10px;
    height: 10px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    position: relative;

}

.green-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #4CAF50;
    border-radius: 50%;
    left: 0;
    top: 0;
    animation: pulseFromCenter 2s infinite;
    opacity: 0.3;
}

@keyframes pulseFromCenter {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

#transition {

  text-align: center;
  width: 100%;
}

.transition-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.green-dot {
  width: 8px;
  height: 8px;
  background-color: #4CAF50;
  border-radius: 50%;
  display: inline-block;
}

@media (min-width: 768px) {
  #transition {
    text-align: left;
    margin-top: 0;
  }
}

/* Contact Section */
.contact-section {
    padding: 4rem 5rem;
    position: relative;
    z-index: 2;
}

.contact-card {
    background-color: #CABAFB;
    border-radius: 20px;
    padding: 2rem 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-size: 4rem; /* 64px */
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #000;
    font-family: var(--font-primary);
    font-weight: 600;
}

.contact-description {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 2rem;
}

.contact-section .hero-button {
    margin: 0 auto;
    display: inline-flex;
    background: #000;
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.5rem 0.5rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-section .hero-button:hover {
    background: #222;
    transform: translateY(-2px);
}

.contact-section .phone-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section .phone-icon-wrapper i {
    color: #000;
    transform: rotate(90deg);
}

/* Footer */
.footer {
    background-color: #CABAFB;
    padding: 5rem 0 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    border-bottom: 1px solid #000;
    padding-bottom: 3rem;
}

.footer-left, .footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo .logo {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
}

.footer-right h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #000;
    text-decoration: none;
    font-size: 1rem;
}

.footer-link i {
    font-size: 1.25rem;
    opacity: 0.8;
}

.footer-link:hover {
    color: #000;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    color: #000;
    font-size: 1.2rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 1;
}

.footer-bottom p span {
    font-weight: 600;
}

footer.bg-dark {
    background-color: #CEBFFC !important;
}

footer.text-white {
    color: #000000 !important;
}

footer a {
    color: #000000 !important;
}

footer i {
    color: #000000 !important;
}

footer h4 {
    color: #000 !important;
}

footer p {
    color: #000 !important;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .navbar {
        padding: 0.25rem 0;
    }

    .navbar .nav-inner {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .navbar-brand {
        margin-bottom: 0;
    }

    .navbar .btn {
        display: block;
        margin-top: 0.25rem;
        padding: 0.5rem 1.5rem !important;
    }

    .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        margin: 0;
        gap: 0.2rem;
    }

    .navbar-collapse {
        display: block !important;
    }

    h1.display-1 {
        font-size: 2.5rem !important;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 1rem !important;
    }

    .text-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .text-wrapper strong:first-child {
        margin-bottom: 0.25rem;
    }

    .animated-text {
        width: 100%;
        text-align: center;
       
    }

    .team-images {
        display: none !important;
    }

    #hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    #hero .container {
        text-align: center;
        width: 100%;
    }

    #hero .col-lg-8 {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-button {
        margin: 0 auto;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .nav-item {
        padding: 0 0.5rem !important;
    }

    .nav-link {
        padding: 0.25rem !important;
    }

    .display-1 {
        margin-top: 0;
    }

    /* Got Questions section mobile adjustments */
    .contact-title {
        font-size: 2rem !important;
    }
    
    /* Process section mobile adjustments */
    #process .book-call {
        display: block;
        text-align: center;
        margin: 1rem auto;
        width: fit-content;
    }

    #process .col-lg-8 {
        text-align: center;
        margin: 0 auto;
    }

    #process .services-title {
        text-align: center;
    }

    #process .process-description {
        text-align: center;
    }

    .process-card {
        text-align: center;
    }

    .process-number {
        margin: 0 auto;
    }

    .process-title {
        text-align: center;
    }

    .process-text {
        text-align: center;
    }

    /* Contact section mobile adjustments */
    .contact-section {
        padding: 4rem 0;
    }

    .contact-card {
        padding: 3rem 2rem;
    }

    /* Footer mobile adjustments */
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-right h3 {
        text-align: left;
    }

    .contact-info {
        align-items: flex-start;
    }

    .footer-bottom {
        text-align: center;
        width: 100%;
    }

    .footer-bottom p {
        margin: 0;
    }

    .animated-text {
        min-width: initial;
        font-size: 2rem !important;
        padding: 3px 10px;
        line-height: 1.2;
        width: auto !important;
        display: inline-block;
    }

    .text-wrapper {
        padding: 0;
        white-space: normal;
    }

    h1.display-1 {
        font-size: 2.2rem !important;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    h1.display-1 {
        font-size: 3rem;
    }

    .team-images {
        display: none;
    }

    .navbar .nav-inner {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 0rem 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.3rem;
    }

    .text-wrapper {
        display: block;
     
        padding: 0 15px;
    }
    
    .animated-text {
        font-size: 0.8em;
        line-height: 1.4;
    }
}

@media (min-width: 992px) {
    #process .container,
    #services .container {
        
    }
}

.separator-container {
    padding: 3rem 0;
    overflow: visible;
    position: relative;
    z-index: 0;
}

.separator-icon {
    position: absolute;
    left: -415px;
    top: 50%;
    transform: translateY(-70%);
    width: 1000px;
    height: auto;
    z-index: -1;
    pointer-events: none;
}

/* Navbar Responsive Styles */
@media (max-width: 991px) {
  .navbar-nav {
    padding: 0 15px;
  }
  
  .nav-link {
    font-size: 14px !important;
    padding: 8px 0 !important;
    white-space: nowrap;
  }

  .navbar-collapse {
    padding: 0;
    border-radius: 8px;

  }

  h1 {
    font-size: calc(2rem + 2vw) !important;
  }

  .hero-text {
    font-size: 16px !important;
  }

  .services-title {
    font-size: calc(1.5rem + 1vw) !important;
  }

  .services-description {
    font-size: 14px !important;
  }

  .team-title {
    font-size: calc(1.4rem + 1vw) !important;
  }
}

/* Add these to your existing navbar styles */
.navbar-nav {
  padding: 0 15px;
}

.nav-link {
  transition: color 0.3s ease;
  font-size: 16px;
}

.navbar-collapse {
  text-align: left;
}

/* AI Voice Agents Section */
@import url('https://fonts.cdnfonts.com/css/switzer');

.voice-agents-section * {
    font-family: 'Poppins', sans-serif;
}

.voice-agents-section .card {
    background-color: #1C1C1C !important;
    border: none;
    height: 100%;
    border-radius: 40px !important;
    padding: 1rem !important;
}

.voice-agents-section .card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.voice-agents-section .h4 {
    font-size: 1.75rem;
    margin: 0;
    font-weight: 500 !important;
}

.voice-agents-section .text-secondary {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    margin: 0;
    color: #9ca3af !important;
}

.voice-agents-section .display-6 {
    font-size: 2.75rem !important;
    line-height: 1.2;
    margin: 0;
    font-weight: 500 !important;
}

.voice-agents-section .pricing-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
}

.voice-agents-section .h2 {
    font-size: 2rem;
    margin: 0;

}

.voice-agents-section .fs-6 {
    font-family: 'Poppins', sans-serif!important;
    font-size: 1rem !important;
    color: #a8a8a8 !important;
    font-weight: 700 !important;
}

.voice-agents-section .btn-light {
    background-color: #fff;
    border: none;
    color: #000;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.75rem;
    width: fit-content;
    font-size: 1rem;
}

.voice-agents-section .features {
    display: grid;
    gap: 1rem;
    padding: 0 10px;
    padding-bottom: 30px;
}

.voice-agents-section .features .d-flex {
    margin: 0 !important;
    color: #bcb5b5;
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
    min-width: 0; /* Flexbox taşma kontrolü için */
}

.voice-agents-section .features .d-flex span:last-child {
    white-space: normal; /* Normal metin sarma */
    word-wrap: break-word; /* Uzun kelimeleri sar */
    overflow-wrap: break-word;
    width: calc(100% - 30px); /* Nokta için alan bırak */
    line-height: 1.4;
    display: block; /* Block yaparak alt satıra geçmesini sağla */
}

.voice-agents-section .point {
    color: #6b6d70;
    font-size: 25px;
    line-height: 1;
    flex-shrink: 0; /* Noktanın küçülmesini engelle */
    width: 20px;
    text-align: center;
}

.features-container {
    margin-top: 2rem;
    padding: 0 1rem;
}

.features-container .row {
    margin: 0 -0.5rem;
}

.features-container .col-6 {
    padding: 0 0.5rem;
}

.automate-heading {
    color: #000000 !important;
    font-size: 2.25rem !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
}


.voice-agents-section .pricing-section h2.display-6 {
    color: #9CA3AF !important;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.card-body > .pricing-section > h2.display-6 {
    color: #ffffff !important;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.3;
    font-size: 2rem !important;
}

.highlight-grey {
  color: #a8a8a8;
}

.btn-light .fa-rocket {
  color: #000000;
}

.rocket-icon {
    color: #000 !important;
    font-size: 18px;
    margin-right: 8px;
}

.point {
    color: #6b6d70;
    font-size: 30px;
    line-height: 1;
}

/* Roket ikonu için spesifik stil */
.btn-light .fa-rocket {
    color: #000 !important;
    font-size: 16px;
    display: inline-block !important;
}


@media (max-width: 768px) {
  .mobilde-gizle {
    display: none!important;
  }
}

h1 br {
  display: block; /* Satır atlamayı zorunlu kılar */
  content: "";
}

@media (max-width: 768px) {
  h1 br {
    margin: 0;
    line-height: normal;
  }
}


.my-element {
    display: flow-root; /* Mobil için */
    width:100%;
}

@media (min-width: 768px) {
    .my-element {
        display: flex; /* Masaüstü için */
    }
}



